diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 51ac5900a69b..906d79c93328 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,7 +1,7 @@ # These are supported funding model platforms github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: shiptest_ss13 +patreon: zephyrtfa_hosting open_collective: # Replace with a single Open Collective username ko_fi: # tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index 14e9dee2e2e3..20378d43932b 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -14,10 +14,10 @@ jobs: name: Run Linters runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: master - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Restore SpacemanDMM cache uses: actions/cache@v3 with: @@ -54,7 +54,7 @@ jobs: if: always() with: outputFile: output-annotations.txt - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v4 with: python-version: "3.9" - name: Run Check Regex @@ -69,14 +69,14 @@ jobs: name: Compile Maps runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Python setup - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: "3.9" - name: Setup cache id: cache-byond - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/BYOND key: ${{ runner.os }}-byond-cache-${{ hashFiles('Dockerfile') }} @@ -103,10 +103,10 @@ jobs: - 3306 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup cache id: cache-byond - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/BYOND key: ${{ runner.os }}-byond-cache-${{ hashFiles('Dockerfile') }} @@ -144,7 +144,7 @@ jobs: name: Windows Build runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Restore Yarn cache uses: actions/cache@v3 with: @@ -163,7 +163,7 @@ jobs: md deploy bash tools/deploy.sh ./deploy - name: Deploy artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: deploy path: deploy diff --git a/.github/workflows/codeowner_reviews.yml b/.github/workflows/codeowner_reviews.yml index cf4ec4138afb..753f575f90d7 100644 --- a/.github/workflows/codeowner_reviews.yml +++ b/.github/workflows/codeowner_reviews.yml @@ -9,7 +9,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 #Parse the Codeowner file - name: CodeOwnersParser diff --git a/.github/workflows/compile_changelogs.yml b/.github/workflows/compile_changelogs.yml index 4367100d4559..0c789db80adb 100644 --- a/.github/workflows/compile_changelogs.yml +++ b/.github/workflows/compile_changelogs.yml @@ -19,7 +19,7 @@ jobs: echo "::set-output name=ACTIONS_ENABLED::$SECRET_EXISTS" - name: "Setup python" if: steps.value_holder.outputs.ACTIONS_ENABLED - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: '3.x' - name: "Install deps" @@ -30,7 +30,7 @@ jobs: sudo apt-get install dos2unix - name: "Checkout" if: steps.value_holder.outputs.ACTIONS_ENABLED - uses: actions/checkout@v1 + uses: actions/checkout@v3 with: fetch-depth: 25 - name: "Compile" diff --git a/.github/workflows/dmi5.yml b/.github/workflows/dmi5.yml index b1531339f8a0..9f58b328f213 100644 --- a/.github/workflows/dmi5.yml +++ b/.github/workflows/dmi5.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ParadiseSS13/DMI5Checker@v1 with: icons-path: "icons" diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml index 9162f6eb143b..6c14be7547b6 100644 --- a/.github/workflows/docker_publish.yml +++ b/.github/workflows/docker_publish.yml @@ -11,7 +11,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]')" runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build and Publish Docker Image to Registry uses: elgohr/Publish-Docker-Github-Action@master diff --git a/.github/workflows/generate_documentation.yml b/.github/workflows/generate_documentation.yml index ba85ed9f4424..8011516d27a2 100644 --- a/.github/workflows/generate_documentation.yml +++ b/.github/workflows/generate_documentation.yml @@ -3,17 +3,32 @@ on: push: branches: - master + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + jobs: generate_documentation: if: "!contains(github.event.head_commit.message, '[ci skip]')" + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 - - name: Setup cache - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - name: Restore SpacemanDMM cache + uses: actions/cache@v3 with: - path: $HOME/SpacemanDMM - key: ${{ runner.os }}-spacemandmm + path: ~/SpacemanDMM + key: ${{ runner.os }}-spacemandmm-${{ secrets.CACHE_PURGE_KEY }} - name: Install SpacemanDMM run: bash tools/ci/install_spaceman_dmm.sh dmdoc - name: Generate documentation @@ -21,11 +36,13 @@ jobs: ~/dmdoc touch dmdoc/.nojekyll echo codedocs.shiptest.net > dmdoc/CNAME - - name: Deploy - uses: JamesIves/github-pages-deploy-action@3.7.1 + + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 with: - BRANCH: gh-pages - CLEAN: true - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SINGLE_COMMIT: true - FOLDER: dmdoc + # Upload output directory + path: "dmdoc/" + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 diff --git a/.github/workflows/make_changelogs.yml b/.github/workflows/make_changelogs.yml index 8a92a5cd22a6..9eb0b97f326a 100644 --- a/.github/workflows/make_changelogs.yml +++ b/.github/workflows/make_changelogs.yml @@ -11,11 +11,11 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]')" steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v3 with: fetch-depth: 25 - name: Python setup - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: "3.9" - name: Install depends diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e51f59c279a3..01209a2828e3 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -4,6 +4,10 @@ on: schedule: - cron: "0 0 * * *" +permissions: + issues: write + pull-requests: write + jobs: stale: runs-on: ubuntu-20.04 @@ -12,9 +16,10 @@ jobs: - uses: actions/stale@v4 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-pr-message: "This PR has been inactive for long enough to be automatically marked as stale. This means it is at risk of being auto closed in ~ 14 days, please address any outstanding review items and ensure your PR is finished, if these are all true and you are auto-staled anyway, you need to actively ask maintainers if your PR will be merged. Once you have done any of the previous actions then you should request a maintainer remove the stale label on your PR, to reset the stale timer. If you feel no maintainer will respond in that time, you may wish to close this PR youself, while you seek maintainer comment, as you will then be able to reopen the PR yourself" - days-before-stale: 14 + stale-pr-message: "This PR has been inactive for a month. This means it is at risk of being auto closed in a week, please address any outstanding review items and ensure your PR is finished, if these are all true and you are auto-staled anyway, you need to actively ask maintainers if your PR will be merged. Once you have done any of the previous actions then you should request a maintainer remove the stale label on your PR, to reset the stale timer. If you feel no maintainer will respond in that time, you may wish to close this PR youself, while you seek maintainer comment, as you will then be able to reopen the PR yourself" + days-before-stale: 30 days-before-close: 7 days-before-issue-stale: -1 stale-pr-label: "Stale" exempt-pr-labels: "RED LABEL, Test Merged, Test Merge Candidate, Stale Exempt" + exempt-draft-pr: true diff --git a/.github/workflows/update_tgs_dmapi.yml b/.github/workflows/update_tgs_dmapi.yml index 0eb898628424..9f863ce8c123 100644 --- a/.github/workflows/update_tgs_dmapi.yml +++ b/.github/workflows/update_tgs_dmapi.yml @@ -11,7 +11,7 @@ jobs: name: Update the TGS DMAPI steps: - name: Clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Branch run: | diff --git a/_maps/RandomRuins/BeachRuins/beach_ancient_ruin.dmm b/_maps/RandomRuins/BeachRuins/beach_ancient_ruin.dmm index 99a904053317..55b179ab2c26 100644 --- a/_maps/RandomRuins/BeachRuins/beach_ancient_ruin.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_ancient_ruin.dmm @@ -20,9 +20,7 @@ /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "aA" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/spacevine/weak, /obj/structure/cable{ icon_state = "4-8" @@ -54,16 +52,11 @@ "aP" = ( /obj/effect/turf_decal/trimline/opaque/white/filled/warning, /obj/effect/turf_decal/industrial/stand_clear/white, -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -27 - }, +/obj/machinery/computer/cryopod/directional/south, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "aV" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/cable{ icon_state = "4-8" }, @@ -105,9 +98,7 @@ }, /area/ruin/beach/complex) "cl" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/spacevine/weak, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -132,15 +123,11 @@ /obj/effect/turf_decal/box/white, /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/concrete/slab_4, /area/ruin/beach/complex) "cD" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ icon_state = "2-4" @@ -240,6 +227,13 @@ /obj/structure/spacevine/weak, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) +"ee" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, +/obj/structure/spacevine/weak, +/turf/open/floor/concrete/slab_4, +/area/ruin/beach/complex) "en" = ( /obj/effect/turf_decal/trimline/opaque/white/filled/warning{ dir = 8 @@ -296,9 +290,7 @@ }, /area/ruin/beach/complex) "fH" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, /obj/item/reagent_containers/food/drinks/mug{ @@ -313,7 +305,7 @@ /obj/item/lighter/greyscale{ pixel_x = 4 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/concrete/slab_3, /area/ruin/beach/complex) "fP" = ( @@ -343,9 +335,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/spacevine/weak, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/slab_1, @@ -408,9 +398,7 @@ /turf/open/floor/concrete/slab_4, /area/ruin/beach/complex) "gZ" = ( -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /obj/structure/spacevine/weak, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/slab_4, @@ -426,8 +414,15 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/plating/grass/beach/lit, /area/ruin/beach/complex) +"hE" = ( +/obj/machinery/door/airlock/grunge{ + dir = 8 + }, +/obj/structure/spacevine/weak, +/turf/open/floor/concrete/slab_4, +/area/ruin/beach/complex) "hO" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable{ icon_state = "1-8" }, @@ -492,7 +487,7 @@ /turf/open/floor/concrete/slab_3, /area/ruin/beach/complex) "ix" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/spacevine/weak, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -685,7 +680,7 @@ /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "lR" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/spacevine/weak, /obj/structure/cable{ icon_state = "4-8" @@ -704,9 +699,7 @@ /turf/open/floor/plating, /area/ruin/beach/complex/shuttle) "lW" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ icon_state = "2-8" @@ -764,7 +757,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/spacevine/weak, /turf/open/floor/concrete/slab_3, /area/ruin/beach/complex) @@ -863,6 +856,12 @@ }, /turf/open/floor/plating, /area/ruin/beach/complex/shuttle) +"om" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, +/turf/open/floor/concrete/slab_4, +/area/ruin/beach/complex) "on" = ( /obj/effect/turf_decal/trimline/opaque/white/filled/warning{ dir = 8 @@ -898,15 +897,11 @@ }, /obj/effect/decal/cleanable/robot_debris/old, /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "oJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/spacevine/dense, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -1066,7 +1061,7 @@ /turf/open/water/beach, /area/ruin/unpowered) "rA" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable{ icon_state = "4-8" }, @@ -1174,9 +1169,7 @@ /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "sJ" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/spacevine/dense, /turf/open/floor/concrete/slab_4, /area/ruin/beach/complex) @@ -1210,7 +1203,9 @@ /turf/open/floor/plasteel/mono, /area/ruin/beach/complex/shuttle) "tG" = ( -/obj/machinery/door/airlock/grunge, +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, /obj/structure/cable{ icon_state = "6-8" }, @@ -1219,9 +1214,7 @@ /turf/open/floor/concrete/slab_4, /area/ruin/beach/complex) "tK" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/spacevine/weak, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -1240,9 +1233,7 @@ dir = 10 }, /obj/effect/decal/cleanable/oil/streak, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "uy" = ( @@ -1271,9 +1262,7 @@ /area/ruin/beach/complex) "uH" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/slab_3, /area/ruin/beach/complex) @@ -1322,7 +1311,9 @@ /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "vi" = ( -/obj/machinery/door/airlock/grunge, +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "vy" = ( @@ -1395,9 +1386,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/spacevine/weak, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) @@ -1432,9 +1421,7 @@ /turf/open/floor/concrete/slab_3, /area/ruin/beach/complex) "wG" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/cable{ icon_state = "1-4" }, @@ -1505,9 +1492,7 @@ /obj/structure/chair/comfy/shuttle{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/toy/plush/nukeplushie, /obj/structure/cable{ icon_state = "2-4" @@ -1560,9 +1545,7 @@ pixel_x = 10; pixel_y = 5 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/concrete/slab_4, /area/ruin/beach/complex) "yh" = ( @@ -1579,7 +1562,7 @@ /obj/structure/chair/comfy/shuttle{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable{ icon_state = "1-4" }, @@ -1624,9 +1607,7 @@ /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "zn" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/cable{ icon_state = "2-8" }, @@ -1714,7 +1695,7 @@ }, /area/ruin/beach/complex) "AF" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/spacevine/weak, /obj/structure/cable{ icon_state = "1-8" @@ -1810,9 +1791,7 @@ /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "Ci" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/spacevine/weak, /obj/effect/decal/cleanable/dirt, /turf/open/floor/concrete/slab_1, @@ -1847,9 +1826,7 @@ /turf/open/floor/concrete/slab_3, /area/ruin/beach/complex) "Cz" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ icon_state = "1-2" @@ -1880,19 +1857,17 @@ /obj/effect/turf_decal/trimline/opaque/white/filled/warning{ dir = 4 }, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "Dc" = ( -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /obj/structure/spacevine/dense, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/slab_3, /area/ruin/beach/complex) "Dd" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-8" }, @@ -1901,16 +1876,12 @@ /area/ruin/beach/complex/wall) "Dh" = ( /obj/effect/turf_decal/trimline/opaque/white/filled/warning, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/spacevine/weak, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "DF" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ icon_state = "4-8" @@ -2028,9 +1999,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/spacevine/weak, /turf/open/floor/concrete/slab_4, /area/ruin/beach/complex) @@ -2049,7 +2018,7 @@ /obj/effect/turf_decal/trimline/opaque/white/filled/warning{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -2058,7 +2027,7 @@ "FO" = ( /obj/structure/table, /obj/machinery/recharger, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) @@ -2111,7 +2080,7 @@ /area/ruin/beach/complex) "GC" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "1-4" }, @@ -2291,10 +2260,7 @@ "Jy" = ( /obj/effect/turf_decal/trimline/opaque/white/filled/warning, /obj/effect/turf_decal/industrial/stand_clear/white, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = -30 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "JC" = ( @@ -2321,9 +2287,7 @@ /turf/open/floor/plating, /area/ruin/beach/complex/shuttle) "JS" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ icon_state = "1-2" @@ -2427,7 +2391,9 @@ /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "Lt" = ( -/obj/machinery/door/airlock/grunge, +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -2454,7 +2420,9 @@ /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "LN" = ( -/obj/machinery/door/airlock/grunge, +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -2479,7 +2447,7 @@ /turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Mb" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/spacevine/dense, /obj/effect/decal/cleanable/dirt, /turf/open/floor/concrete/slab_1, @@ -2511,9 +2479,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/spacevine/weak, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/slab_3, @@ -2874,9 +2840,7 @@ /obj/effect/turf_decal/trimline/opaque/white/filled/warning{ dir = 8 }, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "SG" = ( @@ -2897,14 +2861,12 @@ /area/ruin/beach/complex/wall) "SN" = ( /obj/structure/table, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/slab_4, /area/ruin/beach/complex) "SS" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/spacevine/weak, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/slab_3, @@ -2938,9 +2900,7 @@ /turf/open/water/beach, /area/ruin/unpowered) "Ty" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/spacevine/weak, /obj/structure/cable{ icon_state = "1-2" @@ -3054,9 +3014,7 @@ /obj/effect/turf_decal/trimline/opaque/white/filled/warning{ dir = 8 }, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/structure/spacevine/weak, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) @@ -3074,7 +3032,9 @@ /turf/open/floor/concrete/slab_1, /area/ruin/beach/complex/wall) "Wm" = ( -/obj/machinery/door/airlock/grunge, +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, @@ -3259,9 +3219,7 @@ /obj/item/grenade/c4/x4{ pixel_x = 6 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/mono, /area/ruin/beach/complex) "ZN" = ( @@ -6369,7 +6327,7 @@ Ae AA AA IO -dm +ee IO AA AA @@ -6518,7 +6476,7 @@ Vm mL AA AA -dm +hE UB AA AA @@ -7302,7 +7260,7 @@ AA AA AA AA -xw +om UB AA wo diff --git a/_maps/RandomRuins/BeachRuins/beach_colony.dmm b/_maps/RandomRuins/BeachRuins/beach_colony.dmm index f4dcc3c0ea54..222ce4f9d6fc 100644 --- a/_maps/RandomRuins/BeachRuins/beach_colony.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_colony.dmm @@ -11,30 +11,22 @@ /area/ruin/unpowered) "bt" = ( /obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "bO" = ( /turf/closed/wall/mineral/sandstone, /area/ruin/unpowered) "cr" = ( /obj/item/reagent_containers/food/snacks/kebab/rat/double, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "cC" = ( /obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "cS" = ( /obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "dE" = ( /obj/item/seeds/cocoapod, @@ -46,9 +38,7 @@ /obj/structure/fence{ icon_state = "corner" }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "fd" = ( /obj/item/cultivator/rake, @@ -68,9 +58,7 @@ /area/ruin/unpowered) "gn" = ( /obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "gv" = ( /obj/structure/fluff/beach_umbrella/cap, @@ -85,24 +73,18 @@ dir = 5; icon_state = "corner" }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "iJ" = ( /obj/structure/railing{ dir = 1 }, /obj/item/melee/roastingstick, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "kd" = ( /obj/effect/mob_spawn/human/corpse/pirate, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "kV" = ( /obj/effect/decal/cleanable/crayon{ @@ -118,9 +100,7 @@ /area/ruin/unpowered) "lD" = ( /obj/structure/fence, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "mt" = ( /turf/open/floor/wood, @@ -144,15 +124,11 @@ /obj/structure/fence{ icon_state = "door_closed" }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "nB" = ( /obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "on" = ( /obj/structure/table/wood, @@ -168,9 +144,7 @@ /obj/structure/chair/plastic{ dir = 4 }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "pv" = ( /turf/open/floor/plating/asteroid/sand/lit{ @@ -184,15 +158,11 @@ /area/ruin/unpowered) "pU" = ( /obj/structure/fluff/fokoff_sign, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "pY" = ( /obj/structure/bonfire/prelit, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "qq" = ( /obj/effect/overlay/coconut, @@ -200,9 +170,7 @@ /area/ruin/unpowered) "qG" = ( /obj/item/clothing/suit/space/hardsuit/carp/old, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "qP" = ( /obj/structure/window/reinforced{ @@ -279,9 +247,7 @@ /area/ruin/unpowered) "xK" = ( /obj/structure/chair/plastic, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "xT" = ( /obj/item/stack/sheet/sandblock, @@ -313,12 +279,6 @@ light_range = 2 }, /area/ruin/unpowered) -"Dl" = ( -/obj/structure/mineral_door/sandstone, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, -/area/ruin/unpowered) "Dx" = ( /obj/item/toy/crayon/spraycan{ pixel_x = -5; @@ -339,9 +299,7 @@ /obj/structure/fence{ dir = 4 }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "EC" = ( /obj/item/toy/beach_ball/holoball/dodgeball, @@ -357,18 +315,14 @@ /area/ruin/unpowered) "FW" = ( /mob/living/simple_animal/hostile/carp, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Gh" = ( /obj/structure/fence{ dir = 9; icon_state = "corner" }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Hg" = ( /obj/machinery/hydroponics/soil, @@ -382,9 +336,7 @@ /area/ruin/unpowered) "Ja" = ( /obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Jb" = ( /obj/item/seeds/cocoapod/vanillapod, @@ -393,7 +345,7 @@ }, /area/ruin/unpowered) "JX" = ( -/obj/structure/mineral_door/sandstone, +/obj/machinery/door/airlock/sandstone, /turf/open/floor/wood, /area/ruin/unpowered) "KA" = ( @@ -462,25 +414,19 @@ dir = 10; icon_state = "corner" }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Pd" = ( /obj/item/grown/log/tree, /obj/item/grown/log/tree, /obj/item/grown/log/tree, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Px" = ( /obj/structure/chair/plastic{ dir = 1 }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Qf" = ( /turf/open/floor/concrete/slab_1{ @@ -502,9 +448,7 @@ /obj/structure/chair/plastic{ dir = 8 }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "SS" = ( /turf/open/floor/carpet/red{ @@ -513,9 +457,7 @@ /area/ruin/unpowered) "Te" = ( /obj/structure/railing, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Tr" = ( /obj/item/reagent_containers/food/drinks/colocup{ @@ -538,9 +480,7 @@ /obj/structure/fence{ dir = 4 }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "TZ" = ( /turf/open/floor/carpet/purple{ @@ -564,9 +504,7 @@ /obj/item/reagent_containers/food/snacks/kebab/fiesta{ pixel_y = 13 }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "VG" = ( /obj/item/reagent_containers/spray/cleaner, @@ -578,29 +516,24 @@ /obj/structure/railing{ dir = 8 }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, +/area/ruin/unpowered) +"Wq" = ( +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Ww" = ( /obj/item/melee/roastingstick, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Xd" = ( /obj/structure/railing{ dir = 4 }, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Xe" = ( /obj/item/storage/cans/sixbeer, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Xh" = ( /obj/item/reagent_containers/glass/bucket, @@ -644,9 +577,7 @@ /area/ruin/unpowered) "ZA" = ( /obj/structure/flora/junglebush/large, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "ZI" = ( /turf/open/floor/plating/asteroid/sand/lit, @@ -659,19 +590,19 @@ KM KM KM KM +Wq +Wq +Wq +Wq +Wq +Wq Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq +Wq +Wq KM KM KM @@ -694,21 +625,21 @@ bO bO bO bO -Vn +Wq cC -Vn +Wq Hg Hg dE Jb Hg Hg -Vn -Vn +Wq +Wq gn nB -Vn -Vn +Wq +Wq KM KM KM @@ -726,8 +657,8 @@ Oa bO mI JX -Vn -Vn +Wq +Wq Hg KA KA @@ -736,14 +667,14 @@ RM KA KA Hg -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq ZA -Vn -Vn -Vn +Wq +Wq +Wq Ja KM KM @@ -754,30 +685,30 @@ KM bO mt mt -mt bO bO bO -Vn -Vn -Vn +bO +Wq +Wq +Wq Hg Hg KA fd Hg Hg -Vn -Vn -Vn +Wq +Wq +Wq cS -Vn -Vn -Vn -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq +Wq +Wq +Wq KM "} (5,1,1) = {" @@ -786,30 +717,30 @@ bO mt mt mt -Dl -Vn -Vn -Vn -Vn +JX +Wq +Wq +Wq +Wq gn -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq bt -Vn +Wq gn -Vn +Wq Xe pp -Vn +Wq cr -Vn +Wq KM "} (6,1,1) = {" @@ -819,41 +750,41 @@ rD on rD bO -Vn +Wq cC -Vn +Wq bt -Vn +Wq ZI Xr ZI ZI ZI -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq Xd -Vn +Wq Px -Vn +Wq KM "} (7,1,1) = {" KM -Vn +bO bO wf bO -Vn -Vn -Vn -Vn +bO +Wq +Wq +Wq ZI ZI ZI @@ -864,25 +795,25 @@ ZI ZI ZI ZI -Vn -Vn -Vn +Wq +Wq +Wq gn xK Te pY iJ Pd -Vn +Wq KM "} (8,1,1) = {" KM ZA -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq ZI Zz ZI @@ -897,22 +828,22 @@ ZI Xr ZI ZI -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq Ww VX -Vn +Wq Px -Vn +Wq KM "} (9,1,1) = {" -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq ZI ZI ZI @@ -934,16 +865,16 @@ ZI Vn Vn RV -Vn +Wq Vx -Vn -Vn +Wq +Wq KM "} (10,1,1) = {" -Vn +Wq cS -Vn +Wq ZI ZI ZI @@ -965,17 +896,17 @@ ZI Xr Vn Vn -Vn -Vn -Vn +Wq +Wq +Wq gn -Vn +Wq KM "} (11,1,1) = {" Ja -Vn -Vn +Wq +Wq ZI ZI ZI @@ -995,18 +926,18 @@ ZI ZI ZI ZI -Vn -Vn +Wq +Wq cC Gh lD lD Om -Vn +Wq "} (12,1,1) = {" -Vn -Vn +Wq +Wq gn Zz ZI @@ -1027,18 +958,18 @@ Zz ZI ZI ZI -Vn -Vn -Vn +Wq +Wq +Wq TW FW cS TW -Vn +Wq "} (13,1,1) = {" -Vn -Vn +Wq +Wq ZI ZI ZI @@ -1059,18 +990,18 @@ ZI pv IV ZI -Vn -Vn -Vn +Wq +Wq +Wq TW -Vn +Wq FW TW pU "} (14,1,1) = {" ZA -Vn +Wq ZI ZI ZI @@ -1092,17 +1023,17 @@ Xh nl pv ZI -Vn -Vn +Wq +Wq TW qG -Vn +Wq ns -Vn +Wq "} (15,1,1) = {" cS -Vn +Wq Zz ZI ZI @@ -1125,16 +1056,16 @@ pv IV ZI nB -Vn +Wq TW -Vn +Wq cC TW -Vn +Wq "} (16,1,1) = {" -Vn -Vn +Wq +Wq ZI ZI ZI @@ -1157,7 +1088,7 @@ xT ZI ZI Xr -Vn +Wq TW FW kd @@ -1165,8 +1096,8 @@ EB ZA "} (17,1,1) = {" -Vn -Vn +Wq +Wq Zz ZI ZI @@ -1189,15 +1120,15 @@ ZI lr ZI ZI -Vn +Wq hQ lD lD dH -Vn +Wq "} (18,1,1) = {" -Vn +Wq ZI ZI ZI @@ -1222,11 +1153,11 @@ ZI ZI ZI gn -Vn -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq +Wq "} (19,1,1) = {" Xr @@ -1253,12 +1184,12 @@ ZI ZI EC ZI -Vn +Wq bt -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq "} (20,1,1) = {" ZI @@ -1285,12 +1216,12 @@ ZI ZI ZI ZI -Vn -Vn -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq +Wq +Wq "} (21,1,1) = {" ZI @@ -1317,12 +1248,12 @@ hh hh hh ZI -Vn -Vn +Wq +Wq Ja -Vn +Wq cS -Vn +Wq "} (22,1,1) = {" KM @@ -1476,7 +1407,7 @@ fC qq ZI ZI -Vn +Wq Qf Qf Qf @@ -1508,11 +1439,11 @@ ZI ZI ZI ZI -Vn +Wq cC -Vn -Vn -Vn +Wq +Wq +Wq KM KM "} @@ -1539,11 +1470,11 @@ ZI ZI ZI ZI -Vn -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq +Wq ZA KM KM @@ -1571,11 +1502,11 @@ ZI ZI ZI Xr -Vn -Vn -Vn -Vn -Vn +Wq +Wq +Wq +Wq +Wq KM KM KM @@ -1601,9 +1532,9 @@ ZI ZI ZI ZI -Vn -Vn -Vn +Wq +Wq +Wq gn KM KM diff --git a/_maps/RandomRuins/BeachRuins/beach_crashed_engineer.dmm b/_maps/RandomRuins/BeachRuins/beach_crashed_engineer.dmm index f660e68e3d46..2b0f5d02b12b 100644 --- a/_maps/RandomRuins/BeachRuins/beach_crashed_engineer.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_crashed_engineer.dmm @@ -98,7 +98,7 @@ /area/ruin/unpowered) "dG" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/bed, /turf/open/floor/carpet/nanoweave/orange, /area/ruin/unpowered) @@ -124,9 +124,7 @@ /area/ruin/unpowered) "eM" = ( /obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "fa" = ( /obj/effect/turf_decal/industrial/outline/yellow, @@ -146,9 +144,7 @@ /area/ruin/unpowered) "fB" = ( /obj/structure/flora/junglebush/large, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "fT" = ( /obj/structure/barricade/wooden, @@ -853,7 +849,8 @@ /area/ruin/unpowered) "Kp" = ( /obj/machinery/door/airlock/command/glass{ - name = "Bridge" + name = "Bridge"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -959,9 +956,7 @@ /area/ruin/unpowered) "PK" = ( /obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "PR" = ( /obj/structure/chair/stool/bar{ @@ -975,9 +970,7 @@ /area/ruin/unpowered) "Qd" = ( /obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Qt" = ( /obj/effect/turf_decal/weather/sand{ @@ -1124,9 +1117,7 @@ }, /area/ruin/unpowered) "Uk" = ( -/turf/open/floor/plating/grass/beach{ - light_range = 2 - }, +/turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "Uz" = ( /obj/effect/turf_decal/weather/sand{ diff --git a/_maps/RandomRuins/BeachRuins/beach_crashed_starwalker.dmm b/_maps/RandomRuins/BeachRuins/beach_crashed_starwalker.dmm index 878b42ec6e74..7779dcfccfeb 100644 --- a/_maps/RandomRuins/BeachRuins/beach_crashed_starwalker.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_crashed_starwalker.dmm @@ -46,9 +46,7 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/unpowered) "bg" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/blood/old{ pixel_x = -9; pixel_y = 11; @@ -57,10 +55,7 @@ /turf/open/floor/engine/hull, /area/ruin/beach/starwalker) "bj" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, +/obj/item/radio/intercom/directional/east, /obj/effect/decal/cleanable/glass{ pixel_y = -12; pixel_x = -9 @@ -206,9 +201,7 @@ /turf/open/floor/pod, /area/ruin/beach/starwalker) "cI" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/garbage, /obj/effect/decal/cleanable/wrapping, @@ -249,6 +242,14 @@ }, /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/unpowered) +"dt" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + id = "pcarrier_windows"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/beach/starwalker) "dC" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ @@ -393,7 +394,8 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ id = "pcarrier_windows"; - name = "Blast Shutters" + name = "Blast Shutters"; + dir = 4 }, /obj/structure/curtain/bounty, /turf/open/floor/plating, @@ -485,7 +487,7 @@ dir = 8; pixel_y = -7 }, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/item/reagent_containers/pill/lsd{ pixel_y = -2; pixel_x = -1 @@ -539,9 +541,7 @@ /turf/open/water/beach, /area/ruin/unpowered) "hL" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/closet/crate/trashcart, /obj/item/trash/can/food/beans{ pixel_x = 4; @@ -630,9 +630,7 @@ /area/ruin/unpowered) "iU" = ( /obj/machinery/smartfridge/organ, -/obj/machinery/firealarm{ - pixel_y = 24 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/patterned/cargo_one, /area/ruin/beach/starwalker) "ju" = ( @@ -661,7 +659,7 @@ /obj/structure/cable/cyan{ icon_state = "1-4" }, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ruin/beach/starwalker) "jC" = ( @@ -690,12 +688,8 @@ /obj/effect/turf_decal/techfloor{ dir = 6 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22; - pixel_y = -6 - }, -/obj/machinery/power/apc/auto_name/south{ +/obj/item/radio/intercom/directional/east, +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /obj/structure/cable/yellow{ @@ -752,7 +746,9 @@ }, /area/ruin/beach/starwalker) "kS" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/structure/sign/departments/restroom{ pixel_y = 32 }, @@ -805,7 +801,7 @@ pixel_y = 3; pixel_x = 16 }, -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ start_charge = 0 }, /turf/open/floor/pod, @@ -868,9 +864,7 @@ /area/ruin/unpowered) "mV" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/grille, /turf/open/floor/engine/hull, /area/ruin/beach/starwalker) @@ -895,10 +889,7 @@ "nU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/firealarm/directional/west, /obj/item/clothing/under/costume/sailor, /obj/structure/spacevine, /turf/open/floor/pod, @@ -1044,11 +1035,8 @@ /obj/machinery/computer/bounty{ dir = 4 }, -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25; - pixel_y = 1 - }, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/patterned, /area/ruin/beach/starwalker) "pV" = ( @@ -1062,10 +1050,7 @@ /area/ruin/unpowered) "ql" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, +/obj/item/radio/intercom/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1160,17 +1145,12 @@ /area/ruin/unpowered) "rR" = ( /obj/structure/table/reinforced, -/obj/machinery/airalarm/directional{ - dir = 1; - pixel_y = -24 - }, /obj/effect/turf_decal/borderfloorblack, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/beach/starwalker) "rT" = ( @@ -1244,6 +1224,12 @@ }, /turf/open/floor/plating, /area/ruin/beach/starwalker) +"sI" = ( +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/beach/starwalker) "tm" = ( /obj/item/stack/ore/salvage/scrapmetal/five, /obj/effect/decal/cleanable/blood/drip, @@ -1331,9 +1317,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 5 }, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/wood{ icon_state = "wood-broken" }, @@ -1346,7 +1330,7 @@ /turf/open/floor/plating/dirt, /area/ruin/unpowered) "uK" = ( -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ start_charge = 0 }, /obj/structure/cable/cyan{ @@ -1553,9 +1537,7 @@ icon_state = "0-8" }, /obj/item/wallframe/apc, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel, /area/ruin/beach/starwalker) "ye" = ( @@ -1650,9 +1632,7 @@ /obj/structure/cable/orange{ icon_state = "1-2" }, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plating, /area/ruin/beach/starwalker) "zq" = ( @@ -1662,9 +1642,7 @@ "zx" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ruin/beach/starwalker) "zy" = ( @@ -1692,14 +1670,14 @@ color = "#808080" }, /obj/structure/rack, -/obj/machinery/firealarm{ - pixel_y = 24 - }, +/obj/machinery/firealarm/directional/north, /obj/item/storage/backpack/duffelbag/syndie, /turf/open/floor/mineral/plastitanium, /area/ruin/beach/starwalker) "zN" = ( -/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 4 }, @@ -1742,7 +1720,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, /obj/structure/frame/machine, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /turf/open/floor/plasteel/patterned/cargo_one, /area/ruin/beach/starwalker) "Aq" = ( @@ -1845,7 +1823,7 @@ /obj/structure/cable/cyan{ icon_state = "1-9" }, -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /turf/open/floor/plating{ @@ -1902,7 +1880,9 @@ /turf/open/floor/plasteel/dark, /area/ruin/beach/starwalker) "CI" = ( -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/beach/starwalker) "Db" = ( @@ -2091,7 +2071,8 @@ /obj/structure/curtain/bounty, /obj/machinery/door/poddoor/shutters{ id = "pcarrier_windows"; - name = "Blast Shutters" + name = "Blast Shutters"; + dir = 8 }, /turf/open/floor/plating, /area/ruin/beach/starwalker) @@ -2176,7 +2157,7 @@ /obj/machinery/suit_storage_unit/inherit, /obj/item/tank/jetpack/oxygen/harness, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ruin/beach/starwalker) "HE" = ( @@ -2249,7 +2230,7 @@ /obj/structure/cable/blue{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ start_charge = 0 }, /turf/open/floor/plasteel/patterned, @@ -2599,10 +2580,7 @@ /obj/structure/railing{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ruin/beach/starwalker) "Nv" = ( @@ -2700,7 +2678,7 @@ /obj/structure/cable/white{ icon_state = "1-8" }, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ruin/beach/starwalker) "Pe" = ( @@ -2748,7 +2726,7 @@ "Qb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/wallframe/firealarm, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/structure/frame/machine, /turf/open/floor/plasteel, /area/ruin/beach/starwalker) @@ -2786,7 +2764,7 @@ /area/ruin/beach/starwalker) "Qt" = ( /obj/machinery/power/terminal, -/obj/machinery/power/apc/auto_name/east{ +/obj/machinery/power/apc/auto_name/directional/east{ start_charge = 0 }, /obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ @@ -2801,6 +2779,14 @@ /obj/structure/spacevine/dense, /turf/open/floor/pod, /area/ruin/beach/starwalker) +"Qv" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + id = "pcarrier_windows"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/beach/starwalker) "Qx" = ( /obj/effect/turf_decal/weather/sand, /turf/open/water/beach, @@ -2817,9 +2803,7 @@ pixel_y = 7 }, /obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 }, @@ -2887,9 +2871,7 @@ /obj/structure/cable/orange{ icon_state = "2-8" }, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -3024,10 +3006,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -3048,9 +3027,7 @@ }, /obj/structure/table/reinforced, /obj/machinery/airalarm/directional/north, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/mineral/plastitanium, /area/ruin/beach/starwalker) "Ux" = ( @@ -3206,10 +3183,7 @@ }, /obj/item/stack/cable_coil, /obj/item/stack/circuit_stack, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/firealarm/directional/west, /obj/item/storage/box/ingredients/vegetarian, /obj/item/storage/box/ingredients/carnivore{ pixel_x = -4; @@ -3221,7 +3195,9 @@ /turf/open/floor/plating, /area/ruin/unpowered) "Wl" = ( -/obj/machinery/door/airlock/grunge, +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -3406,7 +3382,7 @@ /obj/structure/tank_dispenser/oxygen, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/east, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/structure/spacevine, /turf/open/floor/plasteel, /area/ruin/beach/starwalker) @@ -3471,11 +3447,7 @@ /obj/effect/turf_decal/techfloor{ dir = 5 }, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 24; - pixel_y = -1 - }, +/obj/item/radio/intercom/wideband/directional/east, /mob/living/simple_animal/parrot{ name = "pepper" }, @@ -4079,7 +4051,7 @@ tG iC FZ FZ -dC +dt FZ iC tG @@ -4426,13 +4398,13 @@ Bm FZ FZ FZ -dC +dt Qx uU FZ FZ FZ -CI +sI FZ FZ iC @@ -4716,9 +4688,9 @@ qS FZ FZ FZ -dC +dt XN -dC +dt Pv Pk id @@ -5003,7 +4975,7 @@ ou Nk FZ FZ -dC +Qv FZ oz yJ diff --git a/_maps/RandomRuins/BeachRuins/beach_fishing_hut.dmm b/_maps/RandomRuins/BeachRuins/beach_fishing_hut.dmm index c69a522c9c4c..6c48881266f6 100644 --- a/_maps/RandomRuins/BeachRuins/beach_fishing_hut.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_fishing_hut.dmm @@ -1,537 +1,2599 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/ebony, +/area/ruin/beach) "ae" = ( -/obj/structure/window/fulltile, -/turf/open/floor/carpet/royalblack, -/area/ruin/powered) +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/ruin/beach) +"av" = ( +/obj/structure/table/wood/bar, +/obj/item/reagent_containers/food/snacks/cubancarp{ + pixel_y = 6; + pixel_x = 11 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/machinery/light/small/directional/south{ + light_color = "#694c12" + }, +/turf/open/floor/wood/walnut, +/area/ruin/beach) "aF" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/toy/plush/carpplushie/dehy_carp, -/obj/item/toy/plush/carpplushie/dehy_carp, -/obj/item/toy/plush/carpplushie/dehy_carp, -/obj/item/grenade/spawnergrenade/spesscarp, -/turf/open/floor/carpet/royalblack, -/area/ruin/powered) +/obj/effect/turf_decal/weather/sand/corner{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"bf" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 4 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) "bE" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/snacks/cubancarp, -/turf/open/floor/carpet/red, -/area/ruin/powered) +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/ruin/beach) +"ch" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/water/beach, +/area/ruin/beach) +"cr" = ( +/obj/machinery/light/floor{ + pixel_y = 16 + }, +/turf/open/floor/wood/ebony, +/area/ruin/beach) "dd" = ( -/obj/structure/chair/wood/wings{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"dB" = ( +/mob/living/simple_animal/hostile/carp{ + bruteloss = 100 }, -/obj/item/nullrod/carp, -/turf/open/floor/carpet/red, -/area/ruin/powered) +/turf/open/water/beach, +/area/ruin/beach) +"dW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/corner, +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) "ep" = ( -/turf/closed/wall/mineral/wood, -/area/ruin/powered) +/obj/effect/turf_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/water/beach, +/area/ruin/beach) +"eJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing/wood{ + dir = 5 + }, +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken2" + }, +/area/ruin/beach) +"eO" = ( +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"fh" = ( +/obj/effect/turf_decal/weather/sand/corner, +/turf/open/water/beach/deep, +/area/ruin/beach) +"fo" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/ruin/beach) +"fG" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/effect/turf_decal/weather/sand/corner, +/obj/structure/flora/rock/asteroid, +/turf/open/water/beach, +/area/ruin/beach) +"fO" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{ + dir = 4 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"ge" = ( +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken6" + }, +/area/ruin/beach) +"gu" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/effect/turf_decal/weather/sand, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"gz" = ( +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/obj/structure/kitchenspike, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plastic, +/area/ruin/beach) "gT" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/storage/backpack/magspear_quiver, -/obj/item/storage/backpack/magspear_quiver, -/turf/open/floor/carpet/royalblack, -/area/ruin/powered) +/turf/open/floor/wood/ebony, +/area/ruin/beach) +"gZ" = ( +/obj/effect/turf_decal/borderfloor/corner, +/obj/effect/turf_decal/siding/white/corner, +/turf/open/water/beach, +/area/ruin/beach) "hd" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/snacks/burger/fish, -/turf/open/floor/carpet/red/airless, -/area/ruin/powered) +/obj/machinery/light/floor, +/obj/machinery/porta_turret/syndicate/energy{ + active_power_usage = 0; + faction = list("beach","pirate"); + idle_power_usage = 0; + reqpower = 0; + name = "Point defense anti-carp turret" + }, +/turf/open/floor/concrete/reinforced, +/area/ruin/beach) +"hh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/ruin/beach) "hH" = ( -/obj/structure/fence/end, -/turf/open/floor/wood, -/area/ruin/powered) +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/sand, +/area/ruin/beach) "hK" = ( -/turf/open/floor/carpet/red_gold, -/area/ruin/powered) +/turf/open/water/beach, +/area/ruin/beach) +"hW" = ( +/obj/effect/turf_decal/weather/sand/corner, +/obj/effect/turf_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/water/beach, +/area/ruin/beach) +"ic" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"jz" = ( +/obj/item/toy/plush/carpplushie/dehy_carp, +/obj/item/toy/plush/carpplushie/dehy_carp, +/obj/item/toy/plush/carpplushie/dehy_carp, +/obj/item/toy/plush/carpplushie/dehy_carp, +/obj/structure/closet/crate/wooden{ + name = "freeze dried carp" + }, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plastic, +/area/ruin/beach) "jD" = ( -/obj/machinery/door/airlock/wood/glass, -/turf/open/floor/carpet/royalblack, -/area/ruin/powered) +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"kj" = ( +/obj/structure/closet/cabinet, +/obj/item/pneumatic_cannon/speargun, +/obj/item/storage/backpack/magspear_quiver, +/obj/item/kitchen/knife/hunting, +/turf/open/floor/wood, +/area/ruin/beach) +"kw" = ( +/obj/effect/turf_decal/siding/wideplating/corner{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"kC" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"ly" = ( +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/machinery/gibber, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plastic, +/area/ruin/beach) "mr" = ( -/obj/structure/chair/wood/wings{ +/obj/effect/turf_decal/borderfloor{ dir = 4 }, -/mob/living/simple_animal/hostile/pirate/melee, -/turf/open/floor/carpet/red/airless, -/area/ruin/powered) -"nv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ +/obj/effect/turf_decal/siding/white{ dir = 4 }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/turf/open/water/beach/deep, +/area/ruin/beach) +"mP" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/wood, +/turf/open/floor/wood/ebony, +/area/ruin/beach) +"mV" = ( +/turf/open/floor/plasteel/stairs/wood{ + dir = 8 + }, +/area/ruin/beach) +"nn" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken3" + }, +/area/ruin/beach) +"nv" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 8 + }, +/turf/open/water/beach, +/area/ruin/beach) +"nG" = ( +/obj/effect/turf_decal/weather/sand, +/obj/effect/turf_decal/weather/sand/corner{ + dir = 1 + }, +/turf/open/water/beach, +/area/ruin/beach) +"ov" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ruin/beach) "oE" = ( -/turf/open/floor/carpet/red, -/area/ruin/powered) +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/ebony, +/area/ruin/beach) +"oH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"oP" = ( +/obj/machinery/light/floor{ + pixel_y = 16; + pixel_x = -16 + }, +/turf/open/floor/wood/ebony, +/area/ruin/beach) +"oS" = ( +/turf/open/floor/wood, +/area/ruin/beach) +"pe" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, +/turf/open/floor/wood/ebony, +/area/ruin/beach) +"pC" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 + }, +/turf/open/water/beach, +/area/ruin/beach) "pI" = ( -/mob/living/simple_animal/hostile/cat_butcherer{ - atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0); - desc = "A profession carp butcher, gone mad due to carptoxin exposure. There seems to be something in their pocket..."; - faction = list("hostile", "beach"); - health = 300; - loot = list(/obj/effect/mob_spawn/human/corpse/cat_butcher, /obj/item/guardiancreator/carp); - maxHealth = 300; - maxbodytemp = 10000; - melee_damage_lower = 20; - melee_damage_upper = 25; - minbodytemp = 0; - name = "The Butcher"; - ranged_cooldown_time = 15; - ranged_message = "fires the speargun at"; - real_name = "The Butcher"; - unique_name = 1 +/turf/open/floor/plating/asteroid/sand, +/area/ruin/beach) +"pJ" = ( +/obj/structure/spacevine, +/turf/open/floor/plating/asteroid/sand, +/area/ruin/beach) +"qE" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/sand/corner, +/turf/open/water/beach, +/area/ruin/beach) +"ra" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"ro" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 + }, +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/water/beach/deep, +/area/ruin/beach) +"rs" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/turf/open/floor/plastic, +/area/ruin/beach) +"sp" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 5 }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/turf/open/water/beach/deep, +/area/ruin/beach) "sA" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/pneumatic_cannon/speargun, -/obj/item/pneumatic_cannon/speargun, -/turf/open/floor/carpet/royalblack, -/area/ruin/powered) +/obj/structure/chair/plastic{ + dir = 8 + }, +/mob/living/simple_animal/hostile/pirate/ranged{ + faction = list("beach","pirate") + }, +/turf/open/floor/wood/ebony, +/area/ruin/beach) +"sJ" = ( +/obj/structure/flora/bigplant, +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"sN" = ( +/obj/structure/chair/sofa, +/obj/machinery/light/small/directional/north{ + light_color = "#694c12" + }, +/obj/structure/safe/floor, +/obj/item/book/granter/martial/carp, +/obj/item/grenade/clusterbuster/spawner_spesscarp, +/turf/open/floor/carpet, +/area/ruin/beach) +"sR" = ( +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/structure/closet/secure_closet/freezer, +/turf/open/floor/plastic, +/area/ruin/beach) +"sV" = ( +/obj/structure/spacevine, +/turf/open/water/beach/deep, +/area/ruin/beach) +"tj" = ( +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen{ + anchored = 1 + }, +/turf/open/floor/plastic, +/area/ruin/beach) +"tA" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 9 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"tH" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/water/beach, +/area/ruin/beach) "tV" = ( -/mob/living/simple_animal/hostile/pirate/melee, -/turf/open/floor/carpet/red, -/area/ruin/powered) -"tX" = ( -/obj/machinery/porta_turret/syndicate/energy{ - active_power_usage = 0; - faction = list("turret", "beach"); - idle_power_usage = 0; - reqpower = 0 +/obj/effect/turf_decal/siding/wideplating/corner{ + dir = 4 }, -/turf/closed/wall/mineral/wood, -/area/ruin/powered) +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"tX" = ( +/obj/structure/spacevine/dense, +/turf/open/floor/plating/asteroid/sand, +/area/ruin/beach) "ut" = ( -/turf/open/floor/carpet/royalblack, -/area/ruin/powered) +/turf/closed/wall/mineral/wood, +/area/ruin/beach) +"uC" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/water/beach/deep, +/area/ruin/beach) "uD" = ( -/turf/open/floor/carpet/red/airless, -/area/ruin/powered) +/obj/effect/turf_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"uY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/corner{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) "uZ" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/snacks/fishandchips, -/turf/open/floor/carpet/red, -/area/ruin/powered) +/obj/effect/turf_decal/borderfloor, +/obj/effect/turf_decal/siding/white, +/turf/open/water/beach/deep, +/area/ruin/beach) "vc" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/squid, -/turf/open/floor/carpet/red/airless, -/area/ruin/powered) +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"vv" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/plating/grass/beach, +/area/ruin/beach) +"vA" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/water/beach, +/area/ruin/beach) +"vD" = ( +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom, +/turf/open/floor/plastic, +/area/ruin/beach) "vL" = ( -/obj/structure/kitchenspike, +/turf/open/floor/concrete/tiles, +/area/ruin/beach) +"vM" = ( +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/kitchen/knife/butcher, +/turf/open/floor/plastic, +/area/ruin/beach) +"wu" = ( +/obj/effect/turf_decal/weather/sand{ dir = 4 }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/turf/open/water/beach/deep, +/area/ruin/beach) "wH" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/carpet/red, -/area/ruin/powered) +/obj/effect/turf_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"xl" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"yo" = ( +/obj/structure/table/wood/poker, +/obj/item/kirbyplants{ + icon_state = "plant-17"; + pixel_y = 13; + layer = 3 + }, +/obj/item/reagent_containers/food/snacks/burger/fish{ + pixel_y = -3; + pixel_x = 11; + layer = 3.1 + }, +/turf/open/floor/carpet, +/area/ruin/beach) +"yy" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 + }, +/obj/structure/flora/rock/jungle, +/turf/open/water/beach, +/area/ruin/beach) +"yD" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"yL" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"yQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/ruin/beach) +"zc" = ( +/obj/structure/railing/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/flora/bigplant, +/turf/open/floor/concrete/tiles, +/area/ruin/beach) +"zq" = ( +/obj/structure/table/wood/reinforced, +/obj/item/reagent_containers/food/snacks/fishandchips, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/turf/open/floor/plastic, +/area/ruin/beach) +"zB" = ( +/obj/effect/turf_decal/siding/wideplating/corner, +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Ap" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/turf/open/water/beach, +/area/ruin/beach) +"Ay" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"AF" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/concrete/tiles, +/area/ruin/beach) +"AO" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/turf/open/water/beach, +/area/ruin/beach) +"AT" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/open/water/beach, +/area/ruin/beach) +"AY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/flora/junglebush/b, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/grass/beach, +/area/ruin/beach) +"Bg" = ( +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/mob/living/simple_animal/hostile/pirate/melee{ + faction = list("beach","pirate") + }, +/turf/open/floor/plastic, +/area/ruin/beach) +"BD" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/item/trash/sosjerky, +/obj/item/trash/chips, +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken5" + }, +/area/ruin/beach) "Ch" = ( -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet/red, -/area/ruin/powered) +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -11 + }, +/turf/open/floor/plastic, +/area/ruin/beach) +"Cm" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/turf/open/floor/plastic, +/area/ruin/beach) +"CJ" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"CV" = ( +/obj/machinery/grill, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plastic, +/area/ruin/beach) "Ds" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/cigarettes/cigars/havana, -/turf/open/floor/carpet/red/airless, -/area/ruin/powered) +/obj/effect/turf_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Dz" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) "DM" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/carpet/red/airless, -/area/ruin/powered) +/turf/open/water/beach/deep, +/area/ruin/beach) "DO" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/snacks/fishfry, -/turf/open/floor/carpet/red/airless, -/area/ruin/powered) +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"DS" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ruin/beach) "Em" = ( -/obj/structure/fence, -/turf/open/floor/wood, -/area/ruin/powered) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken7" + }, +/area/ruin/beach) "Eq" = ( -/obj/machinery/door/airlock/wood/glass, -/turf/open/floor/wood, -/area/ruin/powered) +/obj/structure/flora/ausbushes/reedbush, +/turf/open/water/beach/deep, +/area/ruin/beach) "FG" = ( /turf/template_noop, /area/template_noop) +"FI" = ( +/obj/effect/turf_decal/siding/wideplating/corner{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown, +/turf/open/water/beach/deep, +/area/ruin/beach) "FK" = ( -/obj/machinery/light/dim, -/turf/open/floor/carpet/royalblack, -/area/ruin/powered) -"Iv" = ( -/obj/structure/fence{ +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"FW" = ( +/obj/effect/turf_decal/weather/sand, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Gr" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/turf/open/floor/plastic, +/area/ruin/beach) +"Gt" = ( +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/mob/living/simple_animal/hostile/cat_butcherer{ + atmos_requirements = list("min_oxy"=0,"max_oxy"=0,"min_tox"=0,"max_tox"=0,"min_co2"=0,"max_co2"=0,"min_n2"=0,"max_n2"=0); + desc = "A profession carp butcher, gone mad due to carptoxin exposure. There seems to be something in their pocket..."; + faction = list("beach","pirate"); + health = 300; + loot = list(/obj/effect/mob_spawn/human/corpse/cat_butcher,/obj/item/guardiancreator/carp); + maxHealth = 300; + maxbodytemp = 10000; + melee_damage_lower = 20; + melee_damage_upper = 25; + minbodytemp = 0; + name = "The Butcher"; + ranged_cooldown_time = 15; + ranged_message = "fires the speargun at"; + real_name = "The Butcher"; + unique_name = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plastic, +/area/ruin/beach) +"GM" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"GP" = ( +/obj/structure/chair/sofa/right, +/obj/effect/decal/cleanable/cobweb, +/mob/living/simple_animal/hostile/pirate/melee{ + faction = list("beach","pirate") + }, +/turf/open/floor/carpet, +/area/ruin/beach) +"He" = ( +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/plastic, +/area/ruin/beach) +"Hj" = ( +/obj/machinery/door/airlock/freezer{ + name = "Freezer Room"; dir = 4 }, -/turf/open/floor/wood, -/area/ruin/powered) +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ruin/beach) +"HW" = ( +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/plastic, +/area/ruin/beach) +"In" = ( +/obj/effect/turf_decal/borderfloor/corner, +/obj/effect/turf_decal/siding/white/corner, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Iv" = ( +/obj/effect/decal/cleanable/garbage{ + pixel_y = -14 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"IN" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/water/beach, +/area/ruin/beach) +"IV" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown/corner{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Js" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/sand/corner{ + dir = 8 + }, +/obj/structure/flora/rock/jungle, +/turf/open/water/beach, +/area/ruin/beach) +"JL" = ( +/mob/living/simple_animal/hostile/carp/megacarp{ + dir = 8; + name = "Mother Carp"; + loot = list("/obj/item/clothing/suit/space/hardsuit/carp"); + faction = list("hostile","carp") + }, +/turf/open/floor/plating/asteroid/sand, +/area/ruin/beach) "Kq" = ( -/obj/machinery/light/dim, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/mob/living/simple_animal/hostile/carp{ + bruteloss = 100 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"KW" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/curtain/cloth/grey, +/turf/open/floor/wood/ebony, +/area/ruin/beach) "KY" = ( -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet/red/airless, -/area/ruin/powered) +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) "Ly" = ( -/turf/open/floor/plasteel/stairs, -/area/ruin/powered) +/obj/structure/closet/crate/bin, +/obj/item/trash/can, +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"LE" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/north, +/obj/item/gun/ballistic/shotgun/winchester/lethal, +/turf/open/floor/wood, +/area/ruin/beach) +"LP" = ( +/obj/structure/railing/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/flora/bigplant, +/turf/open/floor/concrete/tiles, +/area/ruin/beach) "Mn" = ( -/obj/structure/sink, -/turf/closed/wall/mineral/wood, -/area/ruin/powered) +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/water/beach/deep, +/area/ruin/beach) +"MT" = ( +/obj/structure/table/wood/bar, +/obj/item/reagent_containers/food/snacks/fishfry{ + pixel_y = 8; + pixel_x = 2 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_y = 3; + pixel_x = -5 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = -18; + pixel_y = 10; + layer = 2.95 + }, +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"Nq" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing/corner, +/turf/open/water/beach/deep, +/area/ruin/beach) "Ok" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/turf/open/floor/plastic, +/area/ruin/beach) +"Ol" = ( +/turf/open/floor/carpet, +/area/ruin/beach) "Os" = ( -/mob/living/simple_animal/hostile/pirate/ranged, -/turf/open/floor/carpet/red_gold, -/area/ruin/powered) +/obj/structure/table/wood/reinforced, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/obj/item/kitchen/knife{ + pixel_y = 12; + pixel_x = 9 + }, +/obj/item/reagent_containers/food/snacks/fishfingers{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plastic, +/area/ruin/beach) "OE" = ( -/obj/structure/table/rolling, -/obj/item/kitchen/knife/butcher, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"OO" = ( +/obj/structure/spacevine/dense, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Pe" = ( +/obj/structure/spawner/carp, +/turf/open/floor/plating/asteroid/sand, +/area/ruin/beach) +"Pj" = ( +/obj/structure/table/wood/bar, +/obj/machinery/light/small/directional/north, +/obj/item/binoculars{ + pixel_x = -1; + layer = 2.9 + }, +/turf/open/floor/wood/ebony, +/area/ruin/beach) "PB" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/structure/closet/cabinet, +/obj/item/pneumatic_cannon/speargun, +/obj/item/storage/backpack/magspear_quiver, +/obj/item/kitchen/knife/hunting, +/obj/machinery/light/small/directional/east{ + light_color = "#d8b1b1" + }, +/turf/open/floor/wood, +/area/ruin/beach) +"PM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ruin/beach) "Qi" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/water/beach, +/area/ruin/beach) "QO" = ( -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/turf/closed/mineral, +/area/ruin/beach) +"QV" = ( +/obj/structure/table/wood/reinforced, +/obj/machinery/microwave{ + pixel_y = 7 + }, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/turf/open/floor/plastic, +/area/ruin/beach) +"QW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/grenade/spawnergrenade/spesscarp{ + pixel_x = 3; + pixel_y = -21 + }, +/obj/item/stack/medical/bruise_pack/herb{ + pixel_x = -5; + name = "herbal pack" + }, +/obj/item/stack/medical/ointment/herb{ + pixel_y = 6; + pixel_x = 11 + }, +/turf/open/floor/wood, +/area/ruin/beach) +"Rh" = ( +/obj/structure/chair/sofa/corner, +/mob/living/simple_animal/hostile/pirate/melee{ + faction = list("beach","pirate") + }, +/turf/open/floor/carpet, +/area/ruin/beach) +"Sl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4; + layer = 3.1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"SC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"SV" = ( +/obj/structure/flora/driftlog, +/turf/open/water/beach/deep, +/area/ruin/beach) "Ta" = ( -/obj/structure/table/rolling, -/obj/machinery/microwave, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/plating/asteroid/sand, +/area/ruin/beach) +"Ty" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood, +/area/ruin/beach) +"TQ" = ( +/obj/structure/flora/rock/asteroid, +/turf/open/water/beach, +/area/ruin/beach) +"Ue" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Uj" = ( +/obj/structure/table/wood/reinforced, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/turf/open/floor/plastic, +/area/ruin/beach) +"Ut" = ( +/obj/item/oar, +/obj/item/oar, +/obj/structure/rack, +/turf/open/floor/wood/ebony, +/area/ruin/beach) +"UE" = ( +/obj/effect/turf_decal/weather/sand/corner, +/obj/structure/flora/ausbushes/reedbush, +/turf/open/water/beach/deep, +/area/ruin/beach) +"UH" = ( +/turf/open/floor/plasteel/stairs/wood, +/area/ruin/beach) +"UX" = ( +/obj/vehicle/ridden/lavaboat{ + dir = 8; + name = "boat" + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Vt" = ( +/obj/item/nullrod/carp, +/obj/structure/bed/dogbed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"Vy" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 1 + }, +/turf/open/water/beach, +/area/ruin/beach) +"VQ" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/plating/grass/beach, +/area/ruin/beach) +"Wb" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 1 + }, +/turf/open/water/beach, +/area/ruin/beach) +"Wk" = ( +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/mob/living/simple_animal/hostile/carp{ + bruteloss = 100 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/plastic, +/area/ruin/beach) +"WP" = ( +/obj/structure/table/wood/bar, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_y = 7; + pixel_x = 9 + }, +/obj/item/lighter{ + pixel_y = -4 + }, +/obj/item/cigbutt{ + pixel_y = 3; + pixel_x = 5 + }, +/turf/open/floor/wood/ebony, +/area/ruin/beach) "WT" = ( -/obj/structure/fence/corner{ - dir = 5 +/turf/open/floor/wood/walnut, +/area/ruin/beach) +"WU" = ( +/obj/effect/turf_decal/weather/sand/corner, +/obj/effect/turf_decal/weather/sand/corner{ + dir = 1 }, -/turf/open/floor/wood, -/area/ruin/powered) +/turf/open/water/beach, +/area/ruin/beach) "Xp" = ( -/obj/structure/table/rolling, -/obj/item/clothing/suit/space/hardsuit/carp, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing{ + layer = 3.3 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Xr" = ( +/obj/structure/table/wood/bar, +/obj/item/flashlight/lamp/green{ + pixel_y = 8 + }, +/turf/open/floor/wood/ebony, +/area/ruin/beach) "Xt" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/structure/chair/plastic, +/obj/item/cigbutt{ + pixel_y = 7; + pixel_x = 9; + layer = 2.9 + }, +/obj/item/cigbutt{ + pixel_y = 3; + pixel_x = -10; + layer = 2.9 + }, +/obj/item/cigbutt{ + pixel_y = -5; + pixel_x = 4; + layer = 2.9 + }, +/mob/living/simple_animal/hostile/pirate/ranged{ + faction = list("beach","pirate") + }, +/turf/open/floor/wood/ebony, +/area/ruin/beach) +"XA" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{ + dir = 4 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Yu" = ( +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken7" + }, +/area/ruin/beach) +"Yz" = ( +/obj/structure/closet/crate/bin, +/obj/item/reagent_containers/food/snacks/carpmeat/imitation, +/obj/item/reagent_containers/food/snacks/carpmeat/imitation, +/obj/item/reagent_containers/food/snacks/carpmeat/imitation, +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/turf/open/floor/plastic, +/area/ruin/beach) "YJ" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown/corner{ + dir = 1 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"Zq" = ( +/obj/effect/turf_decal/weather/sand/corner{ + dir = 8 + }, +/turf/open/water/beach/deep, +/area/ruin/beach) "ZG" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/ruin/powered) +/obj/effect/turf_decal/siding/wideplating/corner{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/inteqbrown{ + dir = 1 + }, +/obj/vehicle/ridden/lavaboat{ + dir = 4; + name = "boat" + }, +/turf/open/water/beach/deep, +/area/ruin/beach) +"ZJ" = ( +/mob/living/simple_animal/hostile/pirate/melee{ + faction = list("beach","pirate") + }, +/turf/open/floor/wood, +/area/ruin/beach) +"ZL" = ( +/obj/item/ammo_box/c38_box/hunting, +/obj/structure/closet/crate/wooden, +/turf/open/floor/wood, +/area/ruin/beach) +"ZV" = ( +/obj/effect/turf_decal/corner/opaque/pink/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plastic, +/area/ruin/beach) (1,1,1) = {" -ep -ep -ep -ep -ep -ep -ep -ep -ep FG FG FG FG FG -"} -(2,1,1) = {" -ae -ut -ut -aF -gT -sA -ut -ut -ep FG FG FG FG FG -"} -(3,1,1) = {" -ae -ut -ut -ut -ut -ut -ut -FK -ep -ep -ep -ep -ep -tX -"} -(4,1,1) = {" -ae -ut -hK +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +hK +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +"} +(2,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +hK +hK +hK +hK +hK +hK +FG +FG +FG +FG +FG +FG +FG +FG +"} +(3,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +hK +hK +hK +hK +hK +hK +hK +AT +hK +FG +FG +FG +FG +FG +FG +FG +"} +(4,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +AT +hK +hK +DM +DM +DM +DM +DM +hK +hK +hK +hK +hK +FG +FG +FG +FG +FG +FG +"} +(5,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +hK +hK +hK +uC +DM +DM +DM +uC +DM +DM +DM +hK +hK +hK +hK +hK +FG +FG +FG +FG +FG +"} +(6,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +hK +hK +DM +DM +DM +DM +DM +DM +DM +DM +DM +DM +In +mr +uD +hK +hK +hK +hK +FG +FG +FG +FG +"} +(7,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +DM +DM +DM +SV +DM +DM +DM +DM +DM +DM +DM +DM +DM +uZ +hd +vc +DM +hK +hK +hK +FG +FG +FG +FG +"} +(8,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +DM +DM +DM +In +mr +uD +DM +DM +DM +DM +DM +DM +DM +wH +KY +Ds +DM +hK +hK +hK +hK +FG +FG +FG +"} +(9,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +hK +DM +DM +DM +DM +uZ +hd +vc +DM +fh +wu +Zq +DM +Eq +DM +DM +DM +DM +DM +DM +hK +hK +hK +hK +FG +FG +"} +(10,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +DM +DM +DM +DM +DM +DM +DM +wH +KY +Ds +fh +CJ +ut +bE +bE +ut +bE +bE +ut +DO +DO +Sl +DM +hK +hK +hK +FG +FG +"} +(11,1,1) = {" +FG +FG +FG +FG +FG +FG +FG +hK +hK +hK +hK +DM +DM +DM +Nq +DO +DO +DO +DO +DO +DO +DO +gu +AY +ut +GP +Ol +hh +ov +Vt +ut +oE +WP +FK +DM +hK +hK +hK +hK +FG +"} +(12,1,1) = {" +FG +FG +FG +FG +hK +hK +hK +dB +DM +DM +DM +DM +DM +DM +Xp +Xr +gT +gT +gT +gT +gT +gT +gT +Ut +ut +sN +yo +fo +nn +dd +KW +gT +Xt +FK +DM +hK +hK +hK +hK +FG +"} +(13,1,1) = {" +FG +FG +FG +hK +hK +hK +DM +DM +DM +sV +DM +DM +Eq +DM +Xp +sA +gT +gT +gT +gT +gT +aa +gT +gT +ut +Rh +ae +Ol +kC +Yu +KW +gT +gT +FK +DM +hK +hK +hK +hK +FG +"} +(14,1,1) = {" +FG +FG +FG +hK +DM +DM +DM +DM +sV +OO +DM +DM +uC +DM +GM +oH +dW +gT +gT +uY +oH +ut +ut +pe +ut +ut +ut +BD +yL +av +ut +Pj +gT +FK +DM +DM +gZ +tH +ep +hK +"} +(15,1,1) = {" +FG +FG +hK +hK +DM +DM +DM +DM +DM +OO +sV +DM +DM +uC +DM +DM +FI +gT +gT +ZG +DM +ut +CV +ZV +Ch +Ok +mP +dd +WT +MT +ut +SC +oH +yD +DM +DM +uZ +hd +IN +hK +"} +(16,1,1) = {" +FG +hK +hK +DM +DM +DM +Kq +DM +DM +sV +OO +sV +DM +DM +DM +DM +zB +gT +oP +tV +DM +bE +Gr +Ok +ZV +jz +ut +ut +ut +ut +ut +ut +ut +bf +fO +DM +wH +vA +hW +nv +"} +(17,1,1) = {" +FG +hK +hK +DM +DM +DM +DM +fh +wu +Zq +DM +sV +DM +DM +DM +DM +FI +gT +gT +kw +DM +ut +rs +Ok +Bg +zq +ut +sJ +DS +Yu +Iv +Ly +ut +AF +sp +XA +qE +nv +pC +Vy +"} +(18,1,1) = {" +FG +ch +hK +DM +DM +DM +Eq +QO +QO +QO +DM +DM +DM +DM +DM +UX +zB +gT +cr +tV +fh +bE +QV +Ok +He +Ok +mP +ge +WT +dd +WT +Em +ut +zc +vL +hH +yy +WU +nv +TQ +"} +(19,1,1) = {" +hK +ch +DM +DM +DM +UE +QO +QO +QO +QO +QO +Zq +DM +DM +DM +DM +FI +gT +gT +kw +FW +ut +Uj +Os +HW +Yz +ut +QW +yQ +mV +eJ +PM +mP +UH +vL +hH +fG +Ap +Js +hK +"} +(20,1,1) = {" +hK +hK +DM +DM +DM +QO +QO +QO +pJ +pI +QO +Mn +Zq +DM +DM +DM +IV +eO +eO +YJ +FW +ut +ut +ut +Hj +ut +ut +LE +ZJ +oS +oS +oS +ut +LP +vL +Wb +nG +pI +Qi +hK +"} +(21,1,1) = {" +hK +hK +DM +DM +DM +QO +QO +QO +Pe +pI +tX +Ta +Dz +Zq +DM +DM +DM +DM +DM +DM +OE +xl +ut +vD +Wk +sR +ut +Ty +oS +ZL +kj +PB +ut +AF +tA +aF +pC +AO +Vy +FG +"} +(22,1,1) = {" +hK +hK +DM +DM +uC +QO +QO +QO +pJ +JL +pJ +QO +pJ +Mn +Zq +DM +DM +DM +In +mr +uD +OE +ut +vM +Gt +Cm +ut +ut +bE +bE +bE +ut +ut +Ue +aF +DM +hK +hK +hK +FG +"} +(23,1,1) = {" +FG +hK +DM +DM +DM +fh +QO +QO +QO +pJ +pI +QO +QO +QO +jD +DM +DM +DM +uZ +hd +vc +fh +ut +ly +gz +tj +ut +VQ +vv +Ay +ra +DM +DM +DM +DM +DM +hK +hK +hK +FG +"} +(24,1,1) = {" +FG +hK +hK +DM +DM +FW +QO +QO +QO +QO +QO +QO +QO +QO +jD +DM +DM +DM +wH +KY +Ds +FW +ut +ut +ut +ut +ut +Ta +Ay +ra +In +mr +uD +DM +DM +DM +hK +hK +hK +FG +"} +(25,1,1) = {" +FG +hK +hK +DM +DM +ro +ic +xl +QO +QO +QO +QO +QO +QO +ra +DM +DM +DM +DM +DM +DM +OE +ic +ra +DM +OE +ic +ic +ra +DM +uZ +hd +vc +DM +DM +hK +hK +hK +FG +FG +"} +(26,1,1) = {" +FG +FG +hK +Kq +DM +DM +DM +OE +ic +QO +QO +QO +QO +DM +DM +DM +DM +Eq +DM +Eq +DM +DM +DM +DM +DM +DM +DM +DM +DM +DM +wH +KY +Ds +hK +hK +hK +hK +FG +FG +FG +"} +(27,1,1) = {" +FG +FG +hK +DM +DM +DM +DM +DM +DM +DM +DM +Eq +DM +DM +DM +DM +DM +Eq +AT +hK +AT +DM +DM +DM +DM +DM +DM +DM +hK +hK +hK +hK +AT +hK +hK +FG +FG +FG +FG +FG +"} +(28,1,1) = {" +FG +FG +hK +hK +DM +DM +DM +DM +DM +DM +DM +DM +DM +DM +DM +DM +hK +hK +hK +hK +hK +hK +hK +DM +DM +hK +hK +hK +ch +hK +hK +hK +hK +hK +FG +FG +FG +FG +FG +FG +"} +(29,1,1) = {" +FG +FG +FG hK hK hK hK -ut -ep -Ok -ZG -QO -QO -ep -"} -(5,1,1) = {" -ae -ut -hK -oE -oE -oE -hK -ut -jD -QO -QO -PB +DM +DM Kq -ep -"} -(6,1,1) = {" -ae -ut -hK -oE -mr -uD -hK -ut -jD -QO -QO -nv -QO -ep -"} -(7,1,1) = {" -ae -ut -hK -uZ -hd -vc +DM +DM hK -ut -Mn -QO -QO -vL -QO -ep -"} -(8,1,1) = {" -ae -ut -Os -wH -KY -Ds hK -ut -ep -OE -pI -QO -QO -ep -"} -(9,1,1) = {" -ae -ut hK -Ch -KY -DM hK -FK -ep -Qi -QO -vL -QO -ep -"} -(10,1,1) = {" -ae -ut hK -bE -KY -DO hK -ut -ep -Ta -QO -QO -QO -ep -"} -(11,1,1) = {" -ae -ut +FG +FG hK -oE -tV -oE hK -ut -ep -Xp -QO -vL -QO -ep -"} -(12,1,1) = {" -ae -ut hK -dd -oE -oE +AT hK -ut -ep -Xt -QO -nv -Kq -ep -"} -(13,1,1) = {" -ae -ut hK +ch hK +ch hK hK hK -ut -ep -YJ -QO -QO -QO -ep -"} -(14,1,1) = {" -ae -ut -ut -ut -ut -ut -ut -FK -ep -ep -ep -ep -ep -tX -"} -(15,1,1) = {" -ae -ut -ut -ut -ut -ut -ut -ut -ep +FG +FG +FG FG FG FG FG FG "} -(16,1,1) = {" -ep -ep -ep -ep -ep -Eq -ep -ep -ep -hH +(30,1,1) = {" FG FG FG FG -"} -(17,1,1) = {" +FG +hK +hK +hK +hK +hK +hK +hK +hK +hK FG FG FG FG -Iv -Ly -Ly -Ly -Ly -Ly -Ly FG FG FG -"} -(18,1,1) = {" +FG +hK +hK +hK +hK +hK +hK +hK +hK +FG +FG FG FG FG FG -WT -Em -Em -Em -Em -hH FG FG FG diff --git a/_maps/RandomRuins/BeachRuins/beach_ocean_town.dmm b/_maps/RandomRuins/BeachRuins/beach_ocean_town.dmm index 73891346e25a..b78f7dab6939 100644 --- a/_maps/RandomRuins/BeachRuins/beach_ocean_town.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_ocean_town.dmm @@ -29,9 +29,7 @@ /area/ruin/beach/oceantown) "ar" = ( /obj/effect/turf_decal/siding/wood, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/ruin/beach/oceantown) @@ -53,10 +51,6 @@ }, /turf/open/water/beach, /area/ruin/beach/oceantown) -"aF" = ( -/obj/structure/flora/rock/beach, -/turf/open/water/beach/deep, -/area/ruin/beach/oceantown) "aM" = ( /obj/machinery/door/airlock{ name = "Employees Only" @@ -119,9 +113,7 @@ /area/ruin/beach/oceantown/shop) "bu" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood, /area/ruin/beach/oceantown) "bD" = ( @@ -205,9 +197,7 @@ /obj/structure/toilet{ pixel_y = 13 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ruin/beach/oceantown) "cN" = ( @@ -415,10 +405,15 @@ /obj/effect/turf_decal/weather/sand, /turf/open/water/beach, /area/ruin/beach/oceantown) -"fh" = ( -/obj/machinery/light/small{ - dir = 1 +"fg" = ( +/obj/machinery/door/airlock{ + name = "Employees Only"; + dir = 4 }, +/turf/open/floor/plasteel/tech, +/area/ruin/beach/oceantown/shop) +"fh" = ( +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ruin/beach/oceantown) "fn" = ( @@ -500,9 +495,7 @@ /area/ruin/beach/oceantown/hotel) "fL" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood, /area/ruin/beach/oceantown) "fV" = ( @@ -573,9 +566,7 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) "gX" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/carpet, /area/ruin/beach/oceantown) "gZ" = ( @@ -630,7 +621,7 @@ }, /area/ruin/beach/oceantown) "hG" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood, /area/ruin/beach/oceantown/hotel) "hL" = ( @@ -697,11 +688,12 @@ /turf/open/floor/plating/grass/beach/lit, /area/ruin/beach/oceantown) "io" = ( -/turf/open/floor/glass{ - baseturfs = /turf/open/water; - light_range = 2 +/obj/machinery/door/airlock/public/glass{ + name = "Johann's Bar"; + dir = 4 }, -/area/ruin/beach/oceantown) +/turf/open/floor/plasteel/tech, +/area/ruin/beach/oceantown/bar) "iu" = ( /obj/structure/bed, /turf/open/floor/carpet, @@ -748,7 +740,8 @@ /area/ruin/beach/oceantown) "iW" = ( /obj/machinery/door/airlock/public/glass{ - name = "Grocery Store" + name = "Grocery Store"; + dir = 4 }, /obj/effect/turf_decal/corner/opaque/white/diagonal{ dir = 8 @@ -889,7 +882,8 @@ /area/ruin/beach/oceantown/bar) "kW" = ( /obj/machinery/door/airlock/public/glass{ - name = "General Store" + name = "General Store"; + dir = 4 }, /obj/effect/turf_decal/corner/opaque/white/diagonal{ dir = 8 @@ -909,7 +903,7 @@ /turf/open/floor/wood, /area/ruin/beach/oceantown) "lj" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/carpet, /area/ruin/beach/oceantown/hotel) "lk" = ( @@ -926,14 +920,15 @@ }, /area/ruin/beach/oceantown) "lE" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/water/beach/deep, -/area/ruin/beach/oceantown) -"lH" = ( -/obj/structure/railing/wood{ +/obj/machinery/door/airlock/public/glass{ + name = "The 'Nutshack"; dir = 4 }, -/turf/open/water/beach/deep, +/turf/open/floor/plasteel/tech, +/area/ruin/beach/oceantown/shop) +"lH" = ( +/obj/effect/turf_decal/weather/sand/corner, +/turf/open/water/beach, /area/ruin/beach/oceantown) "lL" = ( /obj/effect/turf_decal/weather/sand{ @@ -1009,13 +1004,6 @@ /obj/structure/closet/crate/bin, /turf/open/floor/wood, /area/ruin/beach/oceantown) -"mz" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/stalkybush{ - name = "reeds" - }, -/turf/open/water/beach, -/area/ruin/beach/oceantown) "mG" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/weather/sand{ @@ -1072,13 +1060,6 @@ }, /turf/open/water/beach, /area/ruin/beach/oceantown) -"nF" = ( -/obj/structure/flora/ausbushes/stalkybush{ - name = "reeds" - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/water/beach/deep, -/area/ruin/beach/oceantown) "nL" = ( /obj/structure/railing/wood, /obj/effect/turf_decal/weather/sand{ @@ -1164,9 +1145,7 @@ /area/ruin/beach/oceantown) "oM" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white, /area/ruin/beach/oceantown/bar) "oS" = ( @@ -1186,16 +1165,16 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) "pm" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood, /area/ruin/beach/oceantown) "pn" = ( /turf/open/water/beach, /area/ruin/beach/oceantown) "pq" = ( -/obj/structure/mineral_door/sandstone, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) "pr" = ( @@ -1207,9 +1186,7 @@ }, /area/ruin/beach/oceantown) "ps" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/carpet/green, /area/ruin/beach/oceantown/hotel) "pt" = ( @@ -1273,10 +1250,6 @@ /obj/effect/turf_decal/weather/sand, /turf/open/water/beach, /area/ruin/beach/oceantown) -"qs" = ( -/obj/structure/railing/corner/wood, -/turf/open/water/beach/deep, -/area/ruin/beach/oceantown) "qu" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{ @@ -1296,6 +1269,10 @@ }, /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) +"qJ" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/grass/beach/lit, +/area/ruin/beach/oceantown) "qW" = ( /obj/structure/chair/wood{ dir = 4 @@ -1323,9 +1300,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/dresser, /turf/open/floor/carpet, /area/ruin/beach/oceantown) @@ -1401,9 +1376,7 @@ "sb" = ( /obj/structure/table, /obj/machinery/microwave, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white, /area/ruin/beach/oceantown/bar) "se" = ( @@ -1425,9 +1398,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/ruin/beach/oceantown) @@ -1452,7 +1423,7 @@ /area/ruin/beach/oceantown) "sA" = ( /obj/structure/table/wood/fancy/black, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /obj/item/reagent_containers/food/drinks/drinkingglass{ pixel_y = 4; pixel_x = 8 @@ -1474,7 +1445,7 @@ }, /area/ruin/beach/oceantown) "sS" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood, /area/ruin/beach/oceantown) "sT" = ( @@ -1530,7 +1501,7 @@ /area/ruin/beach/oceantown) "tD" = ( /obj/structure/table, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/bedsheetbin, /turf/open/floor/plasteel, /area/ruin/beach/oceantown/hotel) @@ -1586,9 +1557,7 @@ /obj/machinery/chem_dispenser/drinks/fullupgrade{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood{ light_range = 2 }, @@ -1616,9 +1585,7 @@ /area/ruin/beach/oceantown) "uy" = ( /obj/structure/rack, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/shovel, /obj/item/shovel, /obj/item/shovel, @@ -1639,9 +1606,7 @@ }, /area/ruin/beach/oceantown) "uV" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ruin/beach/oceantown) "uW" = ( @@ -1826,9 +1791,7 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) "xy" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/beach/oceantown/shop) "xz" = ( @@ -1934,9 +1897,7 @@ /area/ruin/beach/oceantown) "yC" = ( /obj/structure/table/wood/bar, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/carpet/green, /area/ruin/beach/oceantown) "yD" = ( @@ -2078,9 +2039,7 @@ /area/ruin/beach/oceantown) "zZ" = ( /obj/structure/table/wood/fancy/black, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/item/reagent_containers/food/drinks/drinkingglass{ pixel_y = 3; pixel_x = 3 @@ -2180,9 +2139,7 @@ /turf/open/floor/plasteel, /area/ruin/beach/oceantown) "Bq" = ( -/obj/structure/mineral_door/wood{ - name = "Checkpoint" - }, +/obj/machinery/door/airlock/wood, /turf/open/floor/plasteel/tech, /area/ruin/beach/oceantown) "BC" = ( @@ -2200,6 +2157,11 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/plating/grass/beach/lit, /area/ruin/beach/oceantown) +"BQ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/grass/beach/lit, +/area/ruin/beach/oceantown) "BV" = ( /obj/structure/filingcabinet, /turf/open/floor/plasteel/grimy, @@ -2215,8 +2177,10 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) "Ca" = ( -/obj/structure/railing/wood, -/turf/open/water/beach/deep, +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 + }, +/turf/open/water/beach, /area/ruin/beach/oceantown) "Cc" = ( /obj/structure/flora/tree/jungle{ @@ -2231,15 +2195,15 @@ /turf/open/floor/plating/grass/beach/lit, /area/ruin/beach/oceantown) "Cf" = ( -/obj/structure/mineral_door/wood{ - name = "Bathroom" - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/wood{ light_range = 2 }, @@ -2288,19 +2252,17 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/beach/oceantown/shop) "CG" = ( -/obj/structure/flora/ausbushes/stalkybush{ - name = "reeds" +/obj/effect/turf_decal/weather/sand/corner{ + dir = 1 }, -/turf/open/water/beach/deep, +/turf/open/water/beach, /area/ruin/beach/oceantown) "CJ" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/beach/oceantown/shop) "CS" = ( @@ -2395,6 +2357,17 @@ light_range = 2 }, /area/ruin/beach/oceantown) +"DK" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/docking_port/stationary{ + height = 7; + width = 19; + dwidth = 9 + }, +/turf/open/floor/concrete{ + light_range = 2 + }, +/area/ruin/beach/oceantown) "DM" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 @@ -2464,20 +2437,18 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) "Ew" = ( -/obj/structure/mineral_door/wood{ - name = "Hotel" - }, /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/machinery/door/airlock/wood, /turf/open/floor/plasteel/tech, /area/ruin/beach/oceantown) "Ex" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/shaker, /obj/item/reagent_containers/glass/rag, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood{ light_range = 2 }, @@ -2539,9 +2510,7 @@ "EX" = ( /obj/structure/table/wood/bar, /obj/item/book/manual/ripley_build_and_repair, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood, /area/ruin/beach/oceantown) "FA" = ( @@ -2566,16 +2535,6 @@ /obj/item/flashlight/lamp, /turf/open/floor/carpet, /area/ruin/beach/oceantown) -"FJ" = ( -/obj/structure/chair{ - dir = 1; - name = "gay chair" - }, -/turf/open/floor/glass{ - baseturfs = /turf/open/water; - light_range = 2 - }, -/area/ruin/beach/oceantown) "FL" = ( /obj/structure/railing{ dir = 1 @@ -2657,9 +2616,7 @@ }, /area/ruin/beach/oceantown) "Gh" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/carpet, /area/ruin/beach/oceantown/hotel) "Gk" = ( @@ -2696,9 +2653,7 @@ "Gz" = ( /obj/structure/table/wood/bar, /obj/item/book/manual/wiki/medical_cloning, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/ruin/beach/oceantown) "GA" = ( @@ -2799,9 +2754,7 @@ dir = 4 }, /obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 }, @@ -2882,15 +2835,15 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) "Ii" = ( -/obj/structure/mineral_door/wood{ - name = "Bedroom" - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/wood, /area/ruin/beach/oceantown) "Im" = ( @@ -2929,15 +2882,13 @@ /turf/open/floor/plasteel/dark, /area/ruin/beach/oceantown/shop) "IA" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/item/kirbyplants/random, /turf/open/floor/carpet/green, /area/ruin/beach/oceantown/hotel) "IC" = ( /obj/structure/filingcabinet, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/box, /turf/open/floor/plasteel, /area/ruin/beach/oceantown) @@ -2968,9 +2919,7 @@ /area/ruin/beach/oceantown) "IZ" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ruin/beach/oceantown/hotel) "Jh" = ( @@ -3039,7 +2988,7 @@ /area/ruin/beach/oceantown/shop) "JU" = ( /obj/structure/table/wood, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/carpet/black, /area/ruin/beach/oceantown/bar) "JW" = ( @@ -3121,7 +3070,7 @@ }, /area/ruin/beach/oceantown) "KB" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/grimy, /area/ruin/beach/oceantown/hotel) "KC" = ( @@ -3232,7 +3181,12 @@ /turf/open/floor/plasteel/dark, /area/ruin/beach/oceantown/bar) "LE" = ( -/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 + }, /turf/open/water/beach, /area/ruin/beach/oceantown) "LN" = ( @@ -3256,20 +3210,21 @@ /turf/open/floor/plasteel, /area/ruin/beach/oceantown) "LX" = ( -/obj/structure/mineral_door/wood{ - name = "Hotel" - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/plasteel/tech, /area/ruin/beach/oceantown) "Mk" = ( /obj/machinery/door/airlock/public/glass{ - name = "The 'Nutshack" + name = "The 'Nutshack"; + dir = 8 }, /turf/open/floor/plasteel/tech, /area/ruin/beach/oceantown/shop) @@ -3374,21 +3329,15 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/ruin/beach/oceantown) "Nu" = ( -/obj/structure/chair{ - dir = 1; - name = "chair of ambigous intent"; - desc = "What a neutral chair" - }, -/turf/open/floor/glass{ - baseturfs = /turf/open/water; - light_range = 2 +/obj/effect/turf_decal/weather/sand/corner, +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 }, +/turf/open/water/beach, /area/ruin/beach/oceantown) "Nv" = ( /obj/effect/turf_decal/siding/wood/corner{ @@ -3408,9 +3357,7 @@ /obj/item/reagent_containers/food/drinks/bottle/rum{ pixel_y = 9 }, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/carpet/black, /area/ruin/beach/oceantown/bar) "NB" = ( @@ -3488,7 +3435,7 @@ /obj/effect/turf_decal/siding/blue{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/beach/oceantown/shop) "OI" = ( @@ -3570,19 +3517,15 @@ /turf/open/floor/plating, /area/ruin/beach/oceantown/hotel) "Pm" = ( -/obj/structure/mineral_door/wood{ - name = "Bedroom" - }, /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/machinery/door/airlock/wood, /turf/open/floor/wood, /area/ruin/beach/oceantown) "Pp" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/beach/oceantown/shop) "Ps" = ( @@ -3658,9 +3601,7 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/beach/oceantown) "Qo" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood, /area/ruin/beach/oceantown/hotel) "Qy" = ( @@ -3693,7 +3634,8 @@ /area/ruin/beach/oceantown) "QM" = ( /obj/machinery/door/airlock{ - name = "Employees Only" + name = "Employees Only"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ruin/beach/oceantown/hotel) @@ -3732,10 +3674,11 @@ /turf/open/floor/plasteel/white, /area/ruin/beach/oceantown/bar) "RM" = ( -/obj/structure/railing/corner/wood{ - dir = 8 +/obj/effect/turf_decal/weather/sand/corner{ + dir = 4 }, -/turf/open/water/beach/deep, +/obj/effect/turf_decal/weather/sand/corner, +/turf/open/water/beach, /area/ruin/beach/oceantown) "RQ" = ( /obj/machinery/hydroponics/soil, @@ -3767,9 +3710,7 @@ /turf/open/floor/plating/grass/beach/lit, /area/ruin/beach/oceantown) "Sm" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ruin/beach/oceantown/hotel) "Sp" = ( @@ -3826,9 +3767,7 @@ /area/ruin/beach/oceantown/shop) "SV" = ( /obj/structure/table/wood/bar, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/carpet/green, /area/ruin/beach/oceantown) "SY" = ( @@ -3899,13 +3838,11 @@ /turf/open/floor/plating, /area/ruin/beach/oceantown/shop) "Up" = ( -/obj/structure/mineral_door/wood{ - name = "Bathroom" - }, /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/machinery/door/airlock/wood, /turf/open/floor/wood{ light_range = 2 }, @@ -3965,9 +3902,12 @@ /turf/open/floor/plasteel, /area/ruin/beach/oceantown) "UP" = ( -/obj/structure/fluff/beach_umbrella/science, -/turf/open/floor/plating/asteroid/sand/lit, -/area/ruin/beach/oceantown) +/obj/machinery/door/airlock{ + name = "Employees Only"; + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ruin/beach/oceantown/bar) "UT" = ( /obj/effect/turf_decal/weather/sand{ dir = 8 @@ -3987,11 +3927,26 @@ "UX" = ( /turf/closed/wall/mineral/wood/nonmetal, /area/ruin/beach/oceantown/shop) +"Vb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood{ + light_range = 2 + }, +/area/ruin/beach/oceantown) "Vf" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/turf_decal/box, /turf/open/floor/plasteel/white, /area/ruin/beach/oceantown/bar) +"Vn" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/concrete/pavement{ + light_range = 2 + }, +/area/ruin/beach/oceantown) "Vr" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -4065,9 +4020,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/beach/oceantown/bar) "VV" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/beach/oceantown) "VZ" = ( @@ -4210,9 +4163,7 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/beach/oceantown/shop) "XU" = ( @@ -4346,7 +4297,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood, /area/ruin/beach/oceantown) "ZP" = ( @@ -4371,14 +4322,6 @@ /area/ruin/beach/oceantown) (1,1,1) = {" -Gn -Gn -Gn -Gn -Gn -pn -pn -pn qp sa sa @@ -4456,14 +4399,6 @@ YU YU "} (2,1,1) = {" -Gn -Gn -CG -CG -Gn -pn -pn -pn qp px sa @@ -4541,25 +4476,17 @@ YU YU "} (3,1,1) = {" -Gn -Gn -Gn -CG -nF -pn -pn -pn qp Ps Er sa sa lL +CG pn pn -pn -pn -OK +Ca +LE sa sa sa @@ -4626,25 +4553,17 @@ YU YU "} (4,1,1) = {" -Gn -aF -Gn -Gn -CG -LE -pn -pn qp sa sa sa lL +CG pn pn pn pn -pn -pn +Nu nu sa sa @@ -4666,7 +4585,7 @@ UX UX UX UX -aM +fg UX UX UX @@ -4711,19 +4630,11 @@ YU YU "} (5,1,1) = {" -Gn -Gn -Gn -CG -CG -LE -pn -pn -pn +Ca Go Go Go -pn +CG pn pn pn @@ -4796,14 +4707,6 @@ YU YU "} (6,1,1) = {" -Gn -Gn -Gn -Gn -Gn -Gn -pn -pn pn pn pn @@ -4881,15 +4784,6 @@ YU YU "} (7,1,1) = {" -Gn -Gn -Gn -Gn -Gn -Gn -pn -pn -pn pn pn pn @@ -4899,6 +4793,7 @@ pn pn pn pn +lH HA sa sa @@ -4966,15 +4861,6 @@ Wl YU "} (8,1,1) = {" -Gn -Gn -Gn -Gn -Gn -Gn -Gn -LE -pn pn pn pn @@ -4982,6 +4868,7 @@ pn pn pn pn +lH rR HA sa @@ -5051,14 +4938,6 @@ vE YU "} (9,1,1) = {" -Gn -Gn -Gn -Gn -aF -Gn -CG -XZ XZ pn pn @@ -5136,21 +5015,13 @@ Wl YU "} (10,1,1) = {" -Gn -Gn -Gn -Gn -Gn -Gn -pn -LE -pn pn pn pn pn pn pn +lH HA sa NV @@ -5221,18 +5092,10 @@ Xv YU "} (11,1,1) = {" -Gn -Gn -Gn -Gn -Gn -Gn -pn -pn -pn pn pn pn +lH rR rR HA @@ -5306,14 +5169,6 @@ Wl YU "} (12,1,1) = {" -Gn -Gn -Gn -Gn -Gn -pn -pn -pn pn pn pn @@ -5391,17 +5246,9 @@ YU YU "} (13,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn -pn pn pn +lH HA sa sa @@ -5468,7 +5315,7 @@ XI In sA xn -Ww +UP xn xn xn @@ -5476,15 +5323,7 @@ YU YU "} (14,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn -pn +lH rR HA sa @@ -5561,14 +5400,6 @@ xn YU "} (15,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -pn -pn qp sa sa @@ -5646,14 +5477,6 @@ xn YU "} (16,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -pn -pn qp sa sa @@ -5731,14 +5554,6 @@ xn YU "} (17,1,1) = {" -Gn -Gn -Gn -LE -LE -LE -pn -pn qp sa sa @@ -5816,14 +5631,6 @@ xn YU "} (18,1,1) = {" -Gn -Gn -Gn -pn -pn -mz -pn -pn qp sa px @@ -5901,14 +5708,6 @@ xn YU "} (19,1,1) = {" -Gn -Gn -Gn -pn -pn -LE -pn -pn qp sa lZ @@ -5986,14 +5785,6 @@ xn YU "} (20,1,1) = {" -Gn -Gn -pn -pn -pn -pn -pn -pn qp sa sa @@ -6071,14 +5862,6 @@ xn iM "} (21,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -pn -pn qp sa sa @@ -6156,14 +5939,6 @@ YU YU "} (22,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -pn -pn qp sa sa @@ -6232,7 +6007,7 @@ xn xn xn xn -nj +io xn xn YU @@ -6241,14 +6016,6 @@ YU YU "} (23,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn qp sa sa @@ -6290,7 +6057,7 @@ Ru Ru Ru Ru -Ru +Vn Ru Ru Ru @@ -6326,15 +6093,7 @@ YU YU "} (24,1,1) = {" -aF -Gn -Gn -Gn -pn -pn -pn -pn -pn +Ca OK sa sa @@ -6367,11 +6126,11 @@ xo xo xo xo +Vb +Vb +Vb xo -xo -xo -xo -xo +Vb xo xo xo @@ -6411,16 +6170,8 @@ YU YU "} (25,1,1) = {" -Gn -Gn -Gn -Gn -Gn -pn -XZ -pn -pn pn +Ca Go OK sa @@ -6448,10 +6199,10 @@ uC FF Wl Wl -Wl -Wl -Wl -Wl +qJ +qJ +qJ +qJ Wl Wl Wl @@ -6496,14 +6247,6 @@ YU YU "} (26,1,1) = {" -Gn -Gn -Gn -Gn -aF -Tm -Tm -pn pn pn pn @@ -6532,8 +6275,8 @@ pB Wl Wl FF -FF -FF +BQ +BQ Wl rl qw @@ -6581,14 +6324,6 @@ YU YU "} (27,1,1) = {" -Gn -Gn -Gn -Gn -Gn -nF -pn -pn pn pn pn @@ -6666,14 +6401,6 @@ YU YU "} (28,1,1) = {" -Gn -Gn -Gn -Gn -Gn -Gn -pn -pn pn pn pn @@ -6751,17 +6478,9 @@ YU YU "} (29,1,1) = {" -Gn -Gn -Gn -Gn -Gn pn jQ zI -zI -zI -zI eV hl hl @@ -6836,16 +6555,8 @@ YU YU "} (30,1,1) = {" -Gn -Gn -pn -pn -pn pn fp -FJ -io -io ev ev ev @@ -6921,16 +6632,8 @@ YU YU "} (31,1,1) = {" -Gn -Gn -Gn -Gn -pn pn fp -FJ -io -io ev ev ev @@ -7006,17 +6709,9 @@ Wl YU "} (32,1,1) = {" -Gn -Gn -aF -Gn -pn pn aD VI -VI -VI -VI En AS AS @@ -7091,14 +6786,6 @@ FF wF "} (33,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn pn pn pn @@ -7176,14 +6863,6 @@ Wl FF "} (34,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn pn pn pn @@ -7261,14 +6940,6 @@ Wl iC "} (35,1,1) = {" -Gn -Gn -Gn -Gn -Gn -pn -pn -pn pn pn pn @@ -7346,17 +7017,9 @@ sa Wl "} (36,1,1) = {" -Gn -Gn -Gn -Gn -XZ -XZ -pn -pn -pn pn pn +lH HA sa sa @@ -7431,16 +7094,8 @@ sa Wl "} (37,1,1) = {" -Gn -Gn -CG -CG -pn -pn -pn -pn -pn pn +lH HA sa sa @@ -7516,15 +7171,7 @@ EQ Wl "} (38,1,1) = {" -Gn -Gn -CG -Gn -pn -pn -pn -pn -pn +lH HA sa sa @@ -7601,14 +7248,6 @@ sa Wl "} (39,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn qp sa sa @@ -7686,14 +7325,6 @@ sa Wl "} (40,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -LE -pn qp sa sa @@ -7771,14 +7402,6 @@ Wl Wl "} (41,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn qp sa sa @@ -7856,14 +7479,6 @@ id Wl "} (42,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn qp BY sa @@ -7941,14 +7556,6 @@ Wl Wl "} (43,1,1) = {" -Gn -Gn -Gn -Gn -pn -mz -pn -pn qp sa sa @@ -8026,14 +7633,6 @@ Wl YU "} (44,1,1) = {" -Gn -aF -Gn -Gn -pn -pn -pn -pn qp sa sa @@ -8111,14 +7710,6 @@ YU YU "} (45,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn qp sa sa @@ -8196,14 +7787,6 @@ YU YU "} (46,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -pn -pn qp sa sa @@ -8281,14 +7864,6 @@ YU YU "} (47,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -pn -pn qp xx wZ @@ -8366,14 +7941,6 @@ YU YU "} (48,1,1) = {" -Gn -Gn -pn -pn -pn -pn -pn -pn qp sa sa @@ -8451,14 +8018,6 @@ YU YU "} (49,1,1) = {" -Gn -pn -pn -pn -pn -pn -pn -pn qp sa sa @@ -8536,14 +8095,6 @@ YU YU "} (50,1,1) = {" -Gn -Gn -Gn -pn -LE -pn -pn -pn qp sa sa @@ -8621,14 +8172,6 @@ YU YU "} (51,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -LE -pn qp sa lT @@ -8706,15 +8249,7 @@ YU YU "} (52,1,1) = {" -Gn -Gn -Gn -Tm -Tm -pn -pn -pn -pn +Ca OK KC dL @@ -8762,7 +8297,7 @@ tr tr tr tr -Yy +DK Jw tj Ru @@ -8791,14 +8326,6 @@ YU YU "} (53,1,1) = {" -Gn -Gn -Gn -pn -Tm -Tm -pn -pn pn qp UF @@ -8876,15 +8403,7 @@ YU YU "} (54,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -pn -pn -pn +lH oF sa sa @@ -8961,18 +8480,10 @@ YU YU "} (55,1,1) = {" -Gn -qs -lH -zI -zI -zI -zI -zI -eV -hl -hl -kE +qp +sa +sa +sa sa sa Sp @@ -9046,18 +8557,10 @@ YU YU "} (56,1,1) = {" -Gn -Ca -io -io -io -io ev -ev -ev -ev -ev -hb +sa +sa +sa EQ sa xh @@ -9131,18 +8634,10 @@ YU YU "} (57,1,1) = {" -Gn -Ca -Nu -io -io -io -ev -ev -ev -ev ev -hb +sa +sa +sa sa sa sa @@ -9216,18 +8711,10 @@ YU YU "} (58,1,1) = {" -Gn -Ca -io -io -io -io -ev -ev -ev ev -ev -hb +sa +sa +sa sa sa ON @@ -9301,18 +8788,10 @@ YU YU "} (59,1,1) = {" -Gn -RM -ur -VI -VI -VI -VI -VI -En -AS -AS -Mu +qp +sa +sa +sa sa sa BY @@ -9386,15 +8865,7 @@ YU YU "} (60,1,1) = {" -Gn -Gn -Gn -pn -pn -pn -pn -pn -pn +RM ES sa sa @@ -9471,14 +8942,6 @@ YU YU "} (61,1,1) = {" -Gn -Gn -lE -pn -pn -pn -pn -pn qp sa kN @@ -9556,14 +9019,6 @@ YU YU "} (62,1,1) = {" -Gn -Gn -Gn -Gn -pn -pn -pn -pn qp sa ER @@ -9641,14 +9096,6 @@ YU YU "} (63,1,1) = {" -Gn -Gn -Gn -Gn -pn -mz -pn -pn qp sa yA @@ -9726,14 +9173,6 @@ YU YU "} (64,1,1) = {" -Gn -Gn -aF -Gn -Gn -pn -pn -pn qp sa YE @@ -9811,14 +9250,6 @@ YU YU "} (65,1,1) = {" -Gn -Gn -Gn -Gn -Gn -pn -pn -pn qp sa lZ @@ -9896,14 +9327,6 @@ YU YU "} (66,1,1) = {" -Gn -Gn -Gn -Gn -aF -pn -pn -pn qp sa sa @@ -9981,14 +9404,6 @@ YU YU "} (67,1,1) = {" -pn -Gn -Gn -Gn -lE -pn -pn -pn qp sa sa @@ -10066,14 +9481,6 @@ YU YU "} (68,1,1) = {" -pn -Gn -aF -Gn -pn -pn -pn -pn qp sa BY @@ -10151,14 +9558,6 @@ YU YU "} (69,1,1) = {" -pn -Gn -Gn -Gn -pn -pn -pn -pn qp sa sa @@ -10236,14 +9635,6 @@ YU YU "} (70,1,1) = {" -pn -pn -Gn -pn -pn -pn -pn -pn qp sa sa @@ -10321,15 +9712,7 @@ YU YU "} (71,1,1) = {" -pn -pn -Gn -pn -XZ -Tm -pn -pn -pn +Ca Go OK sa @@ -10351,7 +9734,7 @@ gn UX UX UX -Mk +lE UX UX UX @@ -10407,15 +9790,7 @@ YU "} (72,1,1) = {" pn -mz -pn -pn -Tm -pn -pn -pn -pn -pn +lH HA sa sa @@ -10491,15 +9866,7 @@ YU YU "} (73,1,1) = {" -pn -pn -pn -pn -pn -pn -pn -pn -pn +lH HA sa EQ @@ -10576,14 +9943,6 @@ YU YU "} (74,1,1) = {" -pn -pn -pn -pn -pn -pn -pn -rR HA sa sa @@ -10661,14 +10020,6 @@ YU YU "} (75,1,1) = {" -pn -pn -pn -pn -pn -pn -HA -sa sa sa sa @@ -10746,14 +10097,6 @@ YU YU "} (76,1,1) = {" -rR -rR -rR -rR -rR -HA -sa -sa ON sa sa @@ -10834,14 +10177,6 @@ YU sa sa sa -UP -sa -sa -sa -NV -sa -sa -sa xh xh xh @@ -10919,14 +10254,6 @@ YU sa sa sa -wt -mr -sa -sa -BY -sa -sa -sa sa sa sa @@ -11006,14 +10333,6 @@ sa sa sa sa -sa -sa -sa -sa -sa -sa -sa -sa BY sa sa @@ -11087,14 +10406,6 @@ YU "} (80,1,1) = {" sa -sa -sa -sa -EQ -sa -sa -sa -sa BY sa sa diff --git a/_maps/RandomRuins/BeachRuins/beach_pirate_crash.dmm b/_maps/RandomRuins/BeachRuins/beach_pirate_crash.dmm index 2ac378cd9ece..f8475df61bc3 100644 --- a/_maps/RandomRuins/BeachRuins/beach_pirate_crash.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_pirate_crash.dmm @@ -7,9 +7,7 @@ dir = 4 }, /obj/effect/decal/cleanable/vomit/old, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -23,7 +21,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/beach/piratecrash) @@ -141,7 +139,7 @@ /turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) "dt" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-6" }, @@ -228,7 +226,9 @@ /obj/structure/cable{ icon_state = "4-9" }, -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/beach/piratecrash/shuttle) "gn" = ( @@ -271,12 +271,12 @@ /area/ruin/unpowered) "gU" = ( /obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 10; - pixel_x = 7 + pixel_x = 7; + pixel_y = 10 }, /obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 6; - pixel_x = -15 + pixel_x = -15; + pixel_y = 6 }, /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/turf_decal/weather/sand{ @@ -334,7 +334,9 @@ /turf/open/floor/plating/rust, /area/ruin/beach/piratecrash/shuttle) "ih" = ( -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -368,8 +370,8 @@ pixel_y = 2 }, /obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 10; - pixel_x = 3 + pixel_x = 3; + pixel_y = 10 }, /turf/open/water/beach, /area/ruin/unpowered) @@ -384,8 +386,8 @@ /area/ruin/unpowered) "jE" = ( /mob/living/simple_animal/hostile/pirate/ranged{ - faction = list("pirate","mining"); - environment_smash = 0 + environment_smash = 0; + faction = list("pirate","mining") }, /turf/open/floor/plating/rust, /area/ruin/unpowered) @@ -431,10 +433,12 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/unpowered) "lb" = ( -/obj/structure/mineral_door/wood, /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/wood, /area/ruin/beach/piratecrash) "ll" = ( @@ -509,8 +513,8 @@ dir = 1 }, /obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 10; - pixel_x = 3 + pixel_x = 3; + pixel_y = 10 }, /turf/open/water/beach, /area/ruin/unpowered) @@ -519,8 +523,8 @@ icon_state = "1-4" }, /mob/living/simple_animal/hostile/pirate/melee{ - faction = list("pirate","mining"); - environment_smash = 0 + environment_smash = 0; + faction = list("pirate","mining") }, /obj/structure/cable{ icon_state = "4-8" @@ -601,8 +605,8 @@ icon_state = "1-2" }, /turf/open/floor/plasteel/stairs{ - dir = 1; color = "#A47449"; + dir = 1; footstep = "wood" }, /area/ruin/beach/piratecrash) @@ -693,9 +697,7 @@ /area/ruin/beach/piratecrash) "uf" = ( /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/item/stack/medical/gauze/improvised, /obj/item/stack/medical/gauze/improvised, /obj/item/stack/medical/gauze/improvised, @@ -833,15 +835,15 @@ /area/ruin/unpowered) "xN" = ( /obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 23; - pixel_x = -3 + pixel_x = -3; + pixel_y = 23 }, /obj/structure/flora/ausbushes/stalkybush{ pixel_y = 6 }, /obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 15; - pixel_x = 10 + pixel_x = 10; + pixel_y = 15 }, /obj/structure/flora/ausbushes/sparsegrass, /turf/open/water/beach{ @@ -1012,9 +1014,7 @@ /turf/open/floor/wood, /area/ruin/beach/piratecrash/shuttle) "Fb" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/table, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, @@ -1078,7 +1078,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/rust, /area/ruin/beach/piratecrash/storage) "GF" = ( @@ -1098,7 +1098,7 @@ /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/unpowered) "GP" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -1122,7 +1122,7 @@ /turf/open/water/beach, /area/ruin/unpowered) "Hq" = ( -/obj/structure/mineral_door/wood, +/obj/machinery/door/airlock/wood, /turf/open/floor/wood, /area/ruin/beach/piratecrash) "Hu" = ( @@ -1133,8 +1133,8 @@ dir = 6 }, /obj/structure/flora/tree/palm{ - pixel_y = 13; - pixel_x = -5 + pixel_x = -5; + pixel_y = 13 }, /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/unpowered) @@ -1204,8 +1204,8 @@ pixel_y = 19 }, /obj/item/hemostat{ - pixel_y = 15; - pixel_x = 9 + pixel_x = 9; + pixel_y = 15 }, /obj/item/cautery{ pixel_y = 15 @@ -1247,8 +1247,8 @@ /area/ruin/unpowered) "MH" = ( /turf/open/floor/plasteel/stairs{ - dir = 4; color = "#A47449"; + dir = 4; footstep = "wood" }, /area/ruin/beach/piratecrash) @@ -1286,9 +1286,7 @@ /area/ruin/unpowered) "MS" = ( /obj/effect/decal/cleanable/glass, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating{ @@ -1300,7 +1298,7 @@ /turf/open/floor/plating, /area/ruin/beach/piratecrash) "Nu" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -1330,9 +1328,7 @@ /area/ruin/unpowered) "Ou" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/item/clothing/gloves/color/fyellow, /obj/item/clothing/head/hardhat, /obj/effect/decal/cleanable/dirt/dust, @@ -1360,16 +1356,14 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/porta_turret/syndicate/pod{ - name = "laser turret"; - dir = 8; desc = "A turret built with substandard parts and run down further with age. Still capable of delivering lethal lasers to the odd space carp, but not much else."; + dir = 8; faction = list("Syndicate","pirate"); lethal_projectile = /obj/projectile/beam/weak/penetrator; - lethal_projectile_sound = 'sound/weapons/plasma_cutter.ogg' + lethal_projectile_sound = 'sound/weapons/plasma_cutter.ogg'; + name = "laser turret" }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1383,7 +1377,9 @@ /obj/structure/cable{ icon_state = "5-8" }, -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-10" }, @@ -1403,12 +1399,12 @@ /area/ruin/beach/piratecrash) "Qj" = ( /obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 17; - pixel_x = -5 + pixel_x = -5; + pixel_y = 17 }, /obj/structure/flora/ausbushes/stalkybush{ - pixel_y = 6; - pixel_x = 10 + pixel_x = 10; + pixel_y = 6 }, /obj/structure/flora/ausbushes/sparsegrass, /turf/open/water/beach{ @@ -1486,8 +1482,8 @@ /area/ruin/unpowered) "Vc" = ( /mob/living/simple_animal/hostile/pirate/melee{ - faction = list("pirate","mining"); - environment_smash = 0 + environment_smash = 0; + faction = list("pirate","mining") }, /turf/open/floor/plating/asteroid/sand/lit, /area/ruin/unpowered) @@ -1500,7 +1496,7 @@ }, /area/ruin/beach/piratecrash) "Vi" = ( -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/ruin/beach/piratecrash) diff --git a/_maps/RandomRuins/BeachRuins/beach_push_it.dmm b/_maps/RandomRuins/BeachRuins/beach_push_it.dmm index 6a09606dccb4..f4e648fe0a0c 100644 --- a/_maps/RandomRuins/BeachRuins/beach_push_it.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_push_it.dmm @@ -5,11 +5,6 @@ /obj/item/research_notes/loot/small, /turf/open/floor/light, /area/ruin/powered) -"aN" = ( -/obj/machinery/chem_dispenser, -/obj/machinery/light, -/turf/open/floor/plastic, -/area/ruin/powered) "aR" = ( /obj/structure/chair/sofa/left{ dir = 1 @@ -21,23 +16,10 @@ /obj/item/spacecash/bundle/c1000, /turf/open/floor/carpet/royalblue, /area/ruin/powered) -"dh" = ( -/obj/machinery/light, -/mob/living/simple_animal/hostile/frontier/ranged, -/turf/open/floor/carpet/royalblue, -/area/ruin/powered) "ds" = ( /mob/living/simple_animal/hostile/frontier/ranged/trooper, /turf/open/floor/light, /area/ruin/powered) -"dG" = ( -/obj/structure/chair/sofa/corner{ - dir = 8 - }, -/mob/living/simple_animal/hostile/frontier, -/obj/machinery/light, -/turf/open/floor/carpet/royalblue, -/area/ruin/powered) "gE" = ( /obj/machinery/seed_extractor, /turf/open/floor/plastic, @@ -56,24 +38,29 @@ /obj/item/storage/pill_bottle/floorpill/full, /turf/open/floor/light, /area/ruin/powered) -"iM" = ( -/obj/machinery/light, -/turf/open/floor/plastic, -/area/ruin/powered) "kc" = ( /obj/structure/chair/sofa/right, /obj/item/research_notes/loot/medium, /mob/living/simple_animal/hostile/frontier/ranged, /turf/open/floor/plasteel/vaporwave, /area/ruin/powered) -"kf" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/carpet/royalblue, -/area/ruin/powered) "kR" = ( /obj/machinery/door/airlock/freezer, /turf/open/floor/plastic, /area/ruin/powered) +"lo" = ( +/obj/machinery/light/directional/south, +/mob/living/simple_animal/hostile/frontier/ranged, +/turf/open/floor/carpet/royalblue, +/area/ruin/powered) +"lC" = ( +/obj/structure/chair/sofa/corner{ + dir = 8 + }, +/mob/living/simple_animal/hostile/frontier, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblue, +/area/ruin/powered) "mf" = ( /mob/living/simple_animal/hostile/frontier, /turf/open/floor/carpet/blue, @@ -110,13 +97,6 @@ /obj/item/seeds/cannabis/ultimate, /turf/open/floor/plastic, /area/ruin/powered) -"qD" = ( -/obj/structure/chair/sofa/corner{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/carpet/royalblue, -/area/ruin/powered) "rb" = ( /obj/structure/chair/sofa/left{ dir = 8 @@ -149,6 +129,14 @@ }, /turf/open/floor/plasteel/vaporwave, /area/ruin/powered) +"wm" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/carpet/blue, +/area/ruin/powered) +"wG" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/carpet/royalblue, +/area/ruin/powered) "xr" = ( /obj/structure/chair/office/light, /mob/living/simple_animal/hostile/frontier, @@ -159,11 +147,6 @@ /mob/living/simple_animal/hostile/frontier/ranged/trooper, /turf/open/floor/carpet/royalblue, /area/ruin/powered) -"yA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light, -/turf/open/floor/plastic, -/area/ruin/powered) "yE" = ( /obj/machinery/chem_master, /turf/open/floor/plastic, @@ -176,6 +159,10 @@ /obj/item/melee/baseball_bat, /turf/open/floor/carpet/cyan, /area/ruin/powered) +"BS" = ( +/obj/effect/mob_spawn/human/corpse/solgov/sonnensoldner, +/turf/open/floor/light, +/area/ruin/powered) "Cm" = ( /obj/structure/table/glass, /obj/item/gun/ballistic/revolver/golden, @@ -193,13 +180,15 @@ }, /turf/open/floor/light, /area/ruin/powered) -"Cz" = ( -/obj/effect/mob_spawn/human/corpse/solgov/infantry, -/turf/open/floor/light, -/area/ruin/powered) "CI" = ( /turf/open/floor/carpet/royalblue, /area/ruin/powered) +"CM" = ( +/obj/machinery/plantgenes/seedvault, +/obj/structure/table/reinforced, +/obj/item/research_notes/loot/big, +/turf/open/floor/plastic, +/area/ruin/powered) "CX" = ( /obj/structure/table/rolling, /obj/item/storage/fancy/rollingpapers, @@ -220,10 +209,6 @@ /mob/living/simple_animal/hostile/frontier/ranged/officer, /turf/open/floor/plastic, /area/ruin/powered) -"FB" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/carpet/blue, -/area/ruin/powered) "GK" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/carpet/blue, @@ -233,22 +218,9 @@ /obj/item/storage/box/donkpockets, /turf/open/floor/plasteel/vaporwave, /area/ruin/powered) -"HH" = ( -/obj/machinery/light, -/obj/structure/closet/crate/hydroponics, -/obj/item/seeds/cannabis/rainbow, -/obj/item/seeds/potato, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/galaxythistle, -/turf/open/floor/plastic, -/area/ruin/powered) -"Iw" = ( -/obj/machinery/plantgenes/seedvault, -/obj/structure/table/reinforced, -/obj/item/research_notes/loot/big, -/obj/machinery/light, +"IU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/directional/south, /turf/open/floor/plastic, /area/ruin/powered) "JH" = ( @@ -268,9 +240,16 @@ /mob/living/simple_animal/hostile/frontier/ranged/trooper, /turf/open/floor/plastic, /area/ruin/powered) -"MB" = ( -/obj/machinery/light, -/turf/open/floor/carpet/royalblue, +"Mz" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/cannabis/rainbow, +/obj/item/seeds/potato, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/galaxythistle, +/turf/open/floor/plastic, /area/ruin/powered) "MI" = ( /obj/structure/chair/sofa/left, @@ -281,6 +260,11 @@ /obj/machinery/microwave, /turf/open/floor/plasteel/vaporwave, /area/ruin/powered) +"Nr" = ( +/obj/machinery/chem_dispenser, +/obj/machinery/light/directional/south, +/turf/open/floor/plastic, +/area/ruin/powered) "Oa" = ( /obj/structure/chair/sofa/right, /obj/item/spacecash/bundle/c1000, @@ -299,6 +283,13 @@ "Px" = ( /turf/open/floor/carpet/cyan, /area/ruin/powered) +"QB" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblue, +/area/ruin/powered) "QN" = ( /obj/item/book/manual/wiki/chemistry, /turf/open/floor/plastic, @@ -328,15 +319,15 @@ /obj/item/kirbyplants/random, /turf/open/floor/carpet/royalblue, /area/ruin/powered) +"TB" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plastic, +/area/ruin/powered) "TH" = ( /obj/machinery/hydroponics, /obj/item/seeds/cannabis, /turf/open/floor/plastic, /area/ruin/powered) -"TO" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/carpet/cyan, -/area/ruin/powered) "TP" = ( /obj/structure/table/glass, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, @@ -348,11 +339,17 @@ /obj/item/stack/medical/suture, /turf/open/floor/plasteel/vaporwave, /area/ruin/powered) +"Us" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblue, +/area/ruin/powered) "Vb" = ( /turf/template_noop, /area/template_noop) -"VO" = ( -/obj/machinery/light, +"Vw" = ( +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/carpet/cyan, /area/ruin/powered) "Wx" = ( @@ -364,6 +361,10 @@ /obj/machinery/jukebox/disco, /turf/open/floor/light, /area/ruin/powered) +"Xd" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/carpet/cyan, +/area/ruin/powered) "Xs" = ( /obj/item/gun/ballistic/automatic/pistol/commander, /turf/open/floor/light, @@ -381,6 +382,12 @@ /obj/item/surgicaldrill, /turf/open/floor/light, /area/ruin/powered) +"YT" = ( +/obj/machinery/door/airlock/wood{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/ruin/powered) "YV" = ( /obj/machinery/hydroponics, /obj/item/seeds/cannabis/white, @@ -390,6 +397,10 @@ /obj/item/reagent_containers/pill/happy, /turf/open/floor/light, /area/ruin/powered) +"Zp" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/cyan, +/area/ruin/powered) "ZH" = ( /obj/structure/chair/sofa/left{ dir = 4 @@ -450,11 +461,11 @@ RS JH JH CI -dh +lo RS Cm ZH -qD +QB RS Vb Vb @@ -499,7 +510,7 @@ MI JH CI CI -kf +wG CI Dz CI @@ -522,11 +533,11 @@ RS JH JH CI -MB +Us RS rN Px -MB +Us RS Vb Vb @@ -545,11 +556,11 @@ Vb RS RS RS -kf +YT RS RS RS -TO +Vw RS RS RS @@ -578,7 +589,7 @@ CI CI CI CI -MB +Us RS CI CI @@ -603,9 +614,9 @@ Px Px Ou CI -kf +wG CI -MB +Us RS pG pG @@ -626,7 +637,7 @@ CI CI CI CI -MB +Us RS CI CI @@ -634,7 +645,7 @@ RS pG Fr pi -aN +Nr RS "} (11,1,1) = {" @@ -642,7 +653,7 @@ RS Px Px sn -VO +Zp RS RS GK @@ -706,7 +717,7 @@ RS pG pG pG -iM +TB RS "} (14,1,1) = {" @@ -714,7 +725,7 @@ RS pY sn sn -VO +Zp RS uC uC @@ -725,21 +736,21 @@ ie Le RS dd -MB +Us RS Xv pG pG -Iw +CM RS "} (15,1,1) = {" -TO +Xd Px mf sn Px -FB +wm uC uC Zo @@ -762,23 +773,23 @@ RS Px sn sn -VO +Zp RS uC uC uC -Cz +BS uC uC hh RS yG -MB +Us RS pG pG pG -HH +Mz RS "} (17,1,1) = {" @@ -834,7 +845,7 @@ RS Px Px sn -VO +Zp RS RS GK @@ -866,7 +877,7 @@ CI CI CI CI -MB +Us RS CI CI @@ -874,7 +885,7 @@ RS pG pG pG -yA +IU RS "} (21,1,1) = {" @@ -891,9 +902,9 @@ Px Px Ou CI -kf +wG CI -MB +Us RS nh YV @@ -914,7 +925,7 @@ CI CI CI CI -MB +Us RS CI CI @@ -929,11 +940,11 @@ RS RS RS RS -kf +YT RS RS RS -TO +Vw RS RS RS @@ -954,11 +965,11 @@ RS JH JH CI -MB +Us RS SI Px -MB +Us RS Vb Vb @@ -979,7 +990,7 @@ kc JH CI CI -kf +wG CI Px CI @@ -1026,11 +1037,11 @@ RS JH JH CI -MB +Us RS Sa nS -dG +lC RS Vb Vb diff --git a/_maps/RandomRuins/BeachRuins/beach_treasure_cove.dmm b/_maps/RandomRuins/BeachRuins/beach_treasure_cove.dmm index c80a2e8a9732..757931fd667f 100644 --- a/_maps/RandomRuins/BeachRuins/beach_treasure_cove.dmm +++ b/_maps/RandomRuins/BeachRuins/beach_treasure_cove.dmm @@ -34,9 +34,7 @@ /area/ruin/unpowered) "bI" = ( /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/spawner/lootdrop/glowstick, /turf/open/floor/concrete/slab_1, /area/ruin/beach/treasure_cove) @@ -84,9 +82,7 @@ /turf/open/water/beach, /area/ruin/unpowered) "dE" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/cable{ icon_state = "1-2" }, @@ -160,9 +156,7 @@ /turf/open/floor/wood, /area/ruin/beach/treasure_cove) "fI" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/concrete/slab_4, /area/ruin/beach/treasure_cove) "fR" = ( @@ -471,7 +465,7 @@ /area/ruin/unpowered) "qc" = ( /obj/effect/decal/cleanable/cobweb, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -503,9 +497,7 @@ pixel_x = 9; pixel_y = 3 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/carpet/red, /area/ruin/beach/treasure_cove) "qw" = ( @@ -695,9 +687,6 @@ pixel_x = 7; pixel_y = 4 }, -/obj/machinery/light{ - dir = 1 - }, /turf/open/floor/wood, /area/ruin/beach/treasure_cove) "uC" = ( @@ -767,9 +756,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 5 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/ruin/beach/treasure_cove) "xb" = ( @@ -785,9 +772,7 @@ /obj/item/storage/toolbox/mechanical{ pixel_y = -6 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/concrete/slab_1, /area/ruin/beach/treasure_cove) "xg" = ( @@ -946,6 +931,14 @@ }, /turf/open/water/beach, /area/ruin/unpowered) +"CZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ruin/beach/treasure_cove) "Dz" = ( /turf/open/floor/plating/grass/beach/lit, /area/ruin/unpowered) @@ -1196,9 +1189,7 @@ /mob/living/simple_animal/parrot{ faction = list("pirate") }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/poster/contraband/syndiemoth{ pixel_x = 30 }, @@ -1273,9 +1264,7 @@ /obj/item/trash/semki, /obj/item/trash/energybar, /obj/item/weldingtool, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating/dirt/jungle/lit, /area/ruin/beach/treasure_cove) "RN" = ( @@ -1408,7 +1397,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/ruin/beach/treasure_cove) "VF" = ( @@ -1427,9 +1416,7 @@ /obj/structure/bed{ icon_state = "dirty_mattress" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/sign/poster/contraband/punch_shit{ pixel_x = 32 }, @@ -1464,7 +1451,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/ruin/beach/treasure_cove) "Xw" = ( @@ -1477,7 +1464,7 @@ /area/ruin/beach/treasure_cove) "XE" = ( /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/concrete/slab_1, /area/ruin/beach/treasure_cove) "XO" = ( @@ -2145,7 +2132,7 @@ ww TF km pz -xX +CZ nD nD Nk diff --git a/_maps/RandomRuins/IceRuins/icemoon_hydroponics_lab.dmm b/_maps/RandomRuins/IceRuins/icemoon_hydroponics_lab.dmm index 3ecec264ee9d..21d1fdd4a1e5 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_hydroponics_lab.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_hydroponics_lab.dmm @@ -32,9 +32,7 @@ pixel_y = 0 }, /obj/structure/table, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/techfloor{ dir = 4 }, @@ -55,7 +53,7 @@ /turf/open/floor/vault, /area/ruin/powered/hydroponicslab) "bg" = ( -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/table, /obj/item/reagent_containers/glass/bottle/nutrient/ez{ @@ -174,7 +172,9 @@ /obj/effect/turf_decal/spline/fancy/opaque/grey{ dir = 1 }, -/obj/machinery/door/airlock/research, +/obj/machinery/door/airlock/research{ + dir = 4 + }, /turf/open/floor/plasteel/tech, /area/ruin/powered/hydroponicslab) "ed" = ( @@ -326,9 +326,7 @@ pixel_x = 1; pixel_y = -1 }, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/techfloor{ @@ -566,13 +564,11 @@ /turf/open/floor/plasteel/tech, /area/ruin/powered/hydroponicslab) "jY" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood/walnut, /area/ruin/powered/hydroponicslab) "kr" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/techfloor{ dir = 8 }, @@ -634,9 +630,7 @@ /area/ruin/powered/hydroponicslab) "lF" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/borderfloorblack{ dir = 1 }, @@ -844,9 +838,7 @@ /turf/open/floor/plasteel/tech, /area/ruin/powered/hydroponicslab) "nL" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/table, /obj/item/wrench{ pixel_x = -6; @@ -864,9 +856,7 @@ /turf/open/floor/plasteel/tech, /area/ruin/powered/hydroponicslab) "nP" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/vault, /area/ruin/powered/hydroponicslab) "nS" = ( @@ -976,15 +966,11 @@ /turf/open/floor/plasteel/tech, /area/ruin/powered/hydroponicslab) "pL" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/freezer, /area/ruin/powered/hydroponicslab) "pR" = ( -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/structure/table, /obj/item/multitool{ pixel_x = 4; @@ -1056,7 +1042,9 @@ /turf/open/floor/vault, /area/ruin/powered/hydroponicslab) "si" = ( -/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/airlock/maintenance{ + dir = 8 + }, /turf/open/floor/wood/walnut, /area/ruin/powered/hydroponicslab) "ss" = ( @@ -1104,7 +1092,7 @@ /obj/effect/decal/cleanable/blood/drip{ pixel_y = -1 }, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/caseless{ pixel_x = 6; @@ -1157,9 +1145,7 @@ /obj/structure/sign/warning/securearea{ pixel_x = -32 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/vault, /area/ruin/powered/hydroponicslab) @@ -1184,9 +1170,7 @@ "uX" = ( /obj/structure/table, /obj/item/seeds/plump/walkingmushroom, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/effect/turf_decal/techfloor{ dir = 1 }, @@ -1205,7 +1189,9 @@ dir = 1 }, /obj/effect/turf_decal/spline/fancy/opaque/grey, -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /turf/open/floor/plasteel/tech, /area/ruin/powered/hydroponicslab) "vc" = ( @@ -1264,7 +1250,9 @@ /turf/open/floor/carpet, /area/ruin/powered/hydroponicslab) "xE" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /turf/open/floor/wood/walnut, /area/ruin/powered/hydroponicslab) "xJ" = ( @@ -1289,9 +1277,7 @@ /turf/open/floor/carpet, /area/ruin/powered/hydroponicslab) "ys" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/borderfloorblack{ dir = 4 }, @@ -1404,9 +1390,7 @@ /area/ruin/powered/hydroponicslab) "Bc" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /obj/item/ammo_casing/caseless{ pixel_y = -1; dir = 5; @@ -1665,7 +1649,9 @@ /area/ruin/powered/hydroponicslab) "Ik" = ( /obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/security, +/obj/machinery/door/airlock/security{ + dir = 4 + }, /turf/open/floor/wood/walnut, /area/ruin/powered/hydroponicslab) "IQ" = ( @@ -1872,9 +1858,7 @@ /area/ruin/powered/hydroponicslab) "Nl" = ( /obj/machinery/seed_extractor, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/effect/turf_decal/techfloor{ dir = 1 }, @@ -1931,9 +1915,7 @@ /area/ruin/powered/hydroponicslab) "Pa" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood/walnut, /area/ruin/powered/hydroponicslab) "Ph" = ( @@ -1963,9 +1945,7 @@ /turf/open/floor/wood/walnut, /area/ruin/powered/hydroponicslab) "Pz" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/vault, /area/ruin/powered/hydroponicslab) "PQ" = ( @@ -2003,9 +1983,7 @@ /turf/open/floor/wood/walnut, /area/ruin/powered/hydroponicslab) "Qu" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -2020,9 +1998,7 @@ /area/ruin/powered/hydroponicslab) "QT" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -2189,7 +2165,7 @@ "VN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/grass, /area/ruin/powered/hydroponicslab) "We" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_corporate_rejects.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_corporate_rejects.dmm index a4e5033787b2..52f4ba4b6a8e 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_corporate_rejects.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_surface_corporate_rejects.dmm @@ -120,6 +120,17 @@ /obj/item/storage/box/bodybags, /turf/open/floor/mineral/plastitanium/red, /area/ruin/unpowered/corprejectrooms) +"dw" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/catwalk_floor, +/area/ruin/unpowered/corprejectrooms) "dG" = ( /obj/effect/turf_decal/corner/opaque/white/diagonal, /obj/structure/sink{ @@ -167,7 +178,9 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) "ff" = ( @@ -194,13 +207,14 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/ruin/unpowered/corprejectrooms) -"fq" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/blue{ - icon_state = "0-5" - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/red, +"fE" = ( +/obj/structure/chair, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ruin/unpowered/corprejectrooms) +"fH" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood, /area/ruin/unpowered/corprejectrooms) "fN" = ( /obj/structure/cable/blue{ @@ -262,6 +276,13 @@ }, /turf/open/floor/plating/catwalk_floor, /area/ruin/unpowered/corprejectrooms) +"gL" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable/blue{ + icon_state = "5-8" + }, +/turf/open/floor/wood, +/area/ruin/unpowered/corprejectrooms) "gT" = ( /obj/item/ammo_casing/shotgun/incendiary{ pixel_y = 10 @@ -271,21 +292,19 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectvault) -"hi" = ( +"hn" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered/corprejectrooms) +"hu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 9 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech, /area/ruin/unpowered/corprejectengineering) -"hn" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered/corprejectrooms) "hz" = ( /turf/open/floor/mineral/plastitanium/red, /area/ruin/unpowered/corprejectrooms) @@ -370,23 +389,13 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectvault) -"jF" = ( -/obj/machinery/vending/security, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/red, -/area/ruin/unpowered/corprejectrooms) -"kn" = ( +"jY" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/light{ - dir = 4 + icon_state = "0-8" }, -/turf/open/floor/plating/catwalk_floor, +/turf/open/floor/mineral/titanium/tiled/blue, /area/ruin/unpowered/corprejectrooms) "kq" = ( /obj/structure/cable/blue{ @@ -396,17 +405,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel/sepia, /area/ruin/unpowered/corprejectrooms) -"kD" = ( -/mob/living/simple_animal/hostile/nanotrasen/elite{ - desc = "A former major player for Nanotrasen militaristic needs. He doesn't seem like someone who'd want to talk over tea."; - faction = list("DeserterNT"); - name = "Sam the Sharp" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/vault, -/area/ruin/unpowered/corprejectrooms) "kF" = ( /obj/structure/cable/blue{ icon_state = "5-8" @@ -419,6 +417,12 @@ }, /turf/open/floor/plasteel/tech, /area/ruin/unpowered/corprejectengineering) +"kY" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/structure/table/optable, +/obj/machinery/light/directional/north, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/unpowered/corprejectrooms) "la" = ( /obj/structure/cable/blue{ icon_state = "4-8" @@ -444,9 +448,19 @@ /obj/structure/barricade/sandbags, /turf/open/floor/vault, /area/ruin/unpowered/corprejectrooms) +"lj" = ( +/obj/structure/mecha_wreckage/ripley/mkii, +/obj/machinery/light/directional/east, +/turf/open/floor/mech_bay_recharge_floor, +/area/ruin/unpowered/corprejectengineering) "lk" = ( /turf/closed/mineral/snowmountain/icemoon, /area/ruin/unpowered/corprejectrooms) +"lF" = ( +/obj/structure/mecha_wreckage/honker/dark, +/obj/machinery/light/directional/east, +/turf/open/floor/mech_bay_recharge_floor, +/area/ruin/unpowered/corprejectengineering) "lL" = ( /obj/effect/turf_decal/corner/opaque/white/diagonal, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -458,6 +472,19 @@ /obj/machinery/autolathe/hacked, /turf/open/floor/plasteel/tech, /area/ruin/unpowered/corprejectengineering) +"mt" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/catwalk_floor, +/area/ruin/unpowered/corprejectrooms) "mN" = ( /obj/machinery/power/terminal{ dir = 8 @@ -487,15 +514,6 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectrooms) -"ni" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/blue, -/mob/living/simple_animal/bot/secbot/ed209/rockplanet{ - faction = list("DeserterNT"); - name = "Dell" - }, -/turf/open/floor/vault, -/area/ruin/unpowered/corprejectvault) "nk" = ( /obj/structure/cable/blue{ icon_state = "1-2" @@ -553,13 +571,15 @@ /obj/structure/fence, /turf/open/floor/vault, /area/ruin/unpowered/corprejectrooms) -"od" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/blue{ - icon_state = "0-9" +"or" = ( +/mob/living/simple_animal/hostile/nanotrasen/elite{ + desc = "A former major player for Nanotrasen militaristic needs. He doesn't seem like someone who'd want to talk over tea."; + faction = list("DeserterNT"); + name = "Sam the Sharp" }, -/turf/open/floor/plasteel/tech, -/area/ruin/unpowered/corprejectengineering) +/obj/machinery/light/directional/north, +/turf/open/floor/vault, +/area/ruin/unpowered/corprejectrooms) "ou" = ( /obj/structure/rack, /obj/structure/window/reinforced, @@ -605,7 +625,9 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) "ph" = ( @@ -622,7 +644,9 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) "pi" = ( @@ -668,7 +692,9 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) "qe" = ( @@ -692,7 +718,9 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) "qO" = ( @@ -709,17 +737,11 @@ dir = 8 }, /obj/structure/window/reinforced/tinted, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) -"rs" = ( -/obj/effect/turf_decal/corner/opaque/white/diagonal, -/obj/structure/table/optable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/tiled/blue, -/area/ruin/unpowered/corprejectrooms) "rH" = ( /obj/effect/turf_decal/corner/opaque/white/diagonal, /obj/machinery/vending/wallmed{ @@ -736,9 +758,6 @@ }, /turf/open/floor/mineral/titanium/tiled/blue, /area/ruin/unpowered/corprejectrooms) -"rL" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered/corprejectrooms) "rW" = ( /obj/structure/cable/blue{ icon_state = "1-2" @@ -753,6 +772,18 @@ }, /turf/open/floor/wood, /area/ruin/unpowered/corprejectrooms) +"sG" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/light/directional/west, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/unpowered/corprejectrooms) "tb" = ( /obj/effect/turf_decal/corner/opaque/white/diagonal, /mob/living/simple_animal/hostile/nanotrasen/ranged/smg{ @@ -762,17 +793,6 @@ }, /turf/open/floor/mineral/titanium/tiled/blue, /area/ruin/unpowered/corprejectrooms) -"tk" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ - dir = 1 - }, -/obj/structure/cable/blue{ - icon_state = "4-9" - }, -/obj/machinery/light, -/turf/open/floor/plasteel/grimy, -/area/ruin/unpowered/corprejectrooms) "tD" = ( /obj/structure/cable/blue{ icon_state = "4-8" @@ -815,7 +835,9 @@ dir = 4 }, /obj/structure/window/reinforced/tinted, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) "uE" = ( @@ -826,21 +848,6 @@ }, /turf/open/floor/wood, /area/ruin/unpowered/corprejectrooms) -"uH" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/mob/living/simple_animal/hostile/viscerator{ - faction = list("DeserterNT"); - name = "Lu Bu" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/catwalk_floor, -/area/ruin/unpowered/corprejectrooms) "uN" = ( /obj/structure/cable/blue{ icon_state = "6-9" @@ -853,7 +860,9 @@ dir = 8 }, /obj/structure/window/reinforced/tinted, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) "uO" = ( @@ -868,13 +877,11 @@ dir = 4 }, /obj/structure/window/reinforced/tinted, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) -"vb" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/ruin/unpowered/corprejectrooms) "vl" = ( /obj/machinery/vending/cola/pwr_game, /turf/open/floor/plasteel/sepia, @@ -941,6 +948,11 @@ /obj/item/reagent_containers/food/snacks/donut/chaos, /turf/open/floor/mineral/plastitanium/red, /area/ruin/unpowered/corprejectrooms) +"wE" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/sepia, +/area/ruin/unpowered/corprejectrooms) "xf" = ( /obj/structure/cable/blue{ icon_state = "5-8" @@ -1023,20 +1035,6 @@ "yp" = ( /turf/open/floor/wood, /area/ruin/unpowered/corprejectrooms) -"yr" = ( -/obj/effect/turf_decal/corner/opaque/white/diagonal, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/blue, -/area/ruin/unpowered/corprejectrooms) "yy" = ( /obj/item/restraints/legcuffs/beartrap{ armed = 1 @@ -1151,6 +1149,19 @@ }, /turf/open/floor/plating/catwalk_floor, /area/ruin/unpowered/corprejectrooms) +"Aj" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/mob/living/simple_animal/hostile/viscerator{ + faction = list("DeserterNT"); + name = "Lu Bu" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/catwalk_floor, +/area/ruin/unpowered/corprejectrooms) "Al" = ( /turf/template_noop, /area/template_noop) @@ -1165,13 +1176,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/unpowered/corprejectrooms) -"AW" = ( -/obj/machinery/light, -/obj/structure/cable/blue{ - icon_state = "5-8" - }, -/turf/open/floor/wood, -/area/ruin/unpowered/corprejectrooms) "Bb" = ( /obj/structure/bed, /obj/item/bedsheet/patriot, @@ -1224,6 +1228,14 @@ }, /turf/open/floor/plasteel/tech, /area/ruin/unpowered/corprejectengineering) +"Cv" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/blue{ + icon_state = "0-5" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/unpowered/corprejectrooms) "CA" = ( /obj/structure/table/reinforced, /obj/item/mecha_parts/mecha_equipment/weapon/ballistic/launcher/punching_glove, @@ -1306,17 +1318,6 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectvault) -"DK" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plating/catwalk_floor, -/area/ruin/unpowered/corprejectrooms) "DS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, @@ -1351,6 +1352,17 @@ "Ev" = ( /turf/closed/wall/r_wall, /area/ruin/unpowered/corprejectvault) +"EA" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 1 + }, +/obj/structure/cable/blue{ + icon_state = "4-9" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ruin/unpowered/corprejectrooms) "EJ" = ( /obj/structure/cable/blue{ icon_state = "5-10" @@ -1365,7 +1377,9 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) "EL" = ( @@ -1389,6 +1403,17 @@ }, /turf/open/floor/plasteel/sepia, /area/ruin/unpowered/corprejectrooms) +"Fz" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/light/directional/west, +/turf/open/floor/plating/catwalk_floor, +/area/ruin/unpowered/corprejectrooms) "FI" = ( /obj/structure/sign/barsign, /turf/closed/wall/r_wall, @@ -1425,14 +1450,13 @@ /obj/structure/table/wood/poker, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/corprejectrooms) -"Hc" = ( -/obj/item/phone, -/obj/structure/table/glass, -/obj/machinery/light/small{ - dir = 8 +"Hs" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/blue{ + icon_state = "0-9" }, -/turf/open/floor/vault, -/area/ruin/unpowered/corprejectvault) +/turf/open/floor/plasteel/tech, +/area/ruin/unpowered/corprejectengineering) "Hw" = ( /obj/structure/table/reinforced, /obj/machinery/chem_dispenser/drinks/fullupgrade{ @@ -1577,29 +1601,34 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectvault) -"Ke" = ( -/obj/item/bedsheet/nanotrasen, -/obj/structure/bed, -/obj/machinery/light{ - dir = 4 +"Kg" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" }, -/turf/open/floor/carpet/lone, -/area/ruin/unpowered/corprejectrooms) -"Kj" = ( -/obj/structure/rack, -/obj/item/ammo_box/magazine/smgm9mm/ap, -/obj/item/ammo_box/magazine/smgm9mm/fire, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 }, -/turf/open/floor/vault, -/area/ruin/unpowered/corprejectvault) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech, +/area/ruin/unpowered/corprejectengineering) "Kk" = ( /obj/structure/bed, /obj/effect/mob_spawn/human/clown/corpse, /turf/open/floor/mineral/plastitanium/red, /area/ruin/unpowered/corprejectrooms) -"Ku" = ( +"Kn" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/blue, +/mob/living/simple_animal/bot/secbot/ed209/rockplanet{ + faction = list("DeserterNT"); + name = "Dell" + }, +/turf/open/floor/vault, +/area/ruin/unpowered/corprejectvault) +"Ku" = ( /obj/item/poster/random_official, /obj/item/poster/random_official, /obj/item/poster/random_official, @@ -1622,14 +1651,6 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectvault) -"Lp" = ( -/obj/structure/bed, -/obj/effect/mob_spawn/human/corpse/syndicatesoldier, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ruin/unpowered/corprejectrooms) "LA" = ( /obj/effect/turf_decal/corner/opaque/white/diagonal, /turf/open/floor/mineral/titanium/tiled/blue, @@ -1665,23 +1686,6 @@ /obj/structure/bed, /turf/open/floor/carpet/lone, /area/ruin/unpowered/corprejectrooms) -"LL" = ( -/obj/structure/safe, -/obj/item/stack/sheet/mineral/plasma/twenty, -/obj/item/stack/sheet/mineral/uranium/twenty, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/stack/sheet/bluespace_crystal/five, -/obj/item/stack/sheet/mineral/bananium{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/gold/twenty, -/obj/item/stack/sheet/mineral/runite/ten, -/obj/item/toy/figure/captain, -/obj/item/organ/cyberimp/brain/anti_stun, -/obj/item/disk/design_disk/adv/knight_gear, -/turf/open/floor/vault, -/area/ruin/unpowered/corprejectvault) "LY" = ( /obj/structure/cable/blue{ icon_state = "4-6" @@ -1696,6 +1700,13 @@ /obj/item/fireaxe, /turf/open/floor/vault, /area/ruin/unpowered/corprejectvault) +"Md" = ( +/obj/structure/rack, +/obj/item/ammo_box/magazine/smgm9mm/ap, +/obj/item/ammo_box/magazine/smgm9mm/fire, +/obj/machinery/light/small/directional/east, +/turf/open/floor/vault, +/area/ruin/unpowered/corprejectvault) "Mh" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/plating/asteroid/snow/icemoon, @@ -1710,9 +1721,6 @@ }, /turf/open/floor/plating/catwalk_floor, /area/ruin/unpowered/corprejectrooms) -"Ng" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered/corprejectrooms) "Nk" = ( /obj/structure/chair/stool/bar, /obj/structure/cable/blue{ @@ -1720,6 +1728,23 @@ }, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/corprejectrooms) +"ND" = ( +/obj/structure/safe, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/item/stack/sheet/mineral/uranium/twenty, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/stack/sheet/bluespace_crystal/five, +/obj/item/stack/sheet/mineral/bananium{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/gold/twenty, +/obj/item/stack/sheet/mineral/runite/ten, +/obj/item/toy/figure/captain, +/obj/item/organ/cyberimp/brain/anti_stun, +/obj/item/disk/design_disk/adv/knight_gear, +/turf/open/floor/vault, +/area/ruin/unpowered/corprejectvault) "NJ" = ( /obj/structure/bed, /obj/item/bedsheet/cosmos, @@ -1744,12 +1769,12 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectrooms) -"NU" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 8 +"NQ" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/blue{ + icon_state = "0-6" }, -/turf/open/floor/plasteel/sepia, +/turf/open/floor/plasteel/grimy, /area/ruin/unpowered/corprejectrooms) "Oc" = ( /obj/structure/cable/blue{ @@ -1761,21 +1786,6 @@ /obj/structure/AIcore/deactivated, /turf/open/floor/plasteel/tech, /area/ruin/unpowered/corprejectengineering) -"Oy" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ruin/unpowered/corprejectengineering) "ON" = ( /obj/effect/turf_decal/corner/opaque/white/diagonal, /obj/structure/cable/blue{ @@ -1836,19 +1846,6 @@ }, /turf/open/floor/plating/catwalk_floor, /area/ruin/unpowered/corprejectrooms) -"PR" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/catwalk_floor, -/area/ruin/unpowered/corprejectrooms) "PS" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -1862,6 +1859,12 @@ /obj/effect/mob_spawn/human/corpse/cargo_tech, /turf/open/floor/mineral/plastitanium/red, /area/ruin/unpowered/corprejectrooms) +"Qf" = ( +/obj/structure/bed, +/obj/effect/mob_spawn/human/corpse/syndicatesoldier, +/obj/machinery/light/directional/north, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/unpowered/corprejectrooms) "Qi" = ( /obj/structure/flora/ausbushes/fullgrass, /mob/living/simple_animal/bot/secbot/ed209/rockplanet{ @@ -1881,13 +1884,6 @@ /obj/machinery/vending/boozeomat/all_access, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/corprejectrooms) -"QE" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable/blue{ - icon_state = "0-6" - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/unpowered/corprejectrooms) "QZ" = ( /obj/structure/cable/blue{ icon_state = "4-9" @@ -2011,14 +2007,6 @@ /obj/structure/curtain, /turf/open/floor/mineral/titanium/tiled/blue, /area/ruin/unpowered/corprejectrooms) -"SZ" = ( -/obj/effect/turf_decal/corner/opaque/white/diagonal, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/turf/open/floor/mineral/titanium/tiled/blue, -/area/ruin/unpowered/corprejectrooms) "Tb" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -2052,6 +2040,17 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectvault) +"To" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/catwalk_floor, +/area/ruin/unpowered/corprejectrooms) "Tu" = ( /obj/structure/table/glass, /obj/item/paper{ @@ -2111,6 +2110,11 @@ }, /turf/open/floor/plasteel/tech, /area/ruin/unpowered/corprejectengineering) +"Ut" = ( +/obj/machinery/vending/security, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/unpowered/corprejectrooms) "UF" = ( /turf/closed/wall/r_wall, /area/ruin/unpowered/corprejectengineering) @@ -2177,6 +2181,12 @@ }, /turf/open/floor/wood, /area/ruin/unpowered/corprejectrooms) +"Wa" = ( +/obj/item/bedsheet/nanotrasen, +/obj/structure/bed, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/lone, +/area/ruin/unpowered/corprejectrooms) "WT" = ( /turf/open/floor/plasteel/sepia, /area/ruin/unpowered/corprejectrooms) @@ -2207,19 +2217,6 @@ }, /turf/open/floor/mineral/titanium/tiled/blue, /area/ruin/unpowered/corprejectrooms) -"XK" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plating/catwalk_floor, -/area/ruin/unpowered/corprejectrooms) "XL" = ( /obj/structure/rack, /obj/structure/window/reinforced, @@ -2235,11 +2232,11 @@ /obj/item/clothing/mask/gas/welding, /turf/open/floor/plasteel/patterned/monofloor, /area/ruin/unpowered/corprejectengineering) -"XQ" = ( +"Yj" = ( /obj/structure/chair{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable/blue{ icon_state = "0-4" }, @@ -2264,27 +2261,12 @@ }, /turf/open/floor/vault, /area/ruin/unpowered/corprejectrooms) -"YV" = ( -/obj/structure/mecha_wreckage/honker/dark, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/ruin/unpowered/corprejectengineering) -"YW" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered/corprejectrooms) -"YY" = ( -/obj/structure/mecha_wreckage/ripley/mkii, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/ruin/unpowered/corprejectengineering) +"Zh" = ( +/obj/item/phone, +/obj/structure/table/glass, +/obj/machinery/light/small/directional/west, +/turf/open/floor/vault, +/area/ruin/unpowered/corprejectvault) "Zu" = ( /obj/structure/cable/blue{ icon_state = "4-10" @@ -2302,9 +2284,6 @@ /obj/machinery/door/poddoor/shutters, /turf/open/floor/plating, /area/ruin/unpowered/corprejectvault) -"ZH" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered/corprejectrooms) "ZM" = ( /turf/open/floor/plating/snowed/temperatre, /area/ruin/unpowered/corprejectrooms) @@ -2466,15 +2445,15 @@ Al Al Al Al -ZH -ZH -ZH -ZH +hn +hn +hn +hn ZM -ZH -ZH -ZH -ZH +hn +hn +hn +hn Al Al Al @@ -2506,15 +2485,15 @@ Al Al Al Al -ZH -ZH -ZH -ZH +hn +hn +hn +hn uE hn -ZH -ZH -ZH +hn +hn +hn Al Al Al @@ -2546,15 +2525,15 @@ Al Al Al Al -ZH -ZH -YW +hn +hn +fE yp yp yp -vb -Ng -ZH +fH +hn +hn Al Al Al @@ -2586,15 +2565,15 @@ Al Al Al Al -ZH -rL +hn +hn xq IU yo dq Gb -ZH -ZH +hn +hn Al Al Al @@ -2626,23 +2605,23 @@ Al Al Al Al -ZH -ZH +hn +hn ed Di Tu zc -XQ -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH +Yj +hn +hn +hn +hn +hn +hn +hn +hn +hn +hn Al Al Al @@ -2665,24 +2644,24 @@ Al Al Al Al -ZH -ZH -ZH +hn +hn +hn xq yp Hz yp -AW -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH +gL +hn +hn +hn +hn +hn +hn +hn +hn +hn +hn Al Al Al @@ -2704,11 +2683,11 @@ Al Al Al Al -ZH -ZH -ZH -ZH -YW +hn +hn +hn +hn +fE yp VM xp @@ -2717,17 +2696,17 @@ rW wy wy Dh -kn +To PF wy za -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn Al Al Al @@ -2743,31 +2722,31 @@ Al Al Al Al -ZH -ZH -ZH +hn +hn +hn Xt -ZH +hn tN tN tN tN tN -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn Er -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn Al Al Al @@ -2783,11 +2762,11 @@ Al Al Al Al -ZH -ZH +hn +hn Te VB -ZH +hn tN Pj Pj @@ -2798,16 +2777,16 @@ Pj Pj tN tN -ZH -NU +hn +wE Sr Fa oF GX -QE +NQ Qt -ZH -ZH +hn +hn Al Al Al @@ -2823,11 +2802,11 @@ Al Al Al Al -ZH -ZH +hn +hn II -ZH -ZH +hn +hn Pj Pj pd @@ -2845,9 +2824,9 @@ LY yK GX ZV -tk +EA FI -ZH +hn Al Al Al @@ -2863,10 +2842,10 @@ Al Al Al Al -ZH -ZH +hn +hn MR -ZH +hn Pj Pj EJ @@ -2886,11 +2865,11 @@ Bl pD Rb Hw -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn Al Al Al @@ -2901,18 +2880,18 @@ Al Al Al Al -ZH -ZH -ZH -ZH +hn +hn +hn +hn NL -ZH +hn Pj Zu Ev Ev CS -Hc +Zh Ku Ev Ev @@ -2926,11 +2905,11 @@ Nk zh em zz -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn Al Al Al @@ -2941,11 +2920,11 @@ Al Al Al Al -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn tN Pj aR @@ -2954,7 +2933,7 @@ Ge gT Is jy -LL +ND Ev wl Pj @@ -2969,8 +2948,8 @@ px ja WV za -ZH -ZH +hn +hn Al Al Al @@ -2981,8 +2960,8 @@ Al Al Al Al -ZH -ZH +hn +hn hV io NO @@ -2994,7 +2973,7 @@ Tn CU It TN -ni +Kn Ev ws Pj @@ -3005,12 +2984,12 @@ oB oB oB oB -ZH -ZH -ZH -DK -ZH -ZH +hn +hn +hn +dw +hn +hn Al Al Al @@ -3021,9 +3000,9 @@ Al Al Al Al -ZH -ZH -kD +hn +hn +or jd Rh tN @@ -3041,16 +3020,16 @@ Pj tN LK vP -Ke +Wa Bb NJ LK -ZH +hn cN -ZH +hn gd -ZH -ZH +hn +hn Al Al Al @@ -3061,8 +3040,8 @@ Al Al Al Al -ZH -ZH +hn +hn le nb Ri @@ -3072,24 +3051,24 @@ iX Ev Ev En -Kj +Md fS Ev Ev yf Pj -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn +hn ff -ZH +hn gd -ZH +hn Al Al Al @@ -3100,9 +3079,9 @@ Al Al Al Al -ZH -ZH -ZH +hn +hn +hn nZ pi RE @@ -3127,12 +3106,12 @@ lk lk lk lk -ZH +hn gd aQ zM -ZH -ZH +hn +hn Al Al "} @@ -3140,14 +3119,14 @@ Al Al Al Al -ZH -ZH -ZH +hn +hn +hn PA tD SF -ZH -ZH +hn +hn Pj Pj ph @@ -3172,7 +3151,7 @@ la nX UF UF -ZH +hn Al Al "} @@ -3180,14 +3159,14 @@ Al Al Al Al -ZH -ZH +hn +hn At hz xf Tb -jF -ZH +Ut +hn tN Pj Pj @@ -3205,14 +3184,14 @@ wo Mk UF Qr -Oy +Kg bI Cm kF -hi +hu lc UF -ZH +hn Al Al "} @@ -3220,14 +3199,14 @@ Al Al Al Al -ZH -ZH +hn +hn AT dO Rm oP ue -ZH +hn tN tN tN @@ -3235,7 +3214,7 @@ tN tN tN tN -ZH +hn tN Mk Mk @@ -3252,7 +3231,7 @@ Oc cl lM UF -ZH +hn Al Al "} @@ -3260,8 +3239,8 @@ Al Al Al Al -ZH -ZH +hn +hn Kk eK Ik @@ -3272,10 +3251,10 @@ ZX WV yO WV -uH +Aj WV za -ZH +hn Mk HY Mk @@ -3292,7 +3271,7 @@ ou QZ CA UF -ZH +hn Al Al "} @@ -3300,29 +3279,29 @@ Al Al Al Al -ZH -ZH -Lp +hn +hn +Qf hz yS Uq wB -ZH +hn EL -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn HX qO -ZH -ZH -ZH +hn +hn +hn qO -ZH -ZH -ZH +hn +hn +hn UF UN nl @@ -3332,7 +3311,7 @@ nN fN PS UF -ZH +hn Al Al "} @@ -3340,28 +3319,28 @@ Al Al Al Al -ZH -ZH +hn +hn PU hz Rs UT -fq -ZH +Cv +hn EL -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn mU LB LH rH -yr +sG ON wy -PR +Fz wy Bo UZ @@ -3370,9 +3349,9 @@ Sy Sy nW Us -od +Hs UF -ZH +hn Al Al "} @@ -3380,39 +3359,39 @@ Al Al Al Al -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn BM -ZH -ZH -XK -ZH -ZH -ZH -ZH -ZH +hn +hn +mt +hn +hn +hn +hn +hn OP lL XB Ie Iy qO -ZH -ZH -ZH +hn +hn +hn UF -YY +lj cF Vc Xa -YV +lF ZP Ok UF -ZH +hn Al Al "} @@ -3420,29 +3399,29 @@ Al Al Al Al -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn Vy WV WV gB -ZH -ZH +hn +hn Al -ZH -ZH -rs +hn +hn +kY tb LA Rp -SZ -ZH -ZH -ZH -ZH +jY +hn +hn +hn +hn UF UF UF @@ -3452,7 +3431,7 @@ UF UF UF UF -ZH +hn Al Al "} @@ -3463,36 +3442,36 @@ Al Al Al Al -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn +hn Al -ZH -ZH +hn +hn dG tM SV SV tI -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn +hn +hn +hn +hn +hn +hn +hn Al Al "} @@ -3503,24 +3482,24 @@ Al Al Al Al -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn +hn Al -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn +hn +hn Al Al Al @@ -3552,15 +3531,15 @@ Al Al Al Al -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH +hn +hn +hn +hn +hn +hn +hn +hn +hn Al Al Al diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm index 47c989db9973..457adbd6ba10 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm @@ -193,18 +193,14 @@ /obj/effect/turf_decal/trimline/opaque/yellow/filled/line{ dir = 8 }, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) "aL" = ( /obj/effect/turf_decal/trimline/opaque/yellow/filled/line{ dir = 4 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) "aM" = ( @@ -326,9 +322,7 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/meter/atmos, /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) @@ -405,7 +399,8 @@ /area/icemoon/surface/outdoors) "bi" = ( /obj/machinery/door/airlock/engineering{ - name = "The Singularity Engine" + name = "The Singularity Engine"; + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" @@ -443,10 +438,6 @@ /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) "bl" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Entry"; - req_access_txt = "204" - }, /obj/structure/cable{ icon_state = "4-8" }, @@ -456,6 +447,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, +/obj/machinery/door/airlock/engineering{ + name = "The Singularity Engine"; + dir = 8 + }, /turf/open/floor/plasteel/dark{ initial_gas_mix = "ICEMOON_ATMOS" }, @@ -689,7 +684,8 @@ /area/icemoon/surface/outdoors) "bI" = ( /obj/machinery/door/airlock/atmos{ - name = "Atmospherics" + name = "Atmospherics"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -903,7 +899,7 @@ /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) "ci" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/turf_decal/trimline/opaque/yellow/filled/line, /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) @@ -929,10 +925,8 @@ /obj/effect/turf_decal/trimline/opaque/yellow/filled/line{ dir = 4 }, -/obj/machinery/light/dim{ - dir = 4 - }, -/obj/machinery/newscaster{ +/obj/machinery/light/dim/directional/east, +/obj/machinery/newscaster/directional/north{ pixel_x = 32 }, /turf/open/floor/plasteel/icemoon, @@ -986,9 +980,7 @@ /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 1 }, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) "ct" = ( @@ -1185,7 +1177,7 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) "cR" = ( @@ -1316,7 +1308,7 @@ /area/icemoon/surface/outdoors) "df" = ( /obj/machinery/rnd/production/protolathe/department/engineering, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/turf_decal/corner/transparent/neutral/half{ dir = 1 }, @@ -1385,7 +1377,7 @@ /turf/open/floor/plating/icemoon, /area/icemoon/surface/outdoors) "dp" = ( -/obj/machinery/light/built, +/obj/machinery/light/built/directional/south, /turf/open/floor/plating/icemoon, /area/icemoon/surface/outdoors) "dq" = ( @@ -1512,7 +1504,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/atmos{ - name = "Atmospherics" + name = "Atmospherics"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_newcops.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_newcops.dmm index 7339f315afc3..e4a945dc3e75 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_newcops.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_newcops.dmm @@ -2,7 +2,8 @@ "aF" = ( /obj/machinery/door/airlock/centcom{ name = "Dormitories"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -24,6 +25,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) +"bV" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "ch" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ @@ -54,6 +61,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/powered) +"cu" = ( +/obj/machinery/door/airlock/centcom{ + name = "Dormitories"; + req_access_txt = "150"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/ruin/powered) "dm" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -237,9 +253,7 @@ "ke" = ( /obj/structure/table/wood, /obj/item/storage/box/syndie_kit/sleepytime, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/ruin/powered) "kj" = ( @@ -282,7 +296,7 @@ /area/ruin/powered) "lN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/powered) "mc" = ( @@ -491,7 +505,9 @@ /turf/open/floor/plating/airless, /area/ruin/powered) "xn" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) @@ -678,9 +694,8 @@ /turf/open/floor/plasteel, /area/ruin/powered) "EV" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/freezer, @@ -741,9 +756,7 @@ /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/powered) @@ -802,9 +815,7 @@ /area/ruin/powered) "Kx" = ( /obj/item/soap/syndie, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) @@ -842,7 +853,7 @@ /turf/open/floor/plating, /area/ruin/powered) "Lt" = ( -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ icon_state = "wood-broken" @@ -883,7 +894,8 @@ "PH" = ( /obj/machinery/door/airlock/centcom{ name = "Dormitories"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -917,7 +929,8 @@ "Rj" = ( /obj/machinery/door/poddoor/shutters{ id = "abandonednewcopshuttle"; - name = "Shuttle Dock" + name = "Shuttle Dock"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/powered) @@ -929,7 +942,8 @@ "Rx" = ( /obj/machinery/door/airlock/centcom{ name = "Dormitories"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ @@ -946,18 +960,14 @@ /area/ruin/powered) "Ss" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) "SN" = ( /obj/structure/table/wood, /obj/item/storage/box/syndie_kit/sleepytime, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood{ icon_state = "wood-broken6" }, @@ -994,7 +1004,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) @@ -1020,9 +1030,7 @@ /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/clothing/suit/hooded/wintercoat, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/powered) "Wt" = ( @@ -1042,7 +1050,9 @@ }, /area/ruin/powered) "WM" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/powered) "WV" = ( @@ -1067,9 +1077,7 @@ /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/structure/light_construct{ - dir = 4 - }, +/obj/structure/light_construct/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/powered) @@ -1078,14 +1086,15 @@ /turf/open/floor/plating/asteroid/snow/icemoon, /area/icemoon/underground/explored) "XN" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) "YJ" = ( /obj/machinery/door/airlock/centcom{ name = "Restroom"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /turf/open/floor/plasteel, /area/ruin/powered) @@ -1097,9 +1106,7 @@ /area/ruin/powered) "YU" = ( /obj/structure/mecha_wreckage/mauler, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -1122,7 +1129,8 @@ "ZL" = ( /obj/machinery/door/airlock/centcom{ name = "EVA Equipment"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/powered) @@ -1131,7 +1139,7 @@ /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/powered) @@ -1550,7 +1558,7 @@ rG rG rG Fr -WM +bV Fr rG rG @@ -2062,7 +2070,7 @@ Wt LP Wt Fr -WM +bV Fr Wt Wt @@ -2239,7 +2247,7 @@ LP bH Cd zL -aF +cu zL Rx vV diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm index ea590eb1df4a..26f3f9ac1e2b 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm @@ -13,13 +13,6 @@ /obj/structure/sign/poster/ripped, /turf/closed/wall/rust, /area/icemoon/underground/explored) -"bR" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/structure/fluff/fokoff_sign, -/turf/open/floor/plating/asteroid/snow/icemoon, -/area/icemoon/underground/explored) "bY" = ( /obj/structure/flora/stump, /turf/open/floor/plating/asteroid/snow/icemoon, @@ -50,6 +43,12 @@ /obj/item/bedsheet/random, /turf/open/floor/wood, /area/ruin/powered) +"fQ" = ( +/obj/structure/showcase/machinery/tv, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/holofloor/wood, +/area/ruin/powered) "gG" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/sashimi{ @@ -86,12 +85,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/ruin/powered) -"jP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow/icemoon, -/area/icemoon/underground/explored) "kl" = ( /obj/structure/sign/poster/official/nanotrasen_logo, /turf/closed/wall, @@ -128,6 +121,10 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"lr" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "mi" = ( /obj/effect/decal/remains/human, /mob/living/simple_animal/hostile/construct/juggernaut/hostile{ @@ -183,7 +180,9 @@ /turf/open/floor/wood, /area/ruin/powered) "pV" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /turf/open/floor/plating, /area/ruin/powered) "rC" = ( @@ -270,6 +269,26 @@ /obj/structure/fence/door, /turf/open/floor/plating/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"wo" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/bodypart/head, +/obj/item/bodypart/l_arm{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/item/bodypart/leg/left, +/obj/item/bodypart/r_arm, +/obj/item/bodypart/leg/right{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/bodypart/chest, +/obj/item/organ/heart, +/obj/item/multitool, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered) "wQ" = ( /turf/closed/wall, /area/ruin/powered) @@ -301,14 +320,6 @@ "zT" = ( /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) -"AG" = ( -/obj/structure/showcase/machinery/tv, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/holofloor/wood, -/area/ruin/powered) "AM" = ( /obj/effect/decal/cleanable/blood/gibs/down, /obj/item/pickaxe, @@ -439,6 +450,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/ruin/powered) +"Jf" = ( +/obj/machinery/light/small/broken/directional/east, +/obj/structure/fluff/fokoff_sign, +/turf/open/floor/plating/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "Kd" = ( /obj/structure/flora/grass/green, /turf/open/floor/plating/asteroid/snow/icemoon, @@ -482,26 +498,6 @@ }, /turf/open/floor/engine/cult, /area/ruin/powered) -"Qh" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/item/bodypart/head, -/obj/item/bodypart/l_arm{ - pixel_x = -9; - pixel_y = -9 - }, -/obj/item/bodypart/leg/left, -/obj/item/bodypart/r_arm, -/obj/item/bodypart/leg/right{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/bodypart/chest, -/obj/item/organ/heart, -/obj/item/multitool, -/turf/open/floor/plasteel/freezer, -/area/ruin/powered) "Qt" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 1 @@ -515,6 +511,12 @@ "QR" = ( /turf/closed/wall/rust, /area/ruin/powered) +"Rc" = ( +/obj/machinery/door/airlock/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/powered) "Rv" = ( /obj/structure/flora/grass/both, /turf/open/floor/plating/asteroid/snow/icemoon, @@ -623,11 +625,11 @@ tN pc Og Og -bR +Jf Og Og Og -jP +lr Og Og Og @@ -786,7 +788,7 @@ Vn QR DI SN -Qh +wo wQ Ei Ei @@ -839,7 +841,7 @@ Vn tF iz Vn -AG +fQ aM yb Vn @@ -900,7 +902,7 @@ yS zT Vn Vn -SZ +Rc Vn Vn Og diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_brazillianlab.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_brazillianlab.dmm index f7abbe9b904f..5a7fd5ce660a 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_brazillianlab.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_brazillianlab.dmm @@ -406,12 +406,6 @@ initial_gas_mix = "ICEMOON_ATMOS" }, /area/ruin/unpowered) -"us" = ( -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/wood{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/ruin/unpowered) "uv" = ( /turf/open/floor/plasteel/white{ initial_gas_mix = "ICEMOON_ATMOS" @@ -635,10 +629,6 @@ initial_gas_mix = "ICEMOON_ATMOS" }, /area/ruin/unpowered) -"Ct" = ( -/obj/structure/barricade/sandbags, -/turf/open/floor/plating/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors) "CI" = ( /obj/structure/flora/junglebush/c, /mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{ @@ -736,10 +726,6 @@ initial_gas_mix = "ICEMOON_ATMOS" }, /area/ruin/unpowered) -"GX" = ( -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/ruin/unpowered) "Hb" = ( /turf/open/floor/plating/asteroid/snow/icemoon, /area/icemoon/surface/outdoors) @@ -1274,9 +1260,9 @@ aW aW Hb zi -Ct -Ct -Ct +cr +cr +cr Hb Hb aW @@ -1306,7 +1292,7 @@ aW aW aW Hb -Ct +cr zi Hb kX @@ -1323,7 +1309,7 @@ aW aW YV Hb -Ct +cr Hb aW aW @@ -1405,7 +1391,7 @@ aW aW aW Hb -GX +fd Vt xI Ul @@ -1446,15 +1432,15 @@ WH Iz kX aW -Ct -Ct +cr +cr Hb zi Hb aW zi Hb -Ct +cr aW "} (7,1,1) = {" @@ -1479,14 +1465,14 @@ kX kX Hb Hb -Ct +cr Hb Hb Hb aW sE lu -Ct +cr hr "} (8,1,1) = {" @@ -1511,7 +1497,7 @@ oR kX Hb zi -Ct +cr Hb Hb aW @@ -1540,10 +1526,10 @@ Jt LB BL mn -us +hg Hb Fh -Ct +cr Hb aW aW @@ -1581,7 +1567,7 @@ aW aW aW xg -Ct +cr lu aW "} @@ -1622,7 +1608,7 @@ aW aW aW Hb -Ct +cr aW aW aW @@ -1640,7 +1626,7 @@ kX aW Hb Hb -Ct +cr Hb hr Hb @@ -1654,7 +1640,7 @@ aW aW aW Hb -Ct +cr aW aW aW @@ -1672,7 +1658,7 @@ kX aW Hb zi -Ct +cr Hb To Hb @@ -1686,7 +1672,7 @@ aW aW aW zi -Ct +cr aW aW aW @@ -1701,10 +1687,10 @@ si Tx YX aW -Ct +cr Hb hA -Ct +cr Hb hr YV @@ -1717,8 +1703,8 @@ aW aW aW aW -Ct -Ct +cr +cr aW aW MI @@ -1733,12 +1719,12 @@ hT MI YX CI -Ct +cr lu Hb Hb NR -Ct +cr Hb aW aW @@ -1749,7 +1735,7 @@ aW aW aW Hb -Ct +cr zi aW aW @@ -1770,7 +1756,7 @@ YV aW lu Hb -Ct +cr Hb Hb Hb @@ -1781,7 +1767,7 @@ aW aW aW Hb -Ct +cr ht aW CI @@ -1813,7 +1799,7 @@ aW aW aW zi -Ct +cr Hb aW YX @@ -1836,8 +1822,8 @@ kX aW aW Hb -Ct -Ct +cr +cr VI aW "} @@ -1845,7 +1831,7 @@ aW aW aW Hb -Ct +cr Hb aW YX @@ -1869,7 +1855,7 @@ kX Hb hA Ex -Ct +cr Hb aW "} @@ -1877,7 +1863,7 @@ aW aW aW qD -Ct +cr Hb aW YX @@ -1909,7 +1895,7 @@ aW aW aW Hb -Ct +cr Hb aW YX @@ -1941,7 +1927,7 @@ aW aW aW Hb -Ct +cr Hb aW YX @@ -1965,7 +1951,7 @@ kX Ex xK Ex -Ct +cr zi aW "} @@ -1973,7 +1959,7 @@ aW aW aW zi -Ct +cr Hb aW YX @@ -1997,7 +1983,7 @@ zi hA Hb Hb -Ct +cr Hb aW "} @@ -2005,8 +1991,8 @@ aW aW aW Hb -Ct -Ct +cr +cr aW Ux MI @@ -2028,8 +2014,8 @@ aW jn Hb NR -Ct -Ct +cr +cr Hb aW "} @@ -2038,7 +2024,7 @@ aW aW aW Hb -Ct +cr Hb aW YX @@ -2059,8 +2045,8 @@ lu aW aW Pu -Ct -Ct +cr +cr Hb aW aW @@ -2086,7 +2072,7 @@ YX DX Ux aW -Ct +cr aW aW Hb @@ -2118,10 +2104,10 @@ YX YX aW aW -Ct +cr zi Hb -Ct +cr Hb Hb Hb @@ -2153,7 +2139,7 @@ YV aW hR xK -Ct +cr Hb Hb zi @@ -2253,7 +2239,7 @@ aW aW Hb Hb -Ct +cr zi Hb "} @@ -2284,8 +2270,8 @@ aW aW aW aW -Ct -Ct +cr +cr Hb Hb "} @@ -2444,7 +2430,7 @@ aW aW aW zi -Ct +cr Hb aW aW @@ -2475,8 +2461,8 @@ aW aW Hb Hb -Ct -Ct +cr +cr Hb aW aW @@ -2506,8 +2492,8 @@ aW Hb VI Hb -Ct -Ct +cr +cr Hb aW aW diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_hermit.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_hermit.dmm index 9301825a1a13..f764fa860a2e 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_hermit.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_hermit.dmm @@ -26,9 +26,7 @@ /turf/open/floor/grass/fairy, /area/ruin/powered/shuttle) "ha" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ruin/powered/shuttle) "hv" = ( @@ -65,12 +63,7 @@ /area/ruin/powered/shuttle) "sM" = ( /obj/structure/chair/comfy/beige, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ruin/powered/shuttle) "wH" = ( @@ -110,9 +103,7 @@ /area/ruin/powered/shuttle) "ON" = ( /obj/machinery/hydroponics/soil, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/grass/fairy, /area/ruin/powered/shuttle) "OU" = ( @@ -147,12 +138,6 @@ /obj/structure/flora/tree/jungle/small, /turf/open/floor/grass/fairy, /area/ruin/powered/shuttle) -"XI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grass/fairy, -/area/ruin/powered/shuttle) "Yi" = ( /obj/item/shovel, /turf/open/floor/plating, @@ -348,7 +333,7 @@ YN ei gr gr -XI +gr wH WK gr diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_icecropolis.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_icecropolis.dmm index b57e4e125e03..d2d296cc1d8c 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_icecropolis.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_icecropolis.dmm @@ -511,13 +511,6 @@ "je" = ( /turf/closed/mineral/random/high_chance/volcanic/icecropolis, /area/ruin/unpowered/icecropolis) -"jE" = ( -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/ruin/unpowered/icecropolis/rusty) "jK" = ( /obj/structure/stone_tile/slab, /obj/structure/table/wood/fancy/royalblue, @@ -846,13 +839,6 @@ /obj/item/bedsheet/wiz, /turf/open/floor/plating/asteroid/basalt/lava_land_surface/icecropolis/inside, /area/ruin/unpowered/icecropolis/gold) -"qr" = ( -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/clothing/mask/fakemoustache/italian, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface/icecropolis/inside, -/area/ruin/unpowered/icecropolis/reach) "qA" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/mineral/gold, @@ -1094,6 +1080,10 @@ }, /turf/open/lava, /area/ruin/unpowered/icecropolis) +"uL" = ( +/obj/item/radio/intercom/wideband/directional/east, +/turf/open/floor/wood/icecropolis, +/area/ruin/unpowered/icecropolis/russia) "uO" = ( /obj/structure/table_frame, /obj/item/table_bell/brass, @@ -1227,6 +1217,13 @@ /obj/structure/bookcase/random/fiction, /turf/open/indestructible/boss/air, /area/ruin/unpowered/icecropolis) +"xf" = ( +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/wood/icecropolis, +/area/ruin/unpowered/icecropolis/russia) "xx" = ( /obj/structure/stone_tile/slab/cracked, /obj/structure/table/wood/fancy/red_gold, @@ -1636,6 +1633,13 @@ /obj/structure/barricade/wooden, /turf/open/indestructible/necropolis/air, /area/ruin/unpowered/icecropolis) +"EV" = ( +/obj/structure/cable/blue{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/ruin/unpowered/icecropolis/rusty) "EX" = ( /obj/structure/table/wood/reinforced, /obj/effect/spawner/lootdrop/pizzaparty, @@ -1678,6 +1682,13 @@ /obj/item/grenade/chem_grenade/cleaner, /turf/open/floor/wood/icecropolis, /area/ruin/unpowered/icecropolis/russia) +"FK" = ( +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/clothing/mask/fakemoustache/italian, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface/icecropolis/inside, +/area/ruin/unpowered/icecropolis/reach) "FN" = ( /obj/item/rcd_ammo, /turf/open/floor/plating/asteroid/basalt/lava_land_surface/icecropolis/inside, @@ -1849,23 +1860,6 @@ /obj/structure/table/reinforced, /turf/open/floor/plating, /area/ruin/unpowered/icecropolis/rusty) -"Ig" = ( -/obj/structure/stone_tile/slab, -/obj/structure/closet/cabinet{ - desc = "A wooden cabinet with an engraving stating, Things for Humanoids."; - name = "Things for Humanoids" - }, -/obj/item/stock_parts/cell/hyper/empty, -/obj/item/reagent_containers/food/drinks/bottle/cognac, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/obj/item/spacecash/bundle/c10, -/obj/item/tank/internals/emergency_oxygen/double, -/obj/item/tank/internals/plasmaman/belt, -/obj/item/toy/plush/plushvar, -/obj/item/toy/plush/among, -/turf/open/indestructible/boss/air, -/area/ruin/unpowered/icecropolis) "Ik" = ( /obj/structure/fluff/drake_statue, /obj/structure/stone_tile/slab, @@ -1884,13 +1878,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/indestructible/boss/air, /area/ruin/unpowered/icecropolis) -"Ip" = ( -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/wood/icecropolis, -/area/ruin/unpowered/icecropolis/russia) "Iq" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/dirt, @@ -2304,13 +2291,6 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/ruin/unpowered/icecropolis/outside) -"PT" = ( -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/wood/icecropolis, -/area/ruin/unpowered/icecropolis/russia) "PV" = ( /obj/item/guardiancreator/choose, /turf/open/floor/plating/asteroid/basalt/lava_land_surface/icecropolis/inside, @@ -2499,6 +2479,23 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface/icecropolis/inside, /area/ruin/unpowered/icecropolis/reach) +"Te" = ( +/obj/structure/stone_tile/slab, +/obj/structure/closet/cabinet{ + desc = "A wooden cabinet with an engraving stating, Things for Humanoids."; + name = "Things for Humanoids" + }, +/obj/item/stock_parts/cell/hyper/empty, +/obj/item/reagent_containers/food/drinks/bottle/cognac, +/obj/item/reagent_containers/food/condiment/mayonnaise, +/obj/item/reagent_containers/food/snacks/chocolatebar, +/obj/item/spacecash/bundle/c10, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/toy/plush/plushvar, +/obj/item/toy/plush/among, +/turf/open/indestructible/boss/air, +/area/ruin/unpowered/icecropolis) "Tf" = ( /obj/structure/stone_tile/slab, /turf/open/indestructible/boss/air, @@ -4050,7 +4047,7 @@ tA je je VV -Ig +Te VU VU VU @@ -5056,7 +5053,7 @@ ph tA tA zN -Ip +uL mu aM tA @@ -5174,7 +5171,7 @@ in sa Bs sa -PT +xf Ut in tA @@ -7505,7 +7502,7 @@ fE jV nE li -jE +EV Ur Od li @@ -8953,7 +8950,7 @@ nE jV fE iV -qr +FK iV Vk ge diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_oldstation.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_oldstation.dmm index 6c6f2a214b25..2fa47245eab9 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_oldstation.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_oldstation.dmm @@ -9,6 +9,34 @@ "ad" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/ancientstation/deltaai) +"ag" = ( +/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/effect/decal/cleanable/dirt, +/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/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) "ah" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/mineral/titanium{ @@ -19,17 +47,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"aj" = ( -/obj/machinery/door/airlock/command, -/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/betacorridor) "ak" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/comm) @@ -145,20 +162,20 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) -"aC" = ( -/obj/machinery/light/small{ +"aF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Storage"; dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) -"aE" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light/small{ - brightness = 3; +/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/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "aG" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation) @@ -261,22 +278,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) -"aV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/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/comm) "aW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -284,24 +285,6 @@ /obj/item/megaphone, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/comm) -"aX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/comm) "aY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -372,24 +355,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/comm) -"bj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/comm) "bk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/blue{ @@ -574,14 +539,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"bI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) "bJ" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/betacorridor) @@ -646,15 +603,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"bS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/snowdin_station_sign/up/seven, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "bT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -721,17 +669,6 @@ /obj/structure/sign/poster/official/science, /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"cd" = ( -/obj/machinery/door/airlock/command{ - name = "Beta Station Access" - }, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "ce" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -775,28 +712,6 @@ /obj/machinery/door/firedoor/closed, /turf/open/floor/plating/icemoon, /area/ruin/space/has_grav/ancientstation) -"cj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/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/betacorridor) "ck" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -847,12 +762,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"cr" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) "cs" = ( /obj/item/stack/rods, /turf/open/floor/plating/asteroid/snow/icemoon, @@ -883,22 +792,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"cy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/command{ - name = "Charlie Station Access"; - req_access_txt = "200" - }, -/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) "cz" = ( /obj/structure/window/reinforced{ dir = 8 @@ -922,48 +815,15 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"cB" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "cC" = ( /obj/item/bodypart/chest, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"cE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "cF" = ( /obj/structure/window/reinforced/spawner/west, /obj/structure/window/reinforced/spawner, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"cG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) -"cI" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "cJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -1049,23 +909,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"cW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"cX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "cY" = ( /obj/effect/decal/cleanable/robot_debris, /obj/machinery/porta_turret/syndicate/energy{ @@ -1078,24 +921,6 @@ /obj/effect/decal/cleanable/shreds, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"da" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "dc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1160,44 +985,6 @@ /mob/living/simple_animal/hostile/hivebot/rapid, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"dm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"dn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/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 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) "do" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/green{ @@ -1227,58 +1014,15 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) -"ds" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "dt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"du" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "dv" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/sec) -"dw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "dx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1310,21 +1054,6 @@ /obj/effect/gibspawner/human, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"dC" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/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) "dD" = ( /obj/effect/decal/cleanable/dirt, /obj/item/roller, @@ -1355,6 +1084,11 @@ /obj/structure/catwalk, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) +"dI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "dJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1402,18 +1136,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"dN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/snowdin_station_sign/up, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "dO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1485,18 +1207,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"dV" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/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/deltacorridor) "dW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/blue{ @@ -1574,40 +1284,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"ef" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/old, -/obj/structure/closet, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/obj/item/storage/box/survival/engineer, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "eg" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"eh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation) "ei" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1658,20 +1338,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"eo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics" - }, -/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/hydroponics) "ep" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -1797,14 +1463,6 @@ /obj/machinery/autolathe, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"eC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/rnd) "eD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/purple{ @@ -1816,13 +1474,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) -"eE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/rnd) "eF" = ( /obj/machinery/computer/rdconsole, /obj/effect/decal/cleanable/dirt, @@ -1849,20 +1500,6 @@ "eJ" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/sec) -"eK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - 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/engi) "eL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1877,20 +1514,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"eN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "eO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -1954,22 +1577,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) -"eU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "eV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -2070,28 +1677,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"fj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/turf_decal/corner/opaque/green, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) -"fl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/spawner/lootdrop/maintenance/seven, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) "fm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance_hatch, @@ -2138,29 +1723,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"fs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) -"ft" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "fu" = ( /obj/machinery/mecha_part_fabricator, /obj/effect/decal/cleanable/dirt, @@ -2176,21 +1738,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) -"fw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/rnd) -"fx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/rnd) "fy" = ( /obj/effect/decal/cleanable/oil, /turf/closed/wall/r_wall, @@ -2234,61 +1781,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"fG" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/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/engi) -"fH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"fJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"fK" = ( -/obj/machinery/door/airlock/security, -/obj/machinery/door/firedoor/closed, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "fL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red{ @@ -2367,12 +1859,6 @@ "fV" = ( /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"fW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "fX" = ( /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/mining) @@ -2389,12 +1875,6 @@ }, /turf/open/floor/plating/icemoon, /area/ruin/space/has_grav/ancientstation/betacorridor) -"fZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) "ga" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/mining) @@ -2466,22 +1946,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"gj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/green{ - 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) "gk" = ( /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) @@ -2512,24 +1976,11 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"gn" = ( -/obj/effect/spawner/structure/window/hollow/reinforced, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/engi) -"go" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +"go" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, /obj/structure/cable{ icon_state = "1-2" @@ -2560,26 +2011,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"gq" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/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/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) "gr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -2639,42 +2070,11 @@ icon_state = "platingdmg2" }, /area/ruin/space/has_grav/ancientstation/betastorage) -"gv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, -/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) "gw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plating/icemoon, /area/ruin/space/has_grav/ancientstation/betacorridor) -"gx" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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/plating, -/area/ruin/space/has_grav/ancientstation) "gy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2694,19 +2094,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"gA" = ( -/obj/effect/spawner/structure/window/hollow/reinforced, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/sec) "gB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2719,40 +2106,9 @@ /obj/effect/spawner/structure/window/hollow/reinforced, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/sec) -"gD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/alien/drone, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "gE" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) -"gF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/green, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - name = "Charlie Station Garden APC "; - pixel_y = -23; - 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, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) "gG" = ( /obj/machinery/rnd/production/protolathe, /obj/effect/decal/cleanable/dirt, @@ -2808,33 +2164,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) -"gR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/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/rnd) -"gS" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - 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) "gT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, @@ -2952,18 +2281,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"hj" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "hk" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end, /turf/open/floor/plating, @@ -2992,15 +2309,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/engi) -"hn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) "ho" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow, @@ -3066,19 +2374,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"hu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/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) "hv" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -3145,38 +2440,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"hB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/clothing/suit/armor/vest/old, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) -"hC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "hE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -3260,16 +2523,6 @@ /obj/machinery/field/generator, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"hL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/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) "hM" = ( /obj/structure/sign/departments/science, /turf/closed/wall, @@ -3281,28 +2534,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"hO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/oil, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/engi) "hP" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/welding{ @@ -3315,20 +2546,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"hQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/engi) "hR" = ( /obj/effect/spawner/structure/window/hollow/reinforced, /turf/open/floor/plating, @@ -3384,19 +2601,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"hW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "hX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red, @@ -3458,32 +2662,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"ib" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Delta Station Access" - }, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/effect/decal/cleanable/dirt, -/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/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) "ic" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -3546,30 +2724,11 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"ii" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - name = "Dining Area" +"ij" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/kitchen) -"ij" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, /obj/structure/window/reinforced{ @@ -3615,17 +2774,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"in" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/broken_bottle, -/obj/item/soap/nanotrasen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) "io" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -3667,22 +2815,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"is" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemical Storage"; - req_access_txt = "200" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) "it" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bottle/mercury{ @@ -3703,27 +2835,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"iu" = ( -/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 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "iv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 @@ -3773,44 +2884,6 @@ /obj/structure/cable, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"iy" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Bay" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/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/medbay) -"iz" = ( -/obj/effect/decal/cleanable/dirt, -/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/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/guncase/shotgun, -/obj/item/gun/ballistic/shotgun/automatic, -/obj/item/gun/ballistic/shotgun/automatic, -/obj/item/gun/ballistic/shotgun/automatic, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "iA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -3890,27 +2963,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"iH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/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) "iI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -3981,22 +3033,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"iN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light/small{ - 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) "iO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 @@ -4174,35 +3210,6 @@ /obj/machinery/recharge_station, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"jh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) -"ji" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/engi) "jj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -4320,30 +3327,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"js" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Charlie Station Access"; - req_access_txt = "200" - }, -/obj/effect/decal/cleanable/dirt, -/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/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) "jt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4375,60 +3358,9 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"jx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"jy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"jz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "jA" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/ancientstation/proto) -"jB" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/paper/fluff/ruins/oldstation, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"jC" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/gibspawner/human, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) "jD" = ( /obj/item/solar_assembly, /obj/structure/cable, @@ -4447,12 +3379,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"jH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "jI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4512,25 +3438,6 @@ /obj/item/solar_assembly, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) -"jN" = ( -/obj/machinery/door/poddoor{ - id = "proto" - }, -/obj/machinery/door/window/eastleft, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"jO" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating/icemoon, -/area/ruin/space/has_grav/ancientstation/atmo) "jP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4599,20 +3506,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/mining) -"jW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/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) "jX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -4682,26 +3575,6 @@ /obj/item/clothing/suit/space/hardsuit/ancient, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) -"ke" = ( -/obj/machinery/door/poddoor{ - id = "proto" - }, -/obj/machinery/door/window/westright, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"kf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kg" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc{ @@ -4728,27 +3601,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) -"kj" = ( +"km" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"kk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"km" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 1 +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 1 }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/ancientstation/atmo) @@ -4816,23 +3672,6 @@ /obj/structure/closet/crate/bin, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"kt" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper/fluff/ruins/oldstation/protosuit, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"ku" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "proto" - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning{ @@ -4851,15 +3690,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) -"ky" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/poddoor{ - id = "proto" - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kA" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible, /turf/open/floor/plasteel, @@ -4908,39 +3738,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"kH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access" - }, -/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/engi) -"kI" = ( -/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{ - dir = 8; - pixel_x = -25 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4977,22 +3774,6 @@ /obj/structure/sign/poster/official/work_for_a_future, /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation) -"kN" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/flashlight/glowstick, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "kO" = ( /obj/effect/turf_decal/industrial/warning{ dir = 9 @@ -5021,27 +3802,11 @@ "kQ" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/atmo) -"kR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper/fluff/ruins/oldstation/protohealth, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) -"kU" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/paper/fluff/ruins/oldstation/protogun, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ @@ -5173,9 +3938,6 @@ /obj/effect/mob_spawn/human/oldeng, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"lp" = ( -/turf/closed/mineral/snowmountain/cavern/icemoon, -/area/icemoon/underground/unexplored) "lq" = ( /obj/effect/decal/cleanable/dirt, /obj/item/pickaxe, @@ -5197,9 +3959,15 @@ "ls" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"lu" = ( +"lt" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch, +/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) "lv" = ( @@ -5222,28 +3990,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"lx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 1; - name = "Charlie Station Kitchen APC"; - pixel_y = 23; - start_charge = 0 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-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) "ly" = ( /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -5259,18 +4005,6 @@ "lA" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"lB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"lC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "lD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/highsecurity{ @@ -5342,28 +4076,6 @@ /obj/item/clothing/head/helmet/space/nasavoid/old, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"lK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/engi) -"lL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) "lM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -5375,20 +4087,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"lO" = ( -/obj/machinery/door/poddoor{ - id = "proto" - }, -/obj/machinery/door/window/eastright, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"lP" = ( -/obj/machinery/door/poddoor{ - id = "proto" - }, -/obj/machinery/door/window/westleft, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "lQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -5407,19 +4105,6 @@ /obj/item/solar_assembly, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) -"lR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "lS" = ( /obj/machinery/power/solar, /obj/structure/cable, @@ -5445,28 +4130,6 @@ }, /turf/open/floor/plating/icemoon, /area/ruin/space/has_grav/ancientstation/medbay) -"lX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) -"lY" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Station Atmospherics" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) "lZ" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/structure/cable{ @@ -5489,9 +4152,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"mc" = ( -/turf/closed/mineral/snowmountain/cavern/icemoon, -/area/ruin/space/has_grav/ancientstation) "md" = ( /obj/structure/girder, /turf/open/floor/plating/icemoon, @@ -5503,21 +4163,6 @@ /obj/structure/girder, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"mg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/mineral/snowmountain/cavern/icemoon, -/area/icemoon/underground/unexplored) -"mh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "mi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -5525,20 +4170,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"mj" = ( -/obj/machinery/door/airlock/highsecurity, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/decal/cleanable/blood/xtracks, -/obj/effect/decal/cleanable/blood/tracks, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltaai) "mk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -5570,25 +4201,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"mp" = ( -/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/brown{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/mining) "mq" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -5599,28 +4211,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"mr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"ms" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "mt" = ( /obj/effect/turf_decal/corner/opaque/brown{ dir = 4 @@ -5771,23 +4361,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/mining) -"mL" = ( -/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{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/mining) "mM" = ( /obj/machinery/door/airlock/mining/glass{ name = "Mining Equipment" @@ -5946,46 +4519,7 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"na" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -22 - }, -/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, -/area/ruin/space/has_grav/ancientstation/betacorridor) -"nb" = ( -/obj/machinery/door/airlock/command{ - name = "Beta Station Access" - }, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/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, -/area/ruin/space/has_grav/ancientstation) -"nc" = ( +"nc" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 @@ -5996,23 +4530,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"nd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Delta Station Access" - }, -/obj/machinery/door/poddoor{ - 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) "ne" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6025,17 +4542,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"nf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) "ng" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/pipedispenser/disposal/transit_tube, @@ -6048,9 +4554,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/betacorridor) -"nj" = ( -/turf/closed/mineral/snowmountain/cavern/icemoon, -/area/icemoon/underground/unexplored) "nl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -6086,57 +4589,10 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"nn" = ( -/obj/machinery/light/small, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"no" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/mining) -"np" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) -"nq" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/airless{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/ruin/space/has_grav/ancientstation/medbay) "nr" = ( /obj/item/stack/rods, /turf/template_noop, /area/template_noop) -"ns" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/old, -/obj/structure/closet, -/obj/item/storage/box/survival/engineer, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "nt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -6160,17 +4616,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"nv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Station Atmospherics" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) "nw" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6198,21 +4643,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"nz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) "nA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/trinary/mixer/airmix{ @@ -6231,31 +4661,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"nC" = ( -/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{ - dir = 8 - }, -/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{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/ruin/space/has_grav/ancientstation/medbay) "nD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/optable, @@ -6334,23 +4739,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"nM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) "nN" = ( /mob/living/simple_animal/hostile/hivebot/mechanic, /turf/open/floor/plasteel/dark, @@ -6397,18 +4785,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"nT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "nV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/science{ @@ -6427,21 +4803,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"nW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "nX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6460,20 +4821,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"oa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "ob" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6488,18 +4835,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"oc" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/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) "od" = ( /obj/item/kirbyplants{ icon_state = "plant-25" @@ -6627,14 +4962,6 @@ /mob/living/simple_animal/hostile/hivebot/strong, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"os" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "ot" = ( /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating/airless, @@ -6643,32 +4970,6 @@ /obj/machinery/droneDispenser/hivebot, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"ov" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"ow" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/machinery/sleeper, -/turf/open/floor/plasteel/airless{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/ruin/space/has_grav/ancientstation/medbay) "ox" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal{ @@ -6702,19 +5003,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"oz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "oA" = ( /obj/item/shard, /obj/effect/decal/cleanable/glass, @@ -6803,15 +5091,6 @@ /obj/effect/spawner/lootdrop/maintenance/seven, /turf/open/floor/plating/icemoon, /area/ruin/space/has_grav/ancientstation/medbay) -"oK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "oL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6870,20 +5149,6 @@ /obj/structure/cable, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"oQ" = ( -/obj/item/shard{ - icon_state = "small" - }, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating/icemoon, -/area/ruin/space/has_grav/ancientstation/betacorridor) "oR" = ( /obj/item/shard, /turf/open/floor/plating/asteroid/snow/icemoon, @@ -6901,18 +5166,6 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/icemoon, /area/ruin/space/has_grav/ancientstation/betacorridor) -"oU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/xenoblood/xgibs/up, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "oV" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/glass, @@ -6920,31 +5173,6 @@ icon_state = "platingdmg2" }, /area/ruin/space/has_grav/ancientstation/betacorridor) -"oW" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/glass, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plating/icemoon{ - icon_state = "platingdmg3" - }, -/area/ruin/space/has_grav/ancientstation/betacorridor) -"oX" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "oY" = ( /obj/item/stack/rods, /obj/structure/cable{ @@ -7116,6 +5344,27 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) +"pV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"qa" = ( +/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) +"qc" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plating/airless, +/area/ruin/space/has_grav/ancientstation/betastorage) "qf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ @@ -7139,6 +5388,16 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/mining) +"qj" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/glass, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating/icemoon{ + icon_state = "platingdmg3" + }, +/area/ruin/space/has_grav/ancientstation/betacorridor) "qk" = ( /obj/machinery/pipedispenser, /obj/effect/turf_decal/industrial/warning{ @@ -7157,18 +5416,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"qz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/ruin/space/has_grav/ancientstation/atmo) "qA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, @@ -7183,29 +5430,26 @@ }, /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/atmo) -"qG" = ( +"qJ" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/medbay) +"qR" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - name = "Dining Area" - }, -/obj/machinery/door/firedoor/border_only{ +/turf/closed/mineral/random/snow, +/area/icemoon/underground/unexplored) +"qS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Station Atmospherics"; 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 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/kitchen) -"qJ" = ( -/obj/effect/spawner/structure/window/hollow/reinforced, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/medbay) +/area/ruin/space/has_grav/ancientstation/atmo) "qZ" = ( /obj/machinery/power/solar, /obj/structure/cable{ @@ -7213,6 +5457,17 @@ }, /turf/open/floor/plating/icemoon, /area/solar/ancientstation) +"rc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) "rg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7236,18 +5491,16 @@ /obj/effect/turf_decal/snowdin_station_sign/two, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"rv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 +"rA" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) "rG" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -7258,20 +5511,84 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) +"rP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"sp" = ( +/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) "sy" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"sB" = ( +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 + }, +/obj/machinery/door/window/eastright, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) "sC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation) +"sE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/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/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) +"sN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/snowdin_station_sign/up/seven, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "sY" = ( /obj/structure/lattice, /obj/item/stack/rods, /turf/open/floor/plating/asteroid/snow/icemoon, /area/icemoon/underground/unexplored) +"te" = ( +/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/plating, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "tf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -7279,6 +5596,37 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) +"tg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"th" = ( +/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{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"tj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "tn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair, @@ -7290,18 +5638,36 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"tz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ +"to" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemical Storage"; + req_access_txt = "200"; dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) +/area/ruin/space/has_grav/ancientstation/rnd) +"tD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "tL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7317,6 +5683,13 @@ /mob/living/simple_animal/hostile/hivebot/range, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"tO" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "tS" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -7330,18 +5703,53 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) -"up" = ( -/obj/machinery/light/small{ +"tX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) +"ur" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass{ + name = "Dining Area"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/kitchen) +"ut" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"uw" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ dir = 8 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) +/area/ruin/space/has_grav/ancientstation/rnd) "uA" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -7396,8 +5804,20 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"vs" = ( -/obj/effect/decal/cleanable/dirt, +"uZ" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/airless{ + initial_gas_mix = "ICEMOON_ATMOS" + }, +/area/ruin/space/has_grav/ancientstation/medbay) +"vs" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" }, @@ -7424,33 +5844,60 @@ /obj/effect/turf_decal/snowdin_station_sign/up/five, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"vK" = ( +"vB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/o2, +/area/ruin/space/has_grav/ancientstation/atmo) +"vC" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only/closed, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) -"vM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 }, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access" +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"vD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/corner/opaque/green{ + dir = 1 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/corner/opaque/green{ 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) +"vK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only/closed, /obj/machinery/door/firedoor/border_only{ - dir = 4 + dir = 1 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/engi) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/betacorridor) +"vU" = ( +/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) "vX" = ( /obj/structure/closet/crate/engineering{ name = "camera assembly crate" @@ -7483,6 +5930,21 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) +"wd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/clothing/suit/armor/vest/old, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"we" = ( +/turf/closed/mineral/random/snow, +/area/ruin/space/has_grav/ancientstation) "wf" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -7505,6 +5967,34 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"wG" = ( +/obj/machinery/door/airlock/security{ + dir = 4 + }, +/obj/machinery/door/firedoor/closed, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"wK" = ( +/obj/machinery/door/airlock/command{ + 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/betacorridor) "wL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -7512,6 +6002,44 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) +"wM" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/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/engi) +"wY" = ( +/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) +"wZ" = ( +/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/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) "xh" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -7544,63 +6072,95 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"xP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) -"yk" = ( +"xv" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation) -"yo" = ( +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/snowdin_station_sign/five, /turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"xT" = ( +/turf/closed/mineral/random/snow, +/area/icemoon/underground/unexplored) +"xY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/rnd) +"yb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/structure/table, +/obj/item/toy/seashell, +/obj/item/toy/seashell, +/obj/item/toy/seashell, +/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation) -"yu" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering" +"yd" = ( +/obj/machinery/door/airlock/command{ + name = "Beta Station Access"; + dir = 4 }, /obj/machinery/door/poddoor{ - id = "ancient" + id = "ancient"; + dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/engi) +/area/ruin/space/has_grav/ancientstation) +"yk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation) +"yo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/snowdin_station_sign/five, +/turf/open/floor/plasteel, +/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) -"yy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics" +"yC" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/ancientstation/deltaai) +"yE" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/broken/directional/west, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/sleeper, +/turf/open/floor/plasteel/airless{ + initial_gas_mix = "ICEMOON_ATMOS" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) +/area/ruin/space/has_grav/ancientstation/medbay) +"yG" = ( +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/ancientstation/deltaai) "yJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7615,6 +6175,40 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"yM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"yV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"zl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/kitchen) "zm" = ( /obj/machinery/door/window/brigdoor{ dir = 8; @@ -7639,6 +6233,23 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) +"zv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/betacorridor) +"zw" = ( +/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_switch{ + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/engi) "zB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7676,15 +6287,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"Aa" = ( +"zM" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"zY" = ( +/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) +"Aa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "Ab" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -7693,6 +6324,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/visible, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) +"Ad" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "Af" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ @@ -7727,6 +6368,75 @@ "AK" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/medbay) +"AM" = ( +/obj/machinery/door/airlock/science{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/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) +"AP" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating/airless, +/area/ruin/space/has_grav/ancientstation/betastorage) +"AR" = ( +/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) +"Ba" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/ancientstation/deltaai) +"Bc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine/n2, +/area/ruin/space/has_grav/ancientstation/atmo) +"Bf" = ( +/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/plating, +/area/ruin/space/has_grav/ancientstation) "Bh" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -7737,10 +6447,83 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) +"Bi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"Bj" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/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{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltaai) +"Bn" = ( +/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 = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"Bp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "Bs" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/engine/o2, /area/ruin/space/has_grav/ancientstation/atmo) +"BA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) +"BU" = ( +/obj/machinery/door/airlock/science{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/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/deltacorridor) "BX" = ( /obj/effect/decal/cleanable/glass, /obj/machinery/door/firedoor, @@ -7795,6 +6578,48 @@ /obj/structure/grille/broken, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) +"CH" = ( +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"CM" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/ancientstation/deltaai) +"CW" = ( +/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) +"CY" = ( +/obj/machinery/door/airlock/science{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "CZ" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -7805,6 +6630,20 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) +"Df" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/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/comm) "Dg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7829,6 +6668,17 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) +"Ds" = ( +/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/east, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) "Dw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7852,9 +6702,28 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"DF" = ( -/obj/machinery/door/airlock/maintenance_hatch, +"DJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) +"DN" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -7862,17 +6731,16 @@ dir = 4 }, /turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"DJ" = ( +/area/ruin/space/has_grav/ancientstation/engi) +"DR" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) +/area/ruin/space/has_grav/ancientstation/deltacorridor) "DS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/secure/engineering{ @@ -7895,10 +6763,17 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"EP" = ( +"DW" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +/obj/machinery/power/apc{ + dir = 1; + name = "Charlie Station Kitchen APC"; + pixel_y = 23; + start_charge = 0 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + icon_state = "0-8" }, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -7908,14 +6783,164 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"EV" = ( -/obj/effect/turf_decal/industrial/warning{ +"Ee" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-25" + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/east, +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"Eq" = ( +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/comm) +"ED" = ( +/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{ + 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) +"EI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/ancientstation/betastorage) +"EJ" = ( +/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 = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"EL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/rnd) +"EP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + 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) +"EV" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"EW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass{ + name = "Dining Area"; + dir = 4 + }, +/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) +"Fa" = ( +/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 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) -"Fl" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/mining) +"Fd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/corner/opaque/green, +/obj/effect/turf_decal/corner/opaque/green{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "Charlie Station Garden APC "; + pixel_y = -23; + 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, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"Fl" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/item/stack/sheet/mineral/uranium{ @@ -7923,6 +6948,15 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"Fr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "FH" = ( /obj/structure/window/reinforced{ dir = 4 @@ -7937,9 +6971,96 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/ancientstation/atmo) -"FV" = ( -/turf/closed/mineral/snowmountain/cavern/icemoon, -/area/ruin/space/has_grav/ancientstation/betacorridor) +"FK" = ( +/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/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"FU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Gj" = ( +/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) +"Gk" = ( +/obj/machinery/door/airlock/science{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only/closed{ + dir = 8; + icon_state = "door_closed" + }, +/obj/machinery/door/firedoor/border_only/closed{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Go" = ( +/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) +"Gp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/backpack/old, +/obj/structure/closet, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/item/storage/box/survival/engineer, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "Gq" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -7965,11 +7086,35 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"GD" = ( +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 + }, +/obj/machinery/door/window/eastleft, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) +"GF" = ( +/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) "GG" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"GI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/snowdin_station_sign/up, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "GP" = ( /obj/machinery/pipedispenser/disposal, /obj/effect/turf_decal/industrial/warning/corner{ @@ -7988,12 +7133,41 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) -"GU" = ( -/turf/closed/wall, -/area/ruin/space/has_grav/ancientstation/betastorage) "Hn" = ( /turf/open/floor/engine/o2, /area/ruin/space/has_grav/ancientstation/atmo) +"Hx" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/atmo) +"Hy" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Hz" = ( +/obj/machinery/door/airlock/science{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "HA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -8002,6 +7176,37 @@ /obj/effect/turf_decal/corner/opaque/yellow, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) +"HB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/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/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) +"HO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/backpack/old, +/obj/structure/closet, +/obj/item/storage/box/survival/engineer, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "HQ" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -8021,6 +7226,37 @@ /obj/effect/turf_decal/snowdin_station_sign, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"Ij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation) +"Io" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"Iq" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "It" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink{ @@ -8033,16 +7269,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation) -"Iw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "Iy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8059,7 +7285,17 @@ icon_state = "2-8" }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) +/area/ruin/space/has_grav/ancientstation/betacorridor) +"IH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "IM" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, @@ -8073,6 +7309,33 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"IS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/engi) +"IT" = ( +/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/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) "IV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8101,6 +7364,14 @@ /obj/effect/mob_spawn/human/oldcap, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"Jy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) "JG" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -8108,6 +7379,34 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) +"JI" = ( +/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) +"JL" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/sec) +"JM" = ( +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 + }, +/obj/machinery/door/window/westleft, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) "JT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8115,40 +7414,30 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"Ka" = ( +"Ko" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/xenoblood/xgibs/up, +/obj/structure/cable{ + icon_state = "1-2" }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Ks" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) +/area/ruin/space/has_grav/ancientstation/deltacorridor) "Ky" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"KF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/engine/n2, -/area/ruin/space/has_grav/ancientstation/atmo) -"KG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/paper/fluff/ruins/oldstation/protosing{ - info = "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) +"Kz" = ( +/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) "KM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/snowdin_station_sign/up/six, @@ -8167,28 +7456,28 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) -"Le" = ( -/obj/machinery/door/airlock/science, +"KZ" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 +/obj/machinery/airalarm/directional/west, +/obj/machinery/light_switch{ + pixel_y = 26 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"Lb" = ( +/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/machinery/door/firedoor/border_only/closed{ - dir = 8; - icon_state = "door_closed" - }, -/obj/machinery/door/firedoor/border_only/closed{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/rnd) "Lh" = ( /obj/structure/window/reinforced, /turf/open/floor/engine/o2, @@ -8204,6 +7493,31 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) +"Lq" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Bay"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/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/medbay) +"LE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/rnd) "LI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -8211,14 +7525,30 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/engi) -"LO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 +"LJ" = ( +/obj/machinery/door/airlock/command{ + name = "Beta Station Access"; + dir = 4 }, -/obj/machinery/light{ - dir = 8 +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"LS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"LW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -8226,17 +7556,54 @@ /obj/effect/turf_decal/corner/opaque/yellow{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2{ - dir = 5 - }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) +/area/ruin/space/has_grav/ancientstation/engi) +"LX" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/engi) "LY" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ dir = 8 }, /turf/open/floor/plating/icemoon, /area/ruin/space/has_grav/ancientstation/atmo) +"Mh" = ( +/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/rnd) +"Mi" = ( +/obj/machinery/door/airlock/science{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/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) "Mt" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end, /turf/open/floor/plating, @@ -8246,6 +7613,37 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) +"Mx" = ( +/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/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/engi) +"My" = ( +/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 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) "MC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8277,18 +7675,37 @@ /obj/item/clothing/head/helmet/old, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"MS" = ( +"ML" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/kitchen) +"MO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" +/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 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) +/area/ruin/space/has_grav/ancientstation/kitchen) "MZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8341,23 +7758,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/structure/cable{ icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"NK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table, -/obj/item/toy/seashell, -/obj/item/toy/seashell, -/obj/item/toy/seashell, -/turf/open/floor/plasteel/white, + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"NH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/obj/machinery/space_heater, +/turf/open/floor/plating/airless, +/area/ruin/space/has_grav/ancientstation/betastorage) "NQ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -8372,6 +7784,16 @@ }, /turf/open/floor/engine/o2, /area/ruin/space/has_grav/ancientstation/atmo) +"NU" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "Oe" = ( /obj/item/solar_assembly, /obj/structure/cable{ @@ -8379,15 +7801,15 @@ }, /turf/open/floor/plating/icemoon, /area/solar/ancientstation) -"On" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 26 +"Oq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/layer4{ + dir = 8 }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "OA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -8402,6 +7824,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation) +"OM" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Station Atmospherics"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) "OP" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -8424,6 +7858,11 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) +"OY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/rnd) "Pd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8447,6 +7886,21 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) +"Pg" = ( +/obj/machinery/door/airlock/security{ + dir = 4 + }, +/obj/machinery/door/firedoor/closed, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) "Pn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red{ @@ -8482,18 +7936,21 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"PC" = ( -/obj/machinery/door/airlock/security, -/obj/machinery/door/firedoor/closed, -/obj/machinery/door/poddoor{ - id = "ancient" - }, +"Pz" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"PE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) +/area/ruin/space/has_grav/ancientstation/betacorridor) "PL" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -8501,6 +7958,29 @@ }, /turf/open/floor/plating/asteroid/snow/icemoon, /area/solar/ancientstation) +"PT" = ( +/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, +/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{ + initial_gas_mix = "ICEMOON_ATMOS" + }, +/area/ruin/space/has_grav/ancientstation/medbay) "PV" = ( /obj/item/kirbyplants{ icon_state = "plant-25" @@ -8528,6 +8008,40 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation) +"Qs" = ( +/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) +"Qt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) +"QI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/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, +/area/ruin/space/has_grav/ancientstation/betacorridor) "QQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8567,6 +8081,11 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) +"Rd" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/ancientstation/deltaai) "Re" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8619,12 +8138,24 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) +"RS" = ( +/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) "RX" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/fans/tiny, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/mining) +"Sd" = ( +/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) "Se" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8637,14 +8168,179 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"Su" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/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) +"SC" = ( +/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) +"SG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/corner/opaque/green, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"SI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) +"SN" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall, +/area/ruin/space/has_grav/ancientstation) +"SP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + name = "dusty mirror"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation) +"ST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Td" = ( +/obj/item/stack/rods, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/snow/icemoon, +/area/icemoon/underground/unexplored) +"Tf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/snowdin_station_sign/three, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"Tg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/comm) +"Tk" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/atmo) +"To" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 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/engi) +"Ts" = ( +/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) +"Tw" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating/asteroid/snow/icemoon, +/area/solar/ancientstation) +"TA" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"Su" = ( +"TL" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_y = 26 +/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/warning{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"TO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/alien/drone, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"TS" = ( +/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 @@ -8654,42 +8350,42 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"SI" = ( +"TV" = ( +/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, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"SN" = ( -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/closed/wall, -/area/ruin/space/has_grav/ancientstation) -"SP" = ( +"TW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/mirror{ - name = "dusty mirror"; - pixel_x = -26 +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation) -"ST" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, +/obj/machinery/airalarm/directional/west, +/obj/structure/guncase/shotgun, +/obj/item/gun/ballistic/shotgun/automatic, +/obj/item/gun/ballistic/shotgun/automatic, +/obj/item/gun/ballistic/shotgun/automatic, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"Td" = ( -/obj/item/stack/rods, -/obj/structure/lattice, -/turf/open/floor/plating/asteroid/snow/icemoon, -/area/icemoon/underground/unexplored) -"Tf" = ( +/area/ruin/space/has_grav/ancientstation/sec) +"Ub" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/betacorridor) +"Uf" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/command{ + name = "Charlie Station Access"; + req_access_txt = "200"; + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 @@ -8697,34 +8393,17 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/snowdin_station_sign/three, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"Tk" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/atmo) -"Tw" = ( -/obj/structure/catwalk, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "4-8" }, -/turf/open/floor/plating/asteroid/snow/icemoon, -/area/solar/ancientstation) -"TL" = ( -/obj/effect/decal/cleanable/dirt, -/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/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) +/area/ruin/space/has_grav/ancientstation/deltacorridor) "Ug" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning{ @@ -8735,20 +8414,54 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) +"Ul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Ur" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/mining) +"Us" = ( +/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) "UC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/snowdin_station_sign/six, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"UE" = ( -/obj/effect/decal/cleanable/dirt, +"UH" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 +/obj/effect/turf_decal/corner/opaque/green{ + dir = 8 }, +/obj/structure/closet/crate/bin, +/obj/machinery/airalarm/directional/south, +/obj/effect/spawner/lootdrop/maintenance/seven, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) +/area/ruin/space/has_grav/ancientstation/hydroponics) +"UT" = ( +/obj/machinery/light/directional/east, +/obj/structure/table/reinforced, +/obj/item/paper/fluff/ruins/oldstation/protosing{ + info = "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, @@ -8764,23 +8477,20 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) +"UZ" = ( +/turf/closed/mineral/random/snow, +/area/ruin/space/has_grav/ancientstation/betacorridor) "Ve" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"Vm" = ( -/obj/machinery/portable_atmospherics/canister/toxins, +"VC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/atmo) +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "VE" = ( /obj/item/stack/rods, /obj/item/shard{ @@ -8793,8 +8503,10 @@ icon_state = "platingdmg3" }, /area/icemoon/underground/unexplored) -"VY" = ( -/obj/machinery/door/airlock/science, +"Wi" = ( +/obj/machinery/door/airlock/science{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/border_only/closed{ @@ -8806,6 +8518,13 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"Wm" = ( +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/obj/effect/gibspawner/human, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/ancientstation/deltaai) "Wn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8824,13 +8543,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"Ws" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) "WA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8846,9 +8558,6 @@ /obj/structure/grille, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) -"WI" = ( -/turf/closed/mineral/snowmountain/cavern/icemoon, -/area/ruin/space/has_grav/ancientstation/atmo) "WJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8857,6 +8566,32 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"WK" = ( +/obj/machinery/light/small/directional/east, +/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) +"WP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/obj/effect/decal/cleanable/oil, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/engi) "WT" = ( /obj/structure/window/reinforced{ dir = 8 @@ -8883,6 +8618,20 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"Xb" = ( +/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, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "Xh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8899,6 +8648,22 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) +"Xy" = ( +/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/brown{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/mining) "XJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -8981,6 +8746,15 @@ icon_state = "platingdmg1" }, /area/ruin/space/has_grav/ancientstation/betastorage) +"YX" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "Ze" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine/n2, @@ -9010,6 +8784,43 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"ZF" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/machinery/light/broken/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/icemoon, +/area/ruin/space/has_grav/ancientstation/betacorridor) +"ZQ" = ( +/obj/machinery/light/small/broken/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating/icemoon, +/area/ruin/space/has_grav/ancientstation/atmo) +"ZV" = ( +/turf/closed/mineral/random/snow, +/area/ruin/space/has_grav/ancientstation/atmo) +"ZY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) (1,1,1) = {" aa @@ -9040,8 +8851,8 @@ aa aa aa aa -lp -lp +xT +xT lg gY kQ @@ -9072,8 +8883,8 @@ aa aa lg ab -lp -lp +xT +xT Td lg dF @@ -9087,11 +8898,11 @@ AK lg lg aa -lp -lp -lp -lp -WI +xT +xT +xT +xT +ZV kQ kQ DT @@ -9120,34 +8931,34 @@ aa aa aa lg -lp -lp -lp +xT +xT +xT me nQ gO AK -ow -nq +yE +uZ oA oE -nC +PT AK lg lg -lp -lp -lp -lp -lp -WI +xT +xT +xT +xT +xT +ZV nl nt kK Ln ny -nz -LO +yM +vC nB nK EV @@ -9169,9 +8980,9 @@ aa aa aa lg -lp -lp -mg +xT +xT +qR ch bH hJ @@ -9184,15 +8995,15 @@ oJ lW sY dF -nj -nj -nj -nj -nj -WI +xT +xT +xT +xT +xT +ZV nm nu -jh +Io jY Ab nA @@ -9203,7 +9014,7 @@ ng kQ cs ab -lg +xT aa aa "} @@ -9218,11 +9029,11 @@ aa aa aa gY -FV +UZ md ch ch -bI +Sd je AK mu @@ -9236,11 +9047,11 @@ lg dF lg lg -lp -lp -WI -lY -nv +xT +xT +ZV +OM +qS mH mH kX @@ -9251,8 +9062,8 @@ pp kQ kQ lg -lp -lp +xT +xT aa aa "} @@ -9276,7 +9087,7 @@ mY AK dj qJ -iy +Lq qJ AK OQ @@ -9285,10 +9096,10 @@ ch ch ch WD -FV -FV +UZ +UZ kQ -jO +ZQ nw gf mH @@ -9298,11 +9109,11 @@ Dp Wp lf kQ -lp -lp -lp -lp -lp +xT +xT +xT +xT +xT aa "} (7,1,1) = {" @@ -9332,7 +9143,7 @@ uP oM qA qA -oQ +ZF oS oV oY @@ -9341,17 +9152,17 @@ pc nx pf kQ -qz +vB NQ zm WT -KF +Bc kQ -lp -lp -lp -lp -lp +xT +xT +xT +xT +xT aa "} (8,1,1) = {" @@ -9365,14 +9176,14 @@ aa aa aa aa -FV -FV -FV +UZ +UZ +UZ ch zJ mV -UE -nf +sp +PE zJ zJ vK @@ -9383,7 +9194,7 @@ oO me me oT -oW +qj oZ pa pd @@ -9397,9 +9208,9 @@ pv uT kQ lg -lp -lp -lp +xT +xT +xT aa aa "} @@ -9413,23 +9224,23 @@ aa aa aa aa -lp -lp -lp -lp +xT +xT +xT +xT ch -aj -cj +wK +sE ch -GU -GU -GU -GU -GU -GU -lX -GU -GU +bG +bG +bG +bG +bG +bG +EI +bG +bG md nH ch @@ -9441,13 +9252,13 @@ kQ kQ Bs Lh -Vm +Hx pv Ze kQ cs lg -lp +xT aa nr aa @@ -9463,9 +9274,9 @@ aa aa aa aa -lp -lp -lp +xT +xT +xT ch zJ ck @@ -9475,7 +9286,7 @@ Ky ot gu gU -hn +NH jk oP Cs @@ -9513,7 +9324,7 @@ aa aa aa aa -nj +xT lg ch zJ @@ -9527,7 +9338,7 @@ YN YN nE nG -GU +bG lg lg dF @@ -9570,13 +9381,13 @@ mV ch fA KO -fZ +AP gd oC YA -On +qc nF -GU +bG dF dF bf @@ -9614,18 +9425,18 @@ dF lg lg ch -np +zv mV ch -GU +bG mf -GU -GU +bG +bG br bG -GU -GU -GU +bG +bG +bG lg lg dF @@ -9663,7 +9474,7 @@ dF lg lg ch -cr +Ub dM ch aa @@ -9855,8 +9666,8 @@ aa aa gb jV -mp -mL +Xy +Fa mN ga mW @@ -10052,7 +9863,7 @@ dK gg qh mJ -no +Ur mT mF zJ @@ -10154,7 +9965,7 @@ mE mK ga zJ -na +QI ch aa aa @@ -10162,7 +9973,7 @@ aa aa aa fB -vM +DN fB lg lg @@ -10300,7 +10111,7 @@ lg lg lg ch -np +zv mV ch aa @@ -10309,7 +10120,7 @@ eI eI fb fD -kH +ED gV hk eI @@ -10355,13 +10166,13 @@ ch aa eI bv -eK +LW fc Wn zB YM hl -hO +WP id eI lg @@ -10465,7 +10276,7 @@ em hv eI iU -ji +Ts gH eI lg @@ -10551,13 +10362,13 @@ ch lJ ju en -eN -lK +zw +IS el kJ WA ho -hQ +Mx ig nI ix @@ -10594,17 +10405,17 @@ aT aG aG aG -cd -nb +LJ +yd aT eI eI eI eI eI -fG -gn -yu +wM +LX +To gX eI eI @@ -10646,9 +10457,9 @@ aG bQ ia cO -dm +SC IN -rv +Fr eO fg Pd @@ -10657,8 +10468,8 @@ zH hq eO ih -rv -dm +Fr +SC cO MZ NE @@ -10700,9 +10511,9 @@ UV UV eP fh -fH +tg gp -tz +Bi qy UV UV @@ -10722,7 +10533,7 @@ lg lg lg lg -lp +xT aa aa "} @@ -10746,15 +10557,15 @@ jo ey ey dP -eo +Bn dP ey ey -gq +HB gI gI hR -ii +ur hR gI gI @@ -10770,9 +10581,9 @@ aT aT lg lg -lp -lp -lp +xT +xT +xT aa "} (37,1,1) = {" @@ -10785,19 +10596,19 @@ as as dW aP -aV +Df aP -bj +Tg ak ak hd jn ey -dn +Ee dQ dQ eQ -gj +vD ey gr gI @@ -10805,23 +10616,23 @@ hr ht ht ht -iH +ML gI jn uC aT aT -ef +Gp gZ -kN +Xb kD mz aT aG lg -lp -lp -lp +xT +xT +xT aa "} (38,1,1) = {" @@ -10839,7 +10650,7 @@ ba bk bs by -dN +GI HT cR do @@ -10857,21 +10668,21 @@ tn iI iY jo -lC +dI aT -lR +KZ bN bN bN pi pk -ns +HO aG -lp -lp -lp -lp -lp +xT +xT +xT +xT +xT "} (39,1,1) = {" aa @@ -10899,7 +10710,7 @@ dp ey gr gI -hu +zl ht EP ly @@ -10915,12 +10726,12 @@ kO bN lr pm -mc -lp -lp -lp -lp -lp +we +xT +xT +xT +xT +xT "} (40,1,1) = {" aa @@ -10944,7 +10755,7 @@ dp gE ep eR -fj +SG ey gr gI @@ -10963,12 +10774,12 @@ bN bN bN pl -mc -mc -lp -lp -lp -lp +we +we +xT +xT +xT +xT aa "} (41,1,1) = {" @@ -11013,11 +10824,11 @@ kP bT kp pj -mc -lp -lp -lp -lp +we +xT +xT +xT +xT aa "} (42,1,1) = {" @@ -11042,11 +10853,11 @@ dp gE er jX -fl +UH ey aU gI -gv +TS hV pM ht @@ -11063,9 +10874,9 @@ pj bN po aT -lp -lp -lp +xT +xT +xT aa aa "} @@ -11095,7 +10906,7 @@ dp ey aU gI -lx +DW ht MG ht @@ -11113,7 +10924,7 @@ kp pk bL aa -lp +xT aa aa aa @@ -11133,7 +10944,7 @@ aQ bm bM aS -bS +sN fQ cT dr @@ -11151,7 +10962,7 @@ tn iM ja jo -jH +Us aT ph bN @@ -11159,7 +10970,7 @@ bN bN bN bN -ns +HO aG aa aa @@ -11177,7 +10988,7 @@ as as fP aR -aX +Eq aR bn ak @@ -11185,11 +10996,11 @@ ak bR bR ey -ds +AR dR dQ eS -gF +Fd ey aU gI @@ -11197,7 +11008,7 @@ hy ly ly ly -iN +MO gI QT bU @@ -11205,7 +11016,7 @@ aT aT ks bN -jB +Qs kF jP aG @@ -11236,15 +11047,15 @@ cq ey cQ dP -yy +Gj dP ey ey -gx +Bf gI gI hR -qG +EW hR gI gI @@ -11274,11 +11085,11 @@ aa aa aa aT -NK +yb OC sC SP -eh +Ij Ql cq cq @@ -11288,15 +11099,15 @@ dt dt dt fn -fJ +TA gy -up +NU iC mb mb ml UV -up +NU hN cq kY @@ -11332,19 +11143,19 @@ aG PV bN cV -du +wY bN -Ka +rP bN WX Sn xr Af jv -mh +ut gW IN -hj +Iq hp Nn bW @@ -11379,23 +11190,23 @@ aT aT aT bX -nd +IT bX eJ eJ eJ dv fp -fK -gA -PC +wG +JL +Pg eJ eJ eJ eJ eJ hM -ib +ag hM aT aT @@ -11425,25 +11236,25 @@ dF lg lg lg -lp -mc -mc +xT +we +we bN -cW +Go eJ dS et -eU +EJ et fL gB ha Pn -hW +CH hz -iz +TW eJ -cW +Go yJ bN aT @@ -11473,10 +11284,10 @@ aa dF lg lg -lp -lp -mc -mc +xT +xT +we +we bN bN eJ @@ -11522,10 +11333,10 @@ dF lg cs gY -lp -lp -mc -mc +xT +xT +we +we ci bL eJ @@ -11572,9 +11383,9 @@ lg dF lg aa -lp -lp -lp +xT +xT +xT ff lg eJ @@ -11616,13 +11427,13 @@ aa aa aa aa -lp -lp +xT +xT aa aa aa -lp -lp +xT +xT lg lg lg @@ -11630,11 +11441,11 @@ lg eJ ex eV -fs +wZ fO fO MI -hB +wd hX im eJ @@ -11664,10 +11475,10 @@ aa aa aa aa -lp -lp -lp -lp +xT +xT +xT +xT aa aa aa @@ -11713,10 +11524,10 @@ aa aa aa aa -lp -lp -lp -lp +xT +xT +xT +xT aa aa aa @@ -11748,7 +11559,7 @@ dF lg lg lg -lp +xT lg lg aa @@ -11762,9 +11573,9 @@ aa aa aa aa -lp -lp -lp +xT +xT +xT aa aa aa @@ -11796,10 +11607,10 @@ dF bf lg lg -lp -lp -lp -lp +xT +xT +xT +xT aa aa aa @@ -11823,8 +11634,8 @@ lg lI lg lg -lp -lp +xT +xT lg lg dF @@ -11845,12 +11656,12 @@ lg dF lg lg -lp -lp -lp -lp -lp -lp +xT +xT +xT +xT +xT +xT aa "} (59,1,1) = {" @@ -11872,9 +11683,9 @@ lg QV lg lg -lp -lp -lp +xT +xT +xT lg dF bf @@ -11895,11 +11706,11 @@ dF lg lg lg -lp -lp -lp -lp -lp +xT +xT +xT +xT +xT aa "} (60,1,1) = {" @@ -11922,8 +11733,8 @@ cv bY bE aa -lp -lp +xT +xT bE bE bY @@ -11944,11 +11755,11 @@ dF lg lg lg -lp -lp -lp -lp -lp +xT +xT +xT +xT +xT aa "} (61,1,1) = {" @@ -11971,12 +11782,12 @@ ca lq bE aa -lp +xT aa bD he nR -nn +Hy bE lg dF @@ -11994,10 +11805,10 @@ lg lg lg lg -lp -lp -lp -lp +xT +xT +xT +xT aa "} (62,1,1) = {" @@ -12017,7 +11828,7 @@ lg bE Re cx -cX +VC bE aa aa @@ -12031,7 +11842,7 @@ lg dF lg bD -lB +Ks jr lw bE @@ -12065,7 +11876,7 @@ lg lg bE ct -cy +FK cb bE bE @@ -12073,7 +11884,7 @@ bD bD bD bD -lu +tj bE bE bE @@ -12081,7 +11892,7 @@ bE bE bE cb -js +Uf cb bD lg @@ -12116,19 +11927,19 @@ lg bE om Yc -dw -oz -MS +ZY +Bp +Ul nO -ft +DR Dg tL GA -hC +tD mi -oU -oX -dw +Ko +YX +ZY GA As jJ @@ -12212,8 +12023,8 @@ ad lg lg bE -dC -oc +AM +Mi eY eY eY @@ -12228,8 +12039,8 @@ dy eY dy dy -da -cB +CY +Hz jA jA jA @@ -12265,15 +12076,15 @@ dG ca eY di -eE -fx +xY +LE dZ -gR +Mh eb hf zG hY -in +TV iD iP eY @@ -12281,9 +12092,9 @@ ST dG jA kd -kt +JI jA -kR +CW kZ jA aa @@ -12300,11 +12111,11 @@ aa ad gk nN -aC +yC gk gk gk -cG +Rd cZ cZ ad @@ -12329,11 +12140,11 @@ eY mq vs jA -jN -ku +GD +rA jA -ku -lO +rA +sB jA dF lg @@ -12360,7 +12171,7 @@ ad df bE dG -ov +LS eY ec fa @@ -12375,12 +12186,12 @@ jL ls mn dy -mr +yV dG jA -kf +rc kv -kI +Ds kv kv jA @@ -12431,7 +12242,7 @@ kg lF tf lF -cE +RS jA dF lg @@ -12447,14 +12258,14 @@ aa ad dl gk -aC +yC gk gk ge -hL +WK lZ lZ -mj +Bj nL nV oo @@ -12517,7 +12328,7 @@ oh oh ol hi -lL +Jy ir lT hi @@ -12545,11 +12356,11 @@ aa ad ah gk -Ws +yG dB gk gk -jC +Wm gk gk ad @@ -12567,18 +12378,18 @@ eB eY eY eY -is +to dy dy dy ST ca jA -kj +tX lF Pu kw -cE +RS jA dF aa @@ -12605,7 +12416,7 @@ ad aa bE ca -fW +xv dy dZ fu @@ -12617,13 +12428,13 @@ dy hF lM OA -nM +uw iQ eY -oa -ms +zM +Pz jA -kk +zY lG bV kx @@ -12672,11 +12483,11 @@ dy IV ca jA -ke -ky +qa +BA jA -ky -lP +Qt +JM jA dF aa @@ -12706,15 +12517,15 @@ ca ca dy eD -fw -eC +EL +OY dZ -jW +Lb eb dy hH hZ -iu +My iG iS dy @@ -12722,9 +12533,9 @@ Yr ca jA mm -KG +UT jA -kU +GF lc jA lg @@ -12751,8 +12562,8 @@ dl ad aa bE -dV -dV +BU +th dy eY dy @@ -12767,8 +12578,8 @@ dy dy dy eY -Le -VY +Gk +Wi jA jA jA @@ -12790,11 +12601,11 @@ aa ad gk gk -aC +yC gk gk gk -xP +CM gk dB ad @@ -12851,19 +12662,19 @@ aa bE ca ca -jx -jy -gD +Oq +pV +TO nP -oK +FU DB lw lw -nT +Ad lA Se -Iw -nW +vU +IH nY Yh od @@ -12888,17 +12699,17 @@ aa aa ad ar -aE +Ba aH gk gk -Ws +yG vX ad aa bE bE -DF +te bD bD bE @@ -12906,7 +12717,7 @@ bE bD bD bD -gS +aF bE bE bE @@ -12914,7 +12725,7 @@ bE bE bE bD -cI +tO bE bE lg @@ -12996,7 +12807,7 @@ aa aa bE he -os +Kz jf AF ZB @@ -13012,7 +12823,7 @@ wj wj bE jg -jz +lt yx bE dF diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_slimelab.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_slimelab.dmm index b059795fca93..701404ed3bac 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_slimelab.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_slimelab.dmm @@ -3,6 +3,14 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/powered/slimelab/lava) +"ai" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/machinery/light/broken/directional/east, +/obj/structure/spacevine{ + pixel_x = 32 + }, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/lab) "aj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -14,19 +22,11 @@ "al" = ( /turf/open/floor/plating/asteroid/iceberg, /area/ruin/unpowered) -"aw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) +"an" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/spacevine, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/slimelab/lab) "aF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -45,6 +45,23 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) +"aR" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light/broken/directional/west, +/obj/structure/spacevine/dense{ + pixel_x = -32 + }, +/obj/structure/spacevine, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/lab) +"aZ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "be" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/powered/slimelab/cafe) @@ -95,38 +112,21 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/ruin/powered/slimelab) -"bG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "bS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/powered/slimelab/slimedome) -"bW" = ( -/obj/structure/table, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 1 +"cb" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/lava) -"bY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/departments/engineering{ + pixel_x = -32; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/ruin/powered/slimelab/slimedome) +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "cc" = ( /obj/machinery/disposal/deliveryChute{ dir = 4; @@ -141,40 +141,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"cf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood/end, -/obj/structure/disposalpipe/segment, -/obj/structure/spacevine{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/slimelab/lab) -"ck" = ( -/obj/effect/turf_decal/corner/opaque/purple/diagonal, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/lab) -"cm" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = 29; - pixel_y = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "cq" = ( /obj/structure/flora/ausbushes/fernybush, /turf/open/floor/plating/grass/jungle, @@ -237,7 +203,8 @@ "df" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics"; - req_access_txt = "200" + req_access_txt = "200"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -284,16 +251,6 @@ }, /turf/open/floor/wood, /area/ruin/powered/slimelab/cafe) -"dE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/powered/slimelab/lava) "dG" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -304,6 +261,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/ruin/powered/slimelab) +"dH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/spacevine{ + pixel_y = -32 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/lab) "dK" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -331,6 +296,11 @@ /obj/structure/spacevine, /turf/open/floor/plating/dirt/jungle, /area/ruin/powered/slimelab/lab) +"dZ" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "ea" = ( /obj/structure/window/reinforced{ dir = 1 @@ -352,7 +322,8 @@ /area/ruin/powered/slimelab/lab) "eg" = ( /obj/machinery/door/airlock{ - name = "Janitor's Closet" + name = "Janitor's Closet"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -371,6 +342,16 @@ /obj/structure/spacevine, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/lab) +"ek" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/corner/opaque/purple/diagonal, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/machinery/light/small/broken/directional/west, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/lab) "em" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood/corner{ @@ -383,6 +364,43 @@ /obj/structure/spacevine, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/lab) +"er" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/corner/opaque/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/lab) +"et" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/button/door{ + dir = 8; + id = "iusmine"; + name = "Mining Exit"; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "iusmine"; + pixel_x = 25; + pixel_y = -5 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "ey" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -393,22 +411,17 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"eE" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/purple/diagonal, -/obj/item/clothing/glasses/science/prescription{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/storage/box/syringes{ - pixel_x = 9; - pixel_y = 6 +"eA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/obj/item/reagent_containers/dropper{ - pixel_x = -4 +/obj/effect/turf_decal/corner/opaque/green/diagonal, +/obj/effect/turf_decal/siding/green{ + dir = 10 }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/lab) +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/slimedome) "eR" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -494,29 +507,6 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"fW" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/machinery/button/door{ - dir = 1; - id = "iusent"; - name = "Entrance Lockdown"; - pixel_x = -5; - pixel_y = -4 - }, -/obj/machinery/button/door{ - dir = 1; - id = "iusoffice"; - name = "Shutter Control"; - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/stamp{ - pixel_x = 6; - pixel_y = 5 - }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/checkpoint) "fX" = ( /obj/effect/turf_decal/corner/opaque/purple/diagonal, /obj/effect/turf_decal/siding/purple, @@ -566,32 +556,11 @@ "gI" = ( /turf/template_noop, /area/template_noop) -"gY" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plating, +"gO" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/slimedome) -"hb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/checkpoint) -"hc" = ( -/obj/machinery/holopad/emergency/command, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/checkpoint) "hg" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 8 @@ -614,6 +583,12 @@ /obj/machinery/smartfridge, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/powered/slimelab/cafe) +"hp" = ( +/obj/structure/closet/firecloset/full, +/obj/item/storage/firstaid/fire, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/powered/slimelab/lava) "hx" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/plating/grass/jungle, @@ -633,6 +608,11 @@ }, /turf/open/floor/plating/snowed, /area/ruin/unpowered) +"hL" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/watermelon, +/turf/open/floor/plating/dirt/jungle, +/area/ruin/powered/slimelab/slimedome) "hX" = ( /obj/machinery/door/airlock{ name = "Reception"; @@ -647,13 +627,13 @@ }, /turf/open/floor/plasteel/tech, /area/ruin/powered/slimelab/checkpoint) -"if" = ( -/obj/machinery/light/small{ +"id" = ( +/obj/effect/turf_decal/siding/thinplating{ dir = 1 }, -/obj/structure/spacevine, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/slimelab/lab) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "in" = ( /obj/structure/chair/wood, /turf/open/floor/carpet/green, @@ -669,12 +649,6 @@ /obj/structure/spacevine/dense, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"iD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/dirt/jungle, -/area/ruin/powered/slimelab/slimedome) "iE" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible, /obj/structure/cable{ @@ -718,21 +692,14 @@ dir = 4 }, /obj/machinery/door/poddoor/shutters{ - id = "iusoffice" + id = "iusoffice"; + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + dir = 4 }, -/obj/machinery/door/airlock/public/glass, /turf/open/floor/plasteel/tech, /area/ruin/powered/slimelab/checkpoint) -"iU" = ( -/obj/structure/closet/firecloset/full, -/obj/item/storage/firstaid/fire, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -7; - pixel_y = -24 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/powered/slimelab/lava) "ja" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -740,6 +707,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab/lab) +"jb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/slimelab/lab) "jf" = ( /obj/structure/flora/ausbushes/genericbush, /turf/open/floor/plating/grass/jungle, @@ -767,41 +744,12 @@ }, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"jr" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/radio/intercom{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 10 - }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/checkpoint) "jt" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/wood, /area/ruin/powered/slimelab/cafe) -"jv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24; - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/slimelab) "jx" = ( /obj/structure/chair{ dir = 1 @@ -872,6 +820,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) +"kv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "ky" = ( /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/sparsegrass, @@ -889,6 +847,13 @@ }, /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/powered/slimelab/lab) +"kB" = ( +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/lava) "kE" = ( /obj/item/clothing/suit/hooded/wintercoat/science, /obj/structure/flora/ausbushes/fullgrass, @@ -920,21 +885,6 @@ /obj/structure/spacevine/dense, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"kP" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/corner/opaque/purple/diagonal, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/item/storage/bag/bio, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/lab) "kR" = ( /obj/machinery/disposal/deliveryChute{ dir = 8; @@ -979,6 +929,14 @@ }, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) +"li" = ( +/obj/item/kirbyplants{ + desc = "Oh hello Reginald. Didn't see you there."; + icon_state = "plant-14"; + name = "Reginald" + }, +/turf/open/floor/plating/dirt/jungle, +/area/ruin/powered/slimelab/slimedome) "ln" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -1001,6 +959,11 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab/lab) +"lq" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/dirt/jungle, +/area/ruin/powered/slimelab/slimedome) "lr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1014,20 +977,6 @@ dir = 1 }, /area/ruin/powered/slimelab) -"lw" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/corner/opaque/purple/diagonal, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/lab) "lA" = ( /obj/structure/table, /obj/effect/turf_decal/siding/wood{ @@ -1036,6 +985,18 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned/grid, /area/ruin/powered/slimelab/cafe) +"lC" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/lab) +"lE" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "lK" = ( /obj/machinery/power/generator{ dir = 8 @@ -1090,20 +1051,6 @@ }, /turf/open/floor/plating, /area/ruin/powered/slimelab/checkpoint) -"lW" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/purple/diagonal, -/obj/item/slime_scanner{ - pixel_x = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/slime_scanner{ - pixel_x = -6 - }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/lab) "lY" = ( /obj/effect/turf_decal/siding/blue/end, /obj/structure/sign/poster/random{ @@ -1111,23 +1058,6 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"mb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/button/door{ - desc = "In the event of lava doing things it should not be doing. Press this button and run."; - id = "iuslava"; - name = "Emergency Lava Shutters"; - pixel_x = -5; - pixel_y = 24 - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/powered/slimelab/lava) "mf" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/decal/cleanable/dirt/dust, @@ -1146,16 +1076,6 @@ icon_state = "reinforced_hull" }, /area/ruin/powered/slimelab/lava) -"mo" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/structure/spacevine{ - pixel_x = 32 - }, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/lab) "ms" = ( /obj/structure/chair, /obj/effect/turf_decal/box, @@ -1188,6 +1108,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) +"mA" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "mB" = ( /obj/effect/turf_decal/siding/blue/corner, /obj/effect/turf_decal/siding/blue/corner{ @@ -1215,13 +1142,6 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/checkpoint) -"mM" = ( -/obj/effect/turf_decal/industrial/outline/grey, -/obj/effect/turf_decal/corner/opaque/green/mono, -/obj/machinery/light/small, -/obj/machinery/biogenerator/vault, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/slimedome) "mO" = ( /obj/structure/marker_beacon, /turf/open/floor/plating/snowed, @@ -1264,18 +1184,6 @@ /obj/structure/sink/puddle, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/slimedome) -"np" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/lava) "nq" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, @@ -1293,19 +1201,6 @@ "nx" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/powered/slimelab/slimedome) -"nz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/checkpoint) "nB" = ( /obj/effect/turf_decal/weather/dirt/corner, /turf/open/water, @@ -1315,13 +1210,6 @@ /obj/structure/spacevine, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"nP" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/slimedome) "nR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1350,6 +1238,29 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab) +"od" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/machinery/button/door{ + dir = 1; + id = "iusent"; + name = "Entrance Lockdown"; + pixel_x = -5; + pixel_y = -4 + }, +/obj/machinery/button/door{ + dir = 1; + id = "iusoffice"; + name = "Shutter Control"; + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/checkpoint) "oe" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -1376,57 +1287,22 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab) -"og" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2 - }, -/obj/machinery/light{ - dir = 1 - }, +"op" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plating, -/area/ruin/powered/slimelab/lava) -"oj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/ruin/powered/slimelab/lava) -"ol" = ( +/area/ruin/powered/slimelab/checkpoint) +"oq" = ( /obj/structure/rack, /obj/item/pickaxe, /obj/item/pickaxe, /obj/item/mining_scanner, /obj/item/mining_scanner, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/stack/marker_beacon/thirty, /obj/item/stack/marker_beacon/thirty, /obj/item/clothing/suit/hooded/wintercoat/miner, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"om" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plating, -/area/ruin/powered/slimelab/slimedome) -"op" = ( -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plating, -/area/ruin/powered/slimelab/checkpoint) "ot" = ( /obj/machinery/monkey_recycler, /obj/effect/turf_decal/corner/opaque/purple/diagonal, @@ -1473,24 +1349,19 @@ /obj/structure/table/wood, /turf/open/floor/carpet/green, /area/ruin/powered/slimelab/cafe) -"pn" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/departments/engineering{ - pixel_x = -32; - pixel_y = 1 +"pA" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/corner/opaque/purple/diagonal, +/obj/effect/turf_decal/siding/purple{ + dir = 10 }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) -"pw" = ( -/obj/machinery/light/small{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/structure/reagent_dispensers/watertank/high, +/obj/machinery/light/small/broken/directional/west, +/obj/item/storage/bag/bio, /turf/open/floor/plasteel, -/area/ruin/powered/slimelab) +/area/ruin/powered/slimelab/lab) "pC" = ( /obj/effect/turf_decal/corner/opaque/purple/diagonal, /obj/effect/turf_decal/siding/purple{ @@ -1498,6 +1369,16 @@ }, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) +"pM" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/powered/slimelab/cafe) "pP" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /turf/open/floor/plasteel/patterned/grid, @@ -1512,6 +1393,14 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab) +"pT" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/green, +/area/ruin/powered/slimelab/cafe) "pU" = ( /obj/effect/turf_decal/corner/opaque/purple/diagonal, /obj/effect/turf_decal/siding/purple, @@ -1529,18 +1418,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/checkpoint) -"qd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/slimelab/lab) "qg" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -1557,6 +1434,16 @@ }, /turf/open/floor/plating, /area/ruin/powered/slimelab/slimedome) +"qx" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/corner/opaque/purple/diagonal, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/lab) "qy" = ( /obj/structure/chair/plastic{ dir = 1 @@ -1585,6 +1472,16 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/checkpoint) +"qC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/slimelab/lab) "qI" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -1595,6 +1492,17 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/ruin/powered/slimelab/cafe) +"qS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "qU" = ( /obj/structure/chair/wood{ dir = 8 @@ -1608,36 +1516,12 @@ "rg" = ( /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/slimedome) -"ro" = ( -/obj/machinery/button/door{ - dir = 1; - id = "iuskill"; - name = "Shutter Control"; - pixel_x = 8; - pixel_y = -24 - }, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/spacevine{ - pixel_x = -33 - }, -/obj/structure/spacevine{ - pixel_y = -32 - }, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/lab) "rp" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/powered/slimelab/cafe) -"rq" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/slimedome) "rr" = ( /obj/structure/window/reinforced{ dir = 1 @@ -1646,13 +1530,18 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/lab) -"ru" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" +"rs" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/purple/diagonal, +/obj/item/slime_scanner{ + pixel_x = 6 }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) +/obj/machinery/light/directional/east, +/obj/item/slime_scanner{ + pixel_x = -6 + }, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/lab) "rH" = ( /obj/structure/window/reinforced{ dir = 1 @@ -1684,17 +1573,6 @@ /obj/structure/flora/junglebush, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/slimedome) -"rU" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -6; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "st" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -1748,6 +1626,13 @@ /obj/machinery/atmospherics/components/binary/pump/on/layer2, /turf/open/floor/plating, /area/ruin/powered/slimelab/lava) +"sO" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "sW" = ( /obj/structure/window/plasma/reinforced, /obj/structure/window/plasma/reinforced{ @@ -1766,6 +1651,16 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) +"sZ" = ( +/obj/machinery/light/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/ruin/powered/slimelab/lava) "te" = ( /obj/structure/fence/end{ dir = 8 @@ -1815,6 +1710,17 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/plating, /area/ruin/powered/slimelab/slimedome) +"tu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "tz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1837,6 +1743,34 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) +"tN" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/purple/diagonal, +/obj/item/clothing/glasses/science/prescription{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/storage/box/syringes{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/lab) +"tQ" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = 29; + pixel_y = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "tS" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -1845,7 +1779,8 @@ dir = 4 }, /obj/machinery/door/airlock{ - name = "Restroom" + name = "Restroom"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ruin/powered/slimelab) @@ -1866,6 +1801,28 @@ "uz" = ( /turf/open/floor/plasteel, /area/ruin/powered/slimelab/checkpoint) +"uH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/ruin/powered/slimelab/slimedome) +"uJ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) +"uK" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/engine, +/area/ruin/powered/slimelab/lava) "uM" = ( /obj/machinery/airalarm/directional/east, /obj/structure/sink{ @@ -1891,23 +1848,6 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/lab) -"vc" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/corner/opaque/purple/diagonal{ - dir = 4 - }, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/lab) "vg" = ( /obj/structure/rack, /obj/effect/turf_decal/siding/wood, @@ -1915,15 +1855,6 @@ /obj/structure/spacevine, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"vi" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "vk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -1950,16 +1881,6 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/lab) -"vp" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/ruin/powered/slimelab/slimedome) "vr" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -1985,16 +1906,6 @@ }, /turf/open/floor/plating, /area/ruin/powered/slimelab/lab) -"vF" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "vG" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2016,6 +1927,13 @@ }, /turf/open/lava/smooth, /area/ruin/powered/slimelab/lava) +"vP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/checkpoint) "vQ" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -2027,6 +1945,11 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/lab) +"vS" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/slimedome) "vU" = ( /obj/effect/turf_decal/corner/opaque/purple/diagonal, /obj/effect/turf_decal/siding/purple{ @@ -2035,20 +1958,18 @@ /obj/structure/spacevine/dense, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"vV" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/corner/opaque/green/diagonal, -/obj/effect/turf_decal/siding/green{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, +"vW" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating/dirt/jungle, /area/ruin/powered/slimelab/slimedome) +"vZ" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/powered/slimelab/lava) "wc" = ( /turf/closed/wall/r_wall, /area/ruin/powered/slimelab/lab) @@ -2197,29 +2118,16 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"xw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/button/door{ - dir = 8; - id = "iusmine"; - name = "Mining Exit"; - pixel_x = 24; - pixel_y = 6 +"xB" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = -26 }, -/obj/machinery/button/shieldwallgen{ - dir = 8; - id = "iusmine"; - pixel_x = 25; - pixel_y = -5 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ruin/powered/slimelab/slimedome) "xD" = ( /obj/effect/turf_decal/corner/opaque/purple/diagonal, /obj/effect/turf_decal/siding/purple{ @@ -2231,6 +2139,23 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/lab) +"xI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/button/door{ + desc = "In the event of lava doing things it should not be doing. Press this button and run."; + id = "iuslava"; + name = "Emergency Lava Shutters"; + pixel_x = -5; + pixel_y = 24 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/powered/slimelab/lava) "xK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -2291,15 +2216,6 @@ icon_state = "reinforced_hull" }, /area/ruin/powered/slimelab/lava) -"xZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/checkpoint) "yb" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -2316,6 +2232,19 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab) +"yc" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/checkpoint) +"yk" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/slimedome) "yq" = ( /obj/effect/turf_decal/weather/dirt{ dir = 5 @@ -2436,6 +2365,13 @@ }, /turf/open/floor/plasteel/patterned, /area/ruin/powered/slimelab/lava) +"zq" = ( +/obj/effect/turf_decal/siding/blue/end{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "zs" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/powered/slimelab) @@ -2471,18 +2407,6 @@ "zQ" = ( /turf/open/water, /area/ruin/unpowered) -"zR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/slimelab/lab) "Aa" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -2500,7 +2424,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/public/glass{ - name = "Biodome" + name = "Biodome"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ruin/powered/slimelab/slimedome) @@ -2529,15 +2454,6 @@ }, /turf/open/floor/wood, /area/ruin/powered/slimelab/cafe) -"Ap" = ( -/obj/effect/turf_decal/siding/blue/end{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "Aw" = ( /turf/open/water, /area/ruin/powered/slimelab/slimedome) @@ -2591,23 +2507,14 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab/lab) -"AO" = ( -/obj/item/kirbyplants{ - desc = "Oh hello Reginald. Didn't see you there."; - icon_state = "plant-14"; - name = "Reginald" - }, -/turf/open/floor/plating/dirt/jungle, -/area/ruin/powered/slimelab/slimedome) -"AZ" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -27; - pixel_y = 5 +"AN" = ( +/obj/machinery/holopad/emergency/command, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/south{ + pixel_y = -37 }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/checkpoint) "Ba" = ( /turf/open/floor/plating/asteroid/icerock, /area/ruin/unpowered) @@ -2620,18 +2527,6 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"Bg" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/corner/opaque/purple/diagonal, -/obj/effect/turf_decal/siding/purple, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/lab) "Bp" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -2640,7 +2535,8 @@ dir = 4 }, /obj/machinery/door/airlock/public/glass{ - name = "Biodome" + name = "Biodome"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -2653,6 +2549,17 @@ }, /turf/open/floor/plasteel/tech, /area/ruin/powered/slimelab/slimedome) +"Bs" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/directional/east, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/powered/slimelab/lava) "Bu" = ( /obj/item/bedsheet/random, /obj/structure/bed, @@ -2699,6 +2606,16 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/slimedome) +"BN" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ruin/powered/slimelab/slimedome) "BU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -2712,16 +2629,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab/lab) -"Cb" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/chair/stool/bar{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/powered/slimelab/cafe) "Cd" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, @@ -2733,6 +2640,17 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) +"Cj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/disposalpipe/segment, +/obj/structure/spacevine{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/slimelab/lab) "Cp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -2791,21 +2709,34 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab) -"CH" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +"CN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/machinery/light, -/turf/open/floor/carpet/green, -/area/ruin/powered/slimelab/cafe) -"CX" = ( -/obj/machinery/autolathe, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/slimelab) +"CO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/ruin/powered/slimelab/slimedome) +"CR" = ( +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plasteel, -/area/ruin/powered/slimelab/lava) +/area/ruin/powered/slimelab/slimedome) "Db" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/carpet/blue, @@ -2815,9 +2746,12 @@ /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/powered/slimelab/slimedome) "Dg" = ( -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 8 + }, /obj/machinery/door/poddoor/preopen{ - id = "iusent" + id = "iusent"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -2835,51 +2769,43 @@ /obj/item/kirbyplants/random, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"Do" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/spacevine{ - pixel_y = -32 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/lab) "Dv" = ( /obj/structure/fence/door, /turf/open/floor/plating/asteroid/icerock, /area/ruin/unpowered) -"Dx" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/powered/slimelab) "DC" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"DE" = ( -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/slimedome) +"DI" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/engine, +/area/ruin/powered/slimelab/lava) "DK" = ( /turf/open/floor/plasteel/patterned/grid, /area/ruin/powered/slimelab/cafe) "Ea" = ( /turf/open/floor/plasteel/patterned, /area/ruin/powered/slimelab) +"Eb" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/slimedome) "Eh" = ( /obj/structure/barricade/wooden/crude, /obj/machinery/door/airlock/research{ name = "Xenobiological Lab"; - req_access_txt = "55" + req_access_txt = "55"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2906,17 +2832,6 @@ "Em" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/powered/slimelab/checkpoint) -"En" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_x = 4; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "Es" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -2935,7 +2850,8 @@ /area/ruin/powered/slimelab/cafe) "EB" = ( /obj/machinery/door/poddoor/preopen{ - id = "iuslava" + id = "iuslava"; + dir = 4 }, /obj/structure/window/plasma/reinforced/fulltile, /obj/structure/grille, @@ -2994,6 +2910,11 @@ /obj/machinery/processor, /turf/open/floor/plasteel/patterned/grid, /area/ruin/powered/slimelab/cafe) +"Fg" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "Fj" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 4 @@ -3016,6 +2937,16 @@ /obj/item/stack/sheet/mineral/plasma, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) +"Fs" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/effect/mob_spawn/slime, +/obj/machinery/light/broken/directional/west, +/obj/structure/spacevine{ + pixel_x = -33 + }, +/obj/structure/spacevine, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/lab) "FA" = ( /obj/effect/turf_decal/weather/dirt{ dir = 1 @@ -3053,15 +2984,6 @@ /obj/structure/marker_beacon, /turf/open/floor/plating/asteroid/iceberg, /area/ruin/unpowered) -"Gb" = ( -/obj/effect/turf_decal/siding/blue/end{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "Gu" = ( /obj/structure/flora/ausbushes/grassybush, /turf/open/floor/plating/grass/jungle, @@ -3082,25 +3004,16 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ruin/powered/slimelab/cafe) -"GW" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/watermelon, -/turf/open/floor/plating/dirt/jungle, -/area/ruin/powered/slimelab/slimedome) +"Ha" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned/grid, +/area/ruin/powered/slimelab/cafe) "Hd" = ( /turf/open/floor/plating/dirt/jungle, /area/ruin/powered/slimelab/slimedome) -"Hf" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -7; - pixel_y = -25 - }, -/turf/open/floor/wood, -/area/ruin/powered/slimelab/cafe) "Hg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -3169,6 +3082,16 @@ /obj/structure/marker_beacon, /turf/open/floor/plating/asteroid/icerock, /area/ruin/unpowered) +"HY" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/corner/opaque/green/diagonal, +/obj/effect/turf_decal/siding/green{ + dir = 9 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/slimedome) "HZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/corner/opaque/purple/diagonal, @@ -3201,11 +3124,6 @@ /obj/structure/spacevine/dense, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"Ip" = ( -/obj/machinery/vending/snack/random, -/obj/machinery/light, -/turf/open/floor/wood, -/area/ruin/powered/slimelab) "IB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -3216,6 +3134,14 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab) +"IE" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "IJ" = ( /obj/structure/spacevine, /turf/open/floor/plating/grass/jungle, @@ -3249,10 +3175,18 @@ }, /obj/machinery/door/airlock/research{ name = "Xenobiological Lab"; - req_access_txt = "55" + req_access_txt = "55"; + dir = 8 }, /turf/open/floor/plasteel/tech, /area/ruin/powered/slimelab/lab) +"Jg" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "Jj" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -3264,24 +3198,25 @@ dir = 4 }, /obj/machinery/door/poddoor/shutters{ - id = "iusoffice" + id = "iusoffice"; + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + dir = 4 }, -/obj/machinery/door/airlock/public/glass, /turf/open/floor/plasteel/tech, /area/ruin/powered/slimelab/checkpoint) -"Jo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/green/diagonal, -/obj/effect/turf_decal/siding/green{ - dir = 10 - }, -/obj/machinery/light/small{ +"Jp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/slimedome) +/obj/item/kirbyplants/random, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/checkpoint) "Jt" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -3346,17 +3281,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab) -"JJ" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_x = 7; - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/checkpoint) "JN" = ( /obj/structure/window/reinforced{ dir = 4 @@ -3378,13 +3302,6 @@ }, /turf/open/floor/plating, /area/ruin/powered/slimelab) -"JW" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/slimedome) "JY" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -3414,22 +3331,22 @@ /obj/structure/spacevine/dense, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab/lab) -"Kd" = ( -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/engine, -/area/ruin/powered/slimelab/lava) "Kg" = ( /obj/structure/table, /obj/item/storage/box/beakers, /obj/effect/turf_decal/corner/opaque/purple/diagonal, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) +"Ki" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/lava) "Km" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -3547,6 +3464,12 @@ /obj/structure/spacevine/dense, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab/lab) +"LQ" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ruin/powered/slimelab) "LV" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 5 @@ -3563,16 +3486,6 @@ }, /turf/open/floor/engine, /area/ruin/powered/slimelab/lava) -"Mb" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "Mc" = ( /obj/effect/turf_decal/industrial/stand_clear{ dir = 8 @@ -3584,6 +3497,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) +"Md" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/checkpoint) "Mg" = ( /turf/open/floor/plating/asteroid/icerock/smooth, /area/ruin/unpowered) @@ -3598,6 +3516,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) +"My" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/ruin/powered/slimelab/cafe) "MD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -3616,6 +3541,16 @@ }, /turf/open/lava/smooth, /area/ruin/powered/slimelab/lava) +"MM" = ( +/obj/machinery/door/airlock/external/glass{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "iusent"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/powered/slimelab/checkpoint) "MZ" = ( /obj/structure/table, /obj/effect/turf_decal/corner/opaque/purple/diagonal, @@ -3690,23 +3625,10 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"NG" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) -"NM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) +"NJ" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/slimedome) "NP" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/siding/wood, @@ -3717,6 +3639,13 @@ /obj/structure/flora/ausbushes/pointybush, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/slimedome) +"NS" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/green, +/area/ruin/powered/slimelab/cafe) "NX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -3746,28 +3675,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab/lab) -"Ol" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/lab) "Om" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/spacevine, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/lab) -"Oq" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light{ - dir = 1 +"On" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned/grid, -/area/ruin/powered/slimelab/cafe) +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "OB" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters{ @@ -3827,19 +3748,10 @@ }, /turf/open/floor/plating/dirt/jungle, /area/ruin/powered/slimelab/slimedome) -"Pi" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light, -/turf/open/floor/plating/dirt/jungle, -/area/ruin/powered/slimelab/slimedome) -"Pj" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, +"Pf" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned, /area/ruin/powered/slimelab) "Pn" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -3847,6 +3759,11 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) +"Po" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet/blue, +/area/ruin/powered/slimelab) "Pp" = ( /obj/structure/bedsheetbin, /obj/structure/table, @@ -3860,16 +3777,6 @@ /obj/structure/spacevine, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"Px" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/brigdoor, -/obj/machinery/door/firedoor/border_only, -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/checkpoint) "Pz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -3883,19 +3790,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab) -"PC" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/powered/slimelab/lava) "PD" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 @@ -3980,6 +3874,13 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/slimelab/lab) +"Qp" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + piping_layer = 2 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/ruin/powered/slimelab/lava) "Qs" = ( /obj/structure/flora/junglebush/large, /turf/open/floor/plating/grass/jungle, @@ -4056,6 +3957,16 @@ icon_state = "reinforced_hull" }, /area/ruin/powered/slimelab/lava) +"Rc" = ( +/mob/living/simple_animal/hostile/asteroid/polarbear{ + desc = "This poor bear looks far scrunklier than is healthy for a bear."; + healable = 0; + health = 1; + maxHealth = 1; + name = "scrunkly polar bear" + }, +/turf/open/floor/plating/dirt, +/area/ruin/unpowered) "Re" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -4080,15 +3991,6 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"Rj" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) "Rr" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/industrial/outline/grey, @@ -4143,7 +4045,8 @@ "RP" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering"; - req_access_txt = "200" + req_access_txt = "200"; + dir = 4 }, /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -4199,38 +4102,22 @@ /turf/open/floor/plating, /area/ruin/powered/slimelab/checkpoint) "Sj" = ( -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, /obj/machinery/door/poddoor/preopen{ - id = "iusent" + id = "iusent"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/powered/slimelab/checkpoint) -"Sk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -7; - pixel_y = -25 +"Sm" = ( +/obj/effect/turf_decal/siding/blue/end{ + dir = 8 }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) -"Sl" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/firealarm{ - pixel_x = -6; - pixel_y = 26 - }, -/turf/open/floor/carpet/blue, -/area/ruin/powered/slimelab) -"Sr" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/slimedome) "Su" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -4264,12 +4151,38 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) +"SW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/checkpoint) "SY" = ( /obj/effect/turf_decal/weather/dirt/corner{ dir = 8 }, /turf/open/water, /area/ruin/powered/slimelab/slimedome) +"SZ" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/corner/opaque/purple/diagonal{ + dir = 4 + }, +/obj/machinery/light/small/broken/directional/north, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/lab) +"Tb" = ( +/obj/effect/turf_decal/corner/opaque/purple/diagonal, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/light/small/directional/west, +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/lab) "Td" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 @@ -4289,16 +4202,6 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ruin/powered/slimelab/cafe) -"Tf" = ( -/mob/living/simple_animal/hostile/asteroid/polarbear{ - desc = "This poor bear looks far scrunklier than is healthy for a bear."; - healable = 0; - health = 1; - maxHealth = 1; - name = "scrunkly polar bear" - }, -/turf/open/floor/plating/dirt, -/area/ruin/unpowered) "Th" = ( /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/checkpoint) @@ -4314,15 +4217,6 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ruin/powered/slimelab) -"Tn" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/powered/slimelab/cafe) "Tx" = ( /turf/open/floor/plating/asteroid/icerock/cracked, /area/ruin/unpowered) @@ -4385,22 +4279,6 @@ /obj/machinery/vending/clothing, /turf/open/floor/carpet/blue, /area/ruin/powered/slimelab) -"Ua" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/corner/opaque/purple/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab/lab) "Uk" = ( /turf/open/floor/plasteel/stairs/medium{ dir = 1 @@ -4428,17 +4306,13 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/lab) -"UH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/item/kirbyplants/random, +"UA" = ( /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white, -/area/ruin/powered/slimelab/checkpoint) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "UJ" = ( /obj/effect/turf_decal/corner/opaque/green/diagonal, /obj/effect/turf_decal/siding/green{ @@ -4476,6 +4350,13 @@ /obj/effect/turf_decal/industrial/warning/corner, /turf/open/floor/plasteel, /area/ruin/powered/slimelab) +"UW" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab) "Vc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/structure/cable{ @@ -4489,10 +4370,6 @@ }, /turf/open/water, /area/ruin/powered/slimelab/slimedome) -"Vj" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/patterned/grid, -/area/ruin/powered/slimelab/cafe) "Vs" = ( /turf/open/floor/wood, /area/ruin/powered/slimelab/cafe) @@ -4509,19 +4386,6 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ruin/powered/slimelab) -"VA" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/powered/slimelab/checkpoint) "VM" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/machinery/light_switch{ @@ -4533,6 +4397,28 @@ /obj/structure/flora/ausbushes/brflowers, /turf/open/floor/plating/grass/jungle, /area/ruin/powered/slimelab/slimedome) +"VS" = ( +/obj/structure/table/glass, +/obj/machinery/door/window/brigdoor, +/obj/machinery/door/firedoor/border_only, +/obj/item/radio/intercom/wideband/table, +/turf/open/floor/plasteel/white, +/area/ruin/powered/slimelab/checkpoint) +"VV" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned/grid, +/area/ruin/powered/slimelab/cafe) +"Wp" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/light/directional/east, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/powered/slimelab/checkpoint) "Wt" = ( /obj/effect/turf_decal/corner/opaque/purple/diagonal{ dir = 4 @@ -4550,18 +4436,6 @@ /obj/structure/chair/office, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/checkpoint) -"Wx" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/structure/spacevine/dense{ - pixel_x = -32 - }, -/obj/structure/spacevine, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/lab) "Wz" = ( /obj/machinery/door/poddoor{ id = "iusmine" @@ -4661,6 +4535,11 @@ icon_state = "reinforced_hull" }, /area/ruin/powered/slimelab/lava) +"XF" = ( +/obj/machinery/vending/snack/random, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ruin/powered/slimelab) "XI" = ( /obj/effect/turf_decal/weather/dirt{ dir = 8 @@ -4708,6 +4587,16 @@ }, /turf/open/floor/carpet/green, /area/ruin/powered/slimelab/cafe) +"Ye" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/checkpoint) "Yh" = ( /obj/structure/rack, /obj/item/mop, @@ -4741,11 +4630,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/powered/slimelab/lab) -"YE" = ( -/obj/structure/table, -/obj/machinery/light, -/turf/open/floor/plasteel/patterned, -/area/ruin/powered/slimelab) "YF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4756,6 +4640,24 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/checkpoint) +"YG" = ( +/obj/machinery/button/door{ + dir = 1; + id = "iuskill"; + name = "Shutter Control"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/spacevine{ + pixel_x = -33 + }, +/obj/structure/spacevine{ + pixel_y = -32 + }, +/turf/open/floor/plating/grass/jungle, +/area/ruin/powered/slimelab/lab) "YO" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4770,6 +4672,17 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/lava) +"YS" = ( +/obj/effect/turf_decal/industrial/outline/grey, +/obj/effect/turf_decal/corner/opaque/green/mono, +/obj/machinery/biogenerator/vault, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/slimedome) +"YV" = ( +/obj/machinery/autolathe, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/ruin/powered/slimelab/lava) "YW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -4780,45 +4693,6 @@ }, /turf/open/floor/plasteel, /area/ruin/powered/slimelab/slimedome) -"Zd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/ruin/powered/slimelab) -"Zg" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/engine, -/area/ruin/powered/slimelab/lava) -"Zi" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/effect/mob_spawn/slime, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/structure/spacevine{ - pixel_x = -33 - }, -/obj/structure/spacevine, -/turf/open/floor/plating/grass/jungle, -/area/ruin/powered/slimelab/lab) "Zm" = ( /obj/structure/table, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, @@ -4846,7 +4720,8 @@ "ZM" = ( /obj/machinery/door/airlock/engineering{ name = "Lava Pit"; - req_access_txt = "200" + req_access_txt = "200"; + dir = 4 }, /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -4858,7 +4733,8 @@ icon_state = "4-8" }, /obj/machinery/door/poddoor/preopen{ - id = "iuslava" + id = "iuslava"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -5246,7 +5122,7 @@ gI gI Ba LG -Tf +Rc zQ tB ae @@ -5254,7 +5130,7 @@ ae Jt iE LY -Zg +DI wR vG HQ @@ -5407,13 +5283,13 @@ uh uh uh Np -oj +sZ mg mQ mQ mQ XB -Kd +uK Np uh Ba @@ -5633,7 +5509,7 @@ uh uh Em op -VA +Wp kf Em uh @@ -5669,9 +5545,9 @@ uh Np uh Np -mb +xI fh -iU +hp Np JA tl @@ -5684,7 +5560,7 @@ Em Em Em Em -Sj +MM Em Dg Em @@ -5725,17 +5601,17 @@ lR PS kz Np -og +Qp LI za hE Np -pw -ru +Fg +lE Em Nc -hc -jr +AN +Md uz ws YF @@ -5773,9 +5649,9 @@ uh uh uh Np -dE +vZ zo -PC +Bs Np JA NX @@ -5787,7 +5663,7 @@ DC Em FD Wu -fW +od mJ PD qB @@ -5830,19 +5706,19 @@ RP Np Np Np -CX +YV Zm YR Np zs eg Em -JJ +yc Th -Px +VS sx Aj -nz +Ye Em uh uh @@ -5883,13 +5759,13 @@ LB fm Np Np -bW +kB aj Np -NM -Sk +On +UA Em -UH +Jp Th zO ms @@ -5928,28 +5804,28 @@ zs zs zs zs -Dx +LQ oE IB JY ZU -Ip +XF Np Np -np +Ki Np Pn By hX RK -xZ +SW jJ sx -hb +vP MD zs Bu -Ap +Sm Bu zs be @@ -5976,8 +5852,8 @@ uh uh JV Tj -AZ -ol +dZ +oq na zs qU @@ -5990,7 +5866,7 @@ Lk Np df Np -bG +kv Hg Em Em @@ -6032,7 +5908,7 @@ bs EL US zs -En +sO Cg kg JD @@ -6041,15 +5917,15 @@ fR fR NE Rh -pn +cb HK WM NB fR -Mb +Jg wi aP -vF +IE sY zs Qz @@ -6080,8 +5956,8 @@ uh uh mv Vw -xw -aw +et +qS gG wf Km @@ -6092,7 +5968,7 @@ FO QU QU CG -jv +CN tz PH JZ @@ -6152,7 +6028,7 @@ nx Bp nx nx -vi +uJ JF ST zs @@ -6160,10 +6036,10 @@ TX RY jW zs -Oq +Ha KJ KJ -Vj +VV be uh uh @@ -6195,20 +6071,20 @@ NR hx Gu Hd -iD +vW hx cR rg nx -vV +HY UJ -Jo +eA nx SK JF -rU +id zs -Sl +Po tE Db zs @@ -6261,7 +6137,7 @@ JF ST zs Bu -Gb +zq Bu zs OR @@ -6292,7 +6168,7 @@ uh uh nx nx -rq +NJ rg VN Ul @@ -6310,13 +6186,13 @@ nx nx ng Pz -NG +UW zs zs zs zs zs -Cb +pM Vs aF QI @@ -6356,17 +6232,17 @@ Gu jf rg rg -bY +uH hh -om +CO Sx ku JF LV oe -Zd +tu Dh -Pj +mA OD jt Vs @@ -6425,7 +6301,7 @@ TV Td fd EK -CH +pT be uh uh @@ -6470,7 +6346,7 @@ PE gj Az hg -Rj +aZ OD XA WU @@ -6516,7 +6392,7 @@ Hd Hd SF nx -cm +tQ xK EX zs @@ -6580,7 +6456,7 @@ nq in Lo wp -Hf +My be uh uh @@ -6603,7 +6479,7 @@ uh uh nx nx -JW +gO rg rg Hd @@ -6620,13 +6496,13 @@ Hd rg Zx bq -lw +ek XT -kP +pA zs jm rN -YE +Pf zs nq in @@ -6670,7 +6546,7 @@ rg rg rg Cd -Pi +lq bq xD uY @@ -6682,7 +6558,7 @@ cC zs Ky vr -Tn +NS vQ wN be @@ -6766,7 +6642,7 @@ rg tj rg Hd -AO +li OV rg NC @@ -6776,19 +6652,19 @@ Gu rg Df bq -ck +Tb Cp -Bg +qx jZ Rv fr -Zi +Fs bp dy cc rH -Wx -ro +aR +YG XU xX TP @@ -6931,7 +6807,7 @@ bq bq bq bq -zR +jb ZG Jy ZG @@ -6969,7 +6845,7 @@ uh uh nx nx -nP +vS rg rg rg @@ -6978,12 +6854,12 @@ nl rg OV OV -vp +BN bq -vc +SZ Wt bq -qd +qC lh Ty EH @@ -6996,7 +6872,7 @@ BU tp wo vR -Do +dH bq xo TP @@ -7048,7 +6924,7 @@ Ok UR Nl zH -cf +Cj Ct dK te @@ -7082,12 +6958,12 @@ rg rg rg Gu -gY +xB bq -Ua +er vn bq -if +an PX jq ot @@ -7179,7 +7055,7 @@ uh uh nx Zx -GW +hL Gu rg Df @@ -7188,7 +7064,7 @@ zK rg Un rg -DE +CR Rr nx MZ @@ -7235,13 +7111,13 @@ Zx Df rg rg -Sr +yk Gu rg rg rg BI -BI +Eb nx Fm TW @@ -7250,12 +7126,12 @@ Ay Hw Cq ea -mo +ai kA Il Mc JN -Ol +lC xt bq uh @@ -7293,11 +7169,11 @@ nx nx Yy oW -mM +YS Cr Kg -lW -eE +rs +tN Gw Ie NP diff --git a/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm b/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm index a53f2763f63f..8e3fecaab778 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm @@ -116,7 +116,7 @@ /obj/structure/chair/office{ dir = 8 }, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/starport/tower) "aS" = ( @@ -565,9 +565,7 @@ "dZ" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/engineering_guide, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/wood, /area/ruin/jungle/starport) "eb" = ( @@ -638,13 +636,11 @@ /area/ruin/jungle/starport) "eu" = ( /obj/structure/spider/stickyweb, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "ev" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport) "ex" = ( @@ -699,7 +695,9 @@ }, /area/ruin/jungle/starport) "fi" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/structure/barricade/wooden/crude, /obj/structure/cable{ icon_state = "4-8" @@ -794,16 +792,12 @@ pixel_x = -24; pixel_y = 22 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ruin/jungle/starport/plasma) "fX" = ( /obj/effect/decal/remains/human, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plating/rust, /area/ruin/jungle/starport) "fY" = ( @@ -920,9 +914,7 @@ /obj/structure/railing/corner{ dir = 8 }, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/concrete/slab_1{ light_range = 2 }, @@ -962,15 +954,14 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/wrench/combat, /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/starport/plasma) "he" = ( /obj/machinery/door/airlock/command{ - name = "Flight Control" + name = "Flight Control"; + dir = 4 }, /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1036,9 +1027,7 @@ /obj/structure/toilet{ dir = 8 }, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /turf/open/floor/plasteel/patterned, /area/ruin/jungle/starport) "hu" = ( @@ -1096,7 +1085,7 @@ /area/ruin/jungle/starport) "hJ" = ( /obj/machinery/vending/games, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plating, /area/ruin/jungle/starport) "hL" = ( @@ -1167,9 +1156,7 @@ /area/ruin/jungle/starport) "ig" = ( /obj/effect/decal/cleanable/vomit/old, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport/tower) "ih" = ( @@ -1319,7 +1306,9 @@ /turf/open/floor/plasteel/grimy, /area/ruin/jungle/starport) "jh" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/starport) "jl" = ( @@ -1354,9 +1343,7 @@ /area/ruin/jungle/starport) "jw" = ( /obj/structure/spider/stickyweb, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "jE" = ( @@ -1485,6 +1472,14 @@ light_range = 2 }, /area/ruin/jungle/starport) +"kE" = ( +/obj/machinery/door/airlock/glass{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating/rust, +/area/ruin/jungle/starport) "kF" = ( /turf/open/floor/plating/dirt/jungle/wasteland{ icon_state = "wasteland8" @@ -1566,7 +1561,9 @@ }, /area/ruin/jungle/starport) "lg" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/structure/barricade/wooden/crude, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/starport) @@ -1836,21 +1833,14 @@ /area/ruin/jungle/starport) "ni" = ( /obj/structure/table, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/grimy, /area/ruin/jungle/starport) "nm" = ( /obj/machinery/power/terminal, /obj/structure/cable, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ruin/jungle/starport) "np" = ( @@ -1895,9 +1885,7 @@ "nI" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/toxins, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/wood{ icon_state = "wood-broken3" }, @@ -2063,9 +2051,7 @@ /area/ruin/jungle/starport) "oC" = ( /obj/structure/railing/corner, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/concrete/slab_1{ light_range = 2 }, @@ -2093,9 +2079,7 @@ /obj/structure/railing/corner{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/concrete/slab_1{ light_range = 2 }, @@ -2342,7 +2326,8 @@ "qJ" = ( /obj/structure/spacevine, /obj/machinery/door/poddoor{ - id = "jbs1" + id = "jbs1"; + dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport) @@ -2842,9 +2827,7 @@ "tC" = ( /obj/structure/railing/corner, /obj/structure/spacevine, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/concrete/slab_1{ light_range = 2 }, @@ -2873,7 +2856,9 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/poddoor_assembly, +/obj/structure/poddoor_assembly{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium{ icon_state = "plastitanium_dam2" }, @@ -2972,9 +2957,7 @@ "us" = ( /obj/structure/table/wood, /obj/item/storage/book/bible, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/wood{ icon_state = "wood-broken" }, @@ -3319,9 +3302,7 @@ "wE" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/spider/stickyweb, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "wG" = ( @@ -3456,9 +3437,7 @@ /turf/open/floor/plasteel, /area/ruin/jungle/starport) "xm" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "xn" = ( @@ -3608,9 +3587,7 @@ /area/ruin/jungle/starport) "yw" = ( /obj/item/chair, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "yA" = ( @@ -3712,7 +3689,9 @@ /turf/open/floor/plasteel/patterned, /area/ruin/jungle/starport) "zu" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/structure/barricade/wooden/crude, /obj/structure/cable{ icon_state = "4-8" @@ -3763,9 +3742,7 @@ /area/ruin/jungle/starport) "zV" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plating, /area/ruin/jungle/starport) "zZ" = ( @@ -3848,7 +3825,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ start_charge = 0 }, /turf/open/floor/mineral/plastitanium, @@ -4120,9 +4097,7 @@ /area/ruin/jungle/starport) "CR" = ( /obj/effect/decal/cleanable/blood/drip, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport/tower) "CS" = ( @@ -4141,11 +4116,8 @@ }, /area/ruin/jungle/starport) "CW" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light/broken, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plating/rust, /area/ruin/jungle/starport) "CZ" = ( @@ -4206,9 +4178,7 @@ /obj/machinery/atmospherics/pipe/manifold/orange{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/spider/cocoon, /turf/open/floor/plating, /area/ruin/jungle/starport) @@ -4329,9 +4299,7 @@ /obj/structure/toilet{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/patterned, /area/ruin/jungle/starport) "DU" = ( @@ -4357,7 +4325,7 @@ dir = 8 }, /obj/structure/table/reinforced, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport/tower) "Eb" = ( @@ -4428,9 +4396,7 @@ /area/ruin/jungle/starport) "ED" = ( /obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "EE" = ( @@ -4515,9 +4481,7 @@ /turf/open/floor/plasteel/grimy, /area/ruin/jungle/starport) "Fb" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/suit_storage_unit/inherit/industrial, /turf/open/floor/vault, /area/ruin/jungle/starport) @@ -4588,9 +4552,7 @@ }, /area/ruin/jungle/starport) "FM" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/concrete/slab_1{ light_range = 2 }, @@ -4918,14 +4880,8 @@ /area/ruin/jungle/starport) "HG" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 2 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -9 - }, +/obj/item/radio/intercom/directional/east, +/obj/item/radio/intercom/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/starport/tower) "HI" = ( @@ -5251,13 +5207,11 @@ }, /area/ruin/jungle/starport) "JR" = ( -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 24 }, /obj/item/stack/sheet/metal, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "JT" = ( @@ -5330,9 +5284,7 @@ }, /obj/machinery/portable_atmospherics/canister/toxins, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/starport/plasma) "KE" = ( @@ -5554,26 +5506,19 @@ /area/ruin/jungle/starport) "Mf" = ( /obj/structure/spacevine, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/concrete/slab_1{ light_range = 2 }, /area/ruin/jungle/starport) "Mh" = ( /obj/structure/table, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/grimy, /area/ruin/jungle/starport) "Mi" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport) "Mq" = ( @@ -5643,9 +5588,7 @@ /turf/open/water/jungle, /area/ruin/jungle/starport) "MQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport) "MR" = ( @@ -5818,7 +5761,9 @@ /area/ruin/jungle/starport) "Ok" = ( /obj/structure/spacevine/dense, -/obj/structure/poddoor_assembly, +/obj/structure/poddoor_assembly{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport) "On" = ( @@ -5841,10 +5786,7 @@ /area/ruin/jungle/starport) "Ox" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 1 - }, +/obj/item/radio/intercom/wideband/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/starport/tower) "Oz" = ( @@ -5928,9 +5870,7 @@ "Pf" = ( /obj/machinery/power/terminal, /obj/structure/cable, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ruin/jungle/starport) "Pg" = ( @@ -6127,14 +6067,12 @@ /turf/open/floor/plating, /area/ruin/jungle/starport) "Qs" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/jungle/starport/plasma) "Qv" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/jungle/starport) "Qw" = ( @@ -6176,7 +6114,7 @@ "QO" = ( /obj/machinery/suit_storage_unit/industrial/atmos_firesuit, /obj/item/watertank/atmos, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/vault, /area/ruin/jungle/starport) "QP" = ( @@ -6205,7 +6143,7 @@ /turf/open/water/jungle, /area/ruin/jungle/starport) "QV" = ( -/obj/machinery/power/apc/auto_name/east{ +/obj/machinery/power/apc/auto_name/directional/east{ start_charge = 0 }, /obj/structure/cable, @@ -6306,9 +6244,7 @@ /turf/open/floor/plasteel, /area/ruin/jungle/starport) "RH" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/concrete/slab_1{ light_range = 2 }, @@ -6365,9 +6301,7 @@ /area/ruin/jungle/starport) "Sd" = ( /obj/structure/closet, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/item/clothing/gloves/color/black, /obj/item/clothing/gloves/color/black, /obj/item/clothing/gloves/color/black, @@ -6605,9 +6539,7 @@ /obj/effect/decal/cleanable/glass, /obj/structure/spider/stickyweb, /obj/item/stack/cable_coil/cut/red, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "Tj" = ( @@ -6702,9 +6634,7 @@ /obj/structure/table/reinforced, /obj/item/folder, /obj/item/pen, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/starport/tower) "TL" = ( @@ -6977,10 +6907,7 @@ /area/ruin/jungle/starport) "Vz" = ( /obj/structure/spider/stickyweb, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 26 - }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plating/rust, /area/ruin/jungle/starport) "VA" = ( @@ -7149,9 +7076,7 @@ /area/ruin/jungle/starport) "WF" = ( /obj/item/chair, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "WG" = ( @@ -7259,9 +7184,7 @@ /obj/structure/sign/warning/gasmask{ pixel_y = 32 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ruin/jungle/starport) "Xk" = ( @@ -7297,9 +7220,7 @@ /obj/machinery/atmospherics/pipe/manifold/orange{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ruin/jungle/starport) "Xs" = ( @@ -7434,12 +7355,10 @@ /area/ruin/jungle/starport) "Yl" = ( /obj/structure/table, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 24 }, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/grimy, /area/ruin/jungle/starport) "Yp" = ( @@ -7612,9 +7531,7 @@ "Zo" = ( /obj/structure/spider/stickyweb, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel, /area/ruin/jungle/starport) "Zr" = ( @@ -7649,6 +7566,14 @@ light_range = 2 }, /area/ruin/jungle/starport) +"ZT" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "jbs2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/jungle/starport/tower) "ZU" = ( /obj/structure/spacevine, /turf/open/floor/plating/dirt/dark{ @@ -10868,17 +10793,17 @@ BR yH UD wg -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya +bN +ZT +ZT +ZT +ZT +ZT +ZT +ZT +ZT +ZT +bN Tf wg wg @@ -13634,7 +13559,7 @@ Wo qR AQ Wo -PG +kE Wo Wo Wo diff --git a/_maps/RandomRuins/JungleRuins/jungle_botany.dmm b/_maps/RandomRuins/JungleRuins/jungle_botany.dmm index 7c6a47306922..1276dfe8b2aa 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_botany.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_botany.dmm @@ -59,6 +59,10 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/command, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, /turf/open/floor/plasteel, /area/ruin/powered) "hL" = ( @@ -67,6 +71,7 @@ /area/ruin/powered) "ii" = ( /obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/box, /turf/open/floor/plasteel, /area/ruin/powered) "ik" = ( @@ -75,6 +80,7 @@ /area/ruin/powered) "iG" = ( /obj/machinery/vending/cigarette, +/obj/effect/turf_decal/box, /turf/open/floor/plasteel, /area/ruin/powered) "jc" = ( @@ -107,7 +113,9 @@ /turf/open/floor/plasteel, /area/ruin/powered) "jK" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /turf/open/floor/plasteel, /area/ruin/powered) "ke" = ( @@ -121,6 +129,7 @@ /area/ruin/powered) "kj" = ( /obj/machinery/vending/sovietsoda, +/obj/effect/turf_decal/box, /turf/open/floor/plasteel, /area/ruin/powered) "lb" = ( @@ -139,6 +148,16 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/glass, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/powered) +"mB" = ( +/obj/machinery/door/airlock/external{ + dir = 8 + }, /turf/open/floor/plasteel, /area/ruin/powered) "mN" = ( @@ -166,7 +185,15 @@ /turf/open/floor/plasteel, /area/ruin/powered) "oc" = ( -/obj/machinery/door/airlock/glass, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, /turf/open/floor/plasteel, /area/ruin/powered) "om" = ( @@ -284,7 +311,15 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, /turf/open/floor/plasteel, /area/ruin/powered) "yR" = ( @@ -353,7 +388,15 @@ /turf/open/floor/plasteel, /area/ruin/powered) "FG" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, /turf/open/floor/plasteel, /area/ruin/powered) "FR" = ( @@ -453,6 +496,14 @@ /obj/structure/glowshroom/single, /turf/open/floor/plasteel, /area/ruin/powered) +"Mq" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/industrial/warning/corner, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ruin/powered) "Nk" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/salad/jungle{ @@ -471,6 +522,10 @@ "OT" = ( /obj/machinery/door/airlock, /obj/effect/decal/cleanable/blood/footprints, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, /turf/open/floor/plasteel, /area/ruin/powered) "OX" = ( @@ -490,6 +545,15 @@ /obj/structure/spacevine/dense, /turf/open/floor/plasteel, /area/ruin/powered) +"Pz" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/powered) "Qa" = ( /obj/structure/spacevine/dense, /turf/open/floor/plasteel, @@ -507,7 +571,15 @@ /turf/open/floor/plasteel, /area/ruin/powered) "Qu" = ( -/obj/structure/door_assembly/door_assembly_com, +/obj/structure/door_assembly/door_assembly_com{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, /turf/open/floor/plasteel, /area/ruin/powered) "QJ" = ( @@ -515,7 +587,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ - locked = 1 + locked = 1; + dir = 4 }, /turf/open/floor/plasteel, /area/ruin/powered) @@ -562,8 +635,17 @@ }, /turf/closed/wall, /area/ruin/powered) +"Ti" = ( +/obj/machinery/door/airlock, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/powered) "TO" = ( /obj/structure/salvageable/seed, +/obj/effect/turf_decal/box, /turf/open/floor/plasteel, /area/ruin/powered) "TV" = ( @@ -627,7 +709,13 @@ /area/ruin/powered) "Zq" = ( /obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, /area/ruin/powered) "ZO" = ( /obj/structure/bed, @@ -654,9 +742,9 @@ Sh "} (2,1,1) = {" Np -Zq -OX -OX +Mq +Pz +Pz Zq ZU aM @@ -669,8 +757,8 @@ nJ (3,1,1) = {" ZU ZU -jK -jK +mB +mB wD ZU OX @@ -828,7 +916,7 @@ QJ ZU ZU AD -FG +Ti uC Se Qc diff --git a/_maps/RandomRuins/JungleRuins/jungle_demon.dmm b/_maps/RandomRuins/JungleRuins/jungle_demon.dmm index 034e8c5a2e76..5c518ed7dd51 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_demon.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_demon.dmm @@ -281,6 +281,12 @@ /obj/item/gun/ballistic/shotgun/bulldog/unrestricted, /turf/open/floor/plasteel/dark, /area/ruin/powered) +"AB" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered) "AF" = ( /obj/vehicle/ridden/wheelchair, /turf/open/floor/plasteel/dark, @@ -924,7 +930,7 @@ Ed EY EY EY -gL +AB kb Ed Ed diff --git a/_maps/RandomRuins/JungleRuins/jungle_interceptor.dmm b/_maps/RandomRuins/JungleRuins/jungle_interceptor.dmm index a730528f3afb..3365355f9c2d 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_interceptor.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_interceptor.dmm @@ -52,15 +52,6 @@ /obj/structure/spacevine, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/jungle/interceptor/starhall) -"aB" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "condorwindows"; - name = "External Shutters" - }, -/obj/structure/spacevine, -/turf/open/floor/plating, -/area/ruin/jungle/interceptor/crewquarters) "aG" = ( /obj/structure/lattice, /turf/open/floor/plating/dirt/jungle/dark, @@ -92,7 +83,6 @@ name = "External Shutters" }, /obj/structure/frame/machine, -/obj/structure/spacevine, /turf/open/floor/plating/airless, /area/ruin/jungle/interceptor/crashsite) "aZ" = ( @@ -145,10 +135,7 @@ icon_state = "1-2" }, /obj/structure/catwalk/over/plated_catwalk/dark, -/obj/machinery/light/small/broken{ - dir = 8; - pixel_y = 14 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) "bh" = ( @@ -173,11 +160,7 @@ pixel_x = -25; pixel_y = -10 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -200,9 +183,7 @@ dir = 1; id = "starlauncherone" }, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/starlauncherone) "bI" = ( @@ -233,9 +214,7 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/crashsite) "bQ" = ( @@ -255,10 +234,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/item/shard, -/obj/machinery/light/small/broken{ - dir = 4; - pixel_y = 12 - }, /turf/open/floor/plasteel/tech/grid, /area/ruin/jungle/interceptor/security) "bS" = ( @@ -273,6 +248,10 @@ /obj/machinery/power/smes/shuttle{ dir = 1 }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters" + }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) "bV" = ( @@ -284,10 +263,6 @@ /area/ruin/jungle/interceptor/bridge) "ca" = ( /obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "condorwindows"; - name = "External Shutters" - }, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/porthall) "cb" = ( @@ -330,7 +305,9 @@ /turf/open/floor/plating, /area/ruin/jungle/interceptor/porthall) "co" = ( -/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -397,6 +374,10 @@ /obj/machinery/power/smes/shuttle{ dir = 1 }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters" + }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/starhall) "cL" = ( @@ -654,12 +635,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/airlock/command/glass, +/obj/machinery/door/airlock/command/glass{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/door/poddoor/shutters/preopen{ - id = "bridgeshutters" + id = "bridgeshutters"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -750,11 +734,7 @@ pixel_x = 25; pixel_y = -6 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/spacevine, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/crashsite) @@ -789,14 +769,10 @@ dir = 4 }, /obj/effect/decal/cleanable/robot_debris/gib, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25; - pixel_x = 5 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/light_switch{ dir = 1; - pixel_x = -7; + pixel_x = -10; pixel_y = -23 }, /turf/open/floor/plasteel/mono/dark, @@ -833,6 +809,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starlauncherone) +"gm" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/jungle/interceptor/starhall) "gq" = ( /obj/machinery/door/window/northleft, /obj/effect/turf_decal/industrial/warning{ @@ -865,9 +850,7 @@ /obj/structure/curtain/cloth, /obj/machinery/door/window/westleft, /obj/effect/decal/remains/human, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/effect/turf_decal/corner/opaque/black{ icon_state = "siding_line"; dir = 4 @@ -892,6 +875,10 @@ /obj/machinery/power/smes/shuttle{ dir = 1 }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters" + }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/porthall) "gD" = ( @@ -980,11 +967,12 @@ /area/ruin/jungle/interceptor/crashsite) "hC" = ( /obj/effect/spawner/structure/window/shuttle, +/obj/structure/spacevine, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, -/obj/structure/spacevine, /turf/open/floor/plating, /area/ruin/jungle/interceptor/starlauncherone) "hD" = ( @@ -993,9 +981,7 @@ }, /obj/structure/catwalk/over, /obj/structure/spacevine, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) "hE" = ( @@ -1061,9 +1047,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/tech/techmaint, @@ -1098,9 +1082,7 @@ /obj/structure/frame/machine, /obj/item/stack/cable_coil/cut/green, /obj/item/stack/ore/salvage/scrapmetal, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starhall) "if" = ( @@ -1172,6 +1154,10 @@ /obj/machinery/power/smes/shuttle{ dir = 1 }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters" + }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/starhall) "iC" = ( @@ -1207,10 +1193,6 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "condorwindows"; - name = "External Shutters" - }, /turf/open/floor/plating/airless, /area/ruin/jungle/interceptor/crashsite) "jf" = ( @@ -1295,11 +1277,7 @@ pixel_x = 25; pixel_y = -6 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plating, /area/ruin/jungle/interceptor/starhall) "jM" = ( @@ -1364,9 +1342,7 @@ /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starlaunchertwo) "km" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/tech, @@ -1418,9 +1394,7 @@ /obj/item/shard, /obj/effect/decal/cleanable/glass, /obj/structure/spacevine, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/jungle/interceptor/starhall) "li" = ( @@ -1621,15 +1595,8 @@ /area/ruin/jungle/interceptor/crashsite) "nw" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 22; - pixel_y = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, +/obj/item/radio/intercom/wideband/directional/east, +/obj/item/radio/intercom/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, @@ -1641,7 +1608,8 @@ /area/ruin/jungle/interceptor/crashsite) "nA" = ( /obj/machinery/door/poddoor/shutters/preopen{ - id = "bridgeshutters" + id = "bridgeshutters"; + dir = 4 }, /obj/structure/lattice{ icon_state = "lattice-127" @@ -1669,7 +1637,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/starlauncherone) @@ -1731,9 +1700,7 @@ "oj" = ( /obj/effect/turf_decal/industrial/warning, /obj/machinery/door/firedoor/border_only, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/dark, /area/ruin/jungle/interceptor/afthall) @@ -1742,11 +1709,7 @@ icon_state = "0-4" }, /obj/structure/table, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 6; - pixel_x = -6 - }, +/obj/item/radio/intercom/directional/south, /obj/machinery/button/massdriver{ id = "starlaunchertwo"; name = "starboard launcher two button"; @@ -1795,17 +1758,25 @@ pixel_x = 25; pixel_y = -9 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ icon_state = "1-2" }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/starlaunchertwo) +"oY" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/jungle/interceptor/security) "oZ" = ( /obj/effect/turf_decal/corner/opaque/purple/three_quarters{ icon_state = "borderfloorcorner_white"; @@ -1919,9 +1890,7 @@ /obj/structure/frame/computer{ anchored = 1 }, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/tech, /area/ruin/jungle/interceptor/bridge) "pW" = ( @@ -1939,7 +1908,9 @@ /turf/open/floor/plating/dirt/jungle/dark/lit, /area/ruin/jungle/interceptor/crashsite) "qa" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, @@ -1961,9 +1932,7 @@ /turf/open/floor/plasteel/tech, /area/ruin/jungle/interceptor/forehall) "qf" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/effect/decal/cleanable/robot_debris/gib, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -1991,10 +1960,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light/small/broken{ - dir = 4; - pixel_y = 12 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/starlaunchertwo) "ql" = ( @@ -2013,9 +1979,7 @@ pixel_y = -23 }, /obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/spacevine, /turf/open/floor/plasteel/tech/techmaint, @@ -2044,9 +2008,7 @@ /obj/effect/turf_decal/corner/opaque/bottlegreen/border{ dir = 5 }, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starhall) "qy" = ( @@ -2159,9 +2121,7 @@ "rH" = ( /obj/effect/turf_decal/corner_steel_grid/full, /obj/machinery/airalarm/directional/south, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/jungle/interceptor/starhall) "rO" = ( @@ -2209,16 +2169,10 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "condorwindows"; - name = "External Shutters" - }, /turf/open/floor/plating/airless, /area/ruin/jungle/interceptor/starhall) "sf" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/structure/lattice{ icon_state = "lattice-13" }, @@ -2277,9 +2231,7 @@ /obj/structure/lattice{ icon_state = "lattice-127" }, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plating/dirt/jungle/dark/lit, /area/ruin/jungle/interceptor/bridge) "sV" = ( @@ -2329,9 +2281,7 @@ dir = 10 }, /obj/structure/frame/machine, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starhall) @@ -2579,7 +2529,9 @@ /turf/open/floor/wood, /area/ruin/jungle/interceptor/starhall) "vx" = ( -/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -2600,6 +2552,14 @@ }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) +"vF" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bridgeshutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/jungle/interceptor/bridge) "vG" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/jungle/interceptor/security) @@ -2607,7 +2567,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 8 }, /obj/structure/spacevine, /turf/open/floor/plating, @@ -2633,7 +2594,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/starlaunchertwo) @@ -2650,9 +2612,7 @@ /obj/effect/turf_decal/corner/opaque/blue/three_quarters{ dir = 4 }, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/jungle/interceptor/afthall) "wn" = ( @@ -2663,7 +2623,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/forehall) @@ -2723,10 +2684,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken{ - dir = 8; - pixel_y = 14 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) "wJ" = ( @@ -2764,9 +2722,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/dark, /area/ruin/jungle/interceptor/starhall) @@ -2777,6 +2733,14 @@ "wS" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/jungle/interceptor/forehall) +"wT" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bridgeshutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/jungle/interceptor/bridge) "wU" = ( /obj/structure/spacevine, /turf/closed/wall/mineral/titanium, @@ -2875,9 +2839,7 @@ icon_state = "borderfloor_white"; dir = 4 }, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel/white, /area/ruin/jungle/interceptor/porthall) "xY" = ( @@ -2912,7 +2874,7 @@ /obj/structure/toilet{ dir = 4 }, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/decal/remains/human, /obj/item/clothing/under/rank/civilian/janitor/sanitation_tech, /obj/item/clothing/head/soft/purple, @@ -2972,7 +2934,8 @@ "yw" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 8 }, /obj/item/shard, /obj/structure/grille, @@ -3010,9 +2973,7 @@ "yZ" = ( /obj/effect/turf_decal/corner_steel_grid/full, /obj/item/kirbyplants/dead, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/jungle/interceptor/starhall) "za" = ( @@ -3032,6 +2993,10 @@ /obj/machinery/power/smes/shuttle{ dir = 1 }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters" + }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) "zd" = ( @@ -3124,9 +3089,7 @@ /obj/item/clothing/gloves/combat, /obj/item/clothing/shoes/jackboots, /obj/item/ammo_box/c9mm, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /obj/effect/turf_decal/corner/transparent/bar/three_quarters{ dir = 4 }, @@ -3260,10 +3223,6 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/plastic, -/obj/machinery/light/small/broken{ - dir = 8; - pixel_y = 14 - }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crewquarters) "Bh" = ( @@ -3405,11 +3364,7 @@ pixel_x = -25; pixel_y = -10 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/west, /obj/structure/cable/green{ icon_state = "1-2" }, @@ -3445,18 +3400,22 @@ pixel_x = 25; pixel_y = -6 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/east, /obj/machinery/door/firedoor/border_only, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/starhall) +"CN" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters"; + dir = 4 + }, +/obj/structure/spacevine, +/turf/open/floor/plating, +/area/ruin/jungle/interceptor/crewquarters) "CO" = ( /obj/structure/flora/ausbushes/fernybush, /obj/structure/flora/ausbushes/grassybush, @@ -3525,7 +3484,8 @@ }, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 8 }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/security) @@ -3556,9 +3516,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/white, /area/ruin/jungle/interceptor/porthall) @@ -3569,10 +3527,7 @@ /area/ruin/jungle/interceptor/crashsite) "DG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/firealarm{ - pixel_y = 25; - pixel_x = 5 - }, +/obj/machinery/firealarm/directional/north, /obj/machinery/light_switch{ pixel_y = 23; pixel_x = -7 @@ -3584,7 +3539,9 @@ /obj/structure/cable/orange{ icon_state = "4-8" }, -/obj/machinery/door/airlock/security, +/obj/machinery/door/airlock/security{ + dir = 4 + }, /obj/effect/turf_decal/corner/opaque/red/full, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -3659,19 +3616,12 @@ /obj/effect/turf_decal/corner/opaque/bottlegreen/border{ dir = 5 }, -/obj/machinery/light/small/broken{ - dir = 4; - pixel_y = 12 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starhall) "ES" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/crashsite) "EY" = ( @@ -3699,9 +3649,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/catwalk/over/plated_catwalk/dark, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/starlauncherone) "Fk" = ( @@ -3838,9 +3786,7 @@ /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) "GM" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) "GT" = ( @@ -3852,10 +3798,7 @@ /obj/structure/cable/green{ icon_state = "1-9" }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 12 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ruin/jungle/interceptor/starhall) "GU" = ( @@ -3965,7 +3908,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/afthall) @@ -4023,7 +3967,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/airlock/command/glass, +/obj/machinery/door/airlock/command/glass{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "4-8" }, @@ -4031,7 +3977,8 @@ dir = 4 }, /obj/machinery/door/poddoor/shutters/preopen{ - id = "bridgeshutters" + id = "bridgeshutters"; + dir = 8 }, /turf/open/floor/plasteel/tech, /area/ruin/jungle/interceptor/bridge) @@ -4039,7 +3986,9 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, @@ -4061,7 +4010,9 @@ /turf/open/floor/plating/dirt/jungle/dark/lit, /area/ruin/jungle/interceptor/afthall) "Iw" = ( -/obj/machinery/door/airlock/public, +/obj/machinery/door/airlock/public{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, @@ -4152,11 +4103,7 @@ pixel_x = -25; pixel_y = -10 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) @@ -4240,10 +4187,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light/small/broken{ - dir = 4; - pixel_y = 12 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starlauncherone) "JZ" = ( @@ -4281,6 +4225,10 @@ /obj/item/stack/cable_coil/cut/orange, /obj/effect/decal/cleanable/dirt, /obj/structure/spacevine, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters" + }, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/porthall) "Kr" = ( @@ -4347,6 +4295,7 @@ pixel_x = -25; pixel_y = -16 }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crewquarters) "KW" = ( @@ -4362,6 +4311,7 @@ /obj/structure/cable/green{ icon_state = "0-8" }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/starlauncherone) "Ld" = ( @@ -4369,17 +4319,11 @@ dir = 4 }, /obj/machinery/suit_storage_unit/open, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/jungle/interceptor/afthall) "Le" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/east, /obj/machinery/light_switch{ dir = 8; pixel_x = 25; @@ -4389,12 +4333,13 @@ /area/ruin/jungle/interceptor/starhall) "Lf" = ( /obj/effect/spawner/structure/window/shuttle, +/obj/structure/spacevine, +/obj/structure/spacevine, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, -/obj/structure/spacevine, -/obj/structure/spacevine, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/starlauncherone) "Lh" = ( @@ -4554,13 +4499,6 @@ /obj/item/clothing/under/rank/prisoner, /obj/item/clothing/shoes/sneakers/orange, /obj/item/clothing/shoes/sneakers/orange, -/obj/machinery/button/massdriver{ - id = "starlauncherone"; - name = "starboard launcher one button"; - pixel_x = 4; - dir = 1; - pixel_y = 10 - }, /obj/structure/bed, /obj/item/bedsheet/orange, /obj/effect/turf_decal/corner/opaque/orange/bordercee, @@ -4572,6 +4510,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/decal/cleanable/glass, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel/tech/grid, /area/ruin/jungle/interceptor/security) "MF" = ( @@ -4817,11 +4756,6 @@ /area/ruin/jungle/interceptor/forehall) "Oy" = ( /obj/structure/table, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 6; - pixel_x = 5 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, @@ -5108,9 +5042,7 @@ /turf/open/floor/plating, /area/ruin/jungle/interceptor/starhall) "Rb" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/porthall) @@ -5127,7 +5059,7 @@ }, /obj/structure/frame/machine, /obj/item/stack/cable_coil/cut/green, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/turf_decal/siding/wood{ dir = 6 }, @@ -5157,9 +5089,7 @@ dir = 1; id = "starlaunchertwo" }, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/starlaunchertwo) "RD" = ( @@ -5203,9 +5133,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/crashsite) @@ -5262,11 +5190,7 @@ pixel_x = 25; pixel_y = -6 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/jungle/interceptor/starhall) "Sr" = ( @@ -5330,7 +5254,9 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/jungle/interceptor/afthall) "SG" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /obj/structure/cable/orange{ icon_state = "4-8" }, @@ -5378,6 +5304,15 @@ /obj/effect/decal/cleanable/plastic, /turf/open/floor/wood, /area/ruin/jungle/interceptor/crewquarters) +"SP" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/jungle/interceptor/starhall) "ST" = ( /obj/machinery/power/terminal, /obj/structure/cable/orange{ @@ -5674,10 +5609,6 @@ /area/ruin/jungle/interceptor/starhall) "UZ" = ( /obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "condorwindows"; - name = "External Shutters" - }, /obj/structure/frame/machine, /obj/item/stack/cable_coil/cut/orange, /obj/item/stack/ore/salvage/scrapmetal, @@ -5714,9 +5645,7 @@ /obj/effect/turf_decal/corner/opaque/bottlegreen/border{ dir = 9 }, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starhall) "Vq" = ( @@ -5729,17 +5658,15 @@ /obj/machinery/camera/autoname{ dir = 1 }, -/obj/machinery/light/small/broken{ - dir = 4; - pixel_y = 12 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starlauncherone) "Vr" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "condorwindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 8 }, /turf/open/floor/plating, /area/ruin/jungle/interceptor/crashsite) @@ -5836,6 +5763,15 @@ /obj/structure/flora/ausbushes/leafybush, /turf/open/floor/plating/grass/jungle/lit, /area/ruin/jungle/interceptor/crashsite) +"Wc" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "condorwindows"; + name = "External Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/jungle/interceptor/crashsite) "We" = ( /obj/structure/cable/orange{ icon_state = "2-8" @@ -5895,9 +5831,7 @@ /turf/closed/wall/mineral/titanium, /area/ruin/jungle/interceptor/crewquarters) "Ww" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, @@ -5926,9 +5860,7 @@ /obj/structure/table, /obj/machinery/chem_dispenser/drinks, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/wood, /area/ruin/jungle/interceptor/starhall) "WP" = ( @@ -5967,7 +5899,7 @@ /obj/effect/turf_decal/corner/opaque/blue/border{ dir = 6 }, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel/white, /area/ruin/jungle/interceptor/porthall) "Xh" = ( @@ -6055,7 +5987,7 @@ /obj/effect/turf_decal/corner/opaque/bottlegreen/border{ dir = 10 }, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/jungle/interceptor/starhall) @@ -6094,7 +6026,9 @@ /area/ruin/jungle/interceptor/crashsite) "Ya" = ( /obj/structure/catwalk/over/plated_catwalk/dark, -/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, /obj/structure/catwalk/over/plated_catwalk/dark, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -6233,11 +6167,7 @@ dir = 1; pixel_y = 2 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 6; - pixel_x = 5 - }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plating/rust, /area/ruin/jungle/interceptor/crashsite) "YN" = ( @@ -6298,7 +6228,9 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -6638,7 +6570,7 @@ Hv bA OQ Vr -Vr +Wc FE FE OQ @@ -7055,7 +6987,7 @@ Be JZ Hv FE -Vr +Wc rs tD bI @@ -7214,7 +7146,7 @@ bA FE FE OQ -Vr +Wc SW qJ OQ @@ -7528,7 +7460,7 @@ au YY YY GZ -Dr +oY Dr vG Ah @@ -7646,7 +7578,7 @@ hH Ok xP KU -Rd +wT Ms zd fi @@ -7964,9 +7896,9 @@ Wo BU Yi Mb -Rd +vF nA -Rd +wT Ik Km Km @@ -8003,7 +7935,7 @@ Zx Zx ao ql -aB +CN RK Hn gx @@ -8114,7 +8046,7 @@ iO vl vl Wt -aB +CN RK RK Wt @@ -8594,7 +8526,7 @@ Gc Gc Ni hC -hC +nF nF Ni Gc @@ -8824,7 +8756,7 @@ DM XE DM DM -pC +SP wO XE cL @@ -8977,9 +8909,9 @@ Tw uv Uu wO -pC -pC -pC +gm +gm +gm XE DM DM diff --git a/_maps/RandomRuins/JungleRuins/jungle_medtech_outbreak.dmm b/_maps/RandomRuins/JungleRuins/jungle_medtech_outbreak.dmm index 32981833c528..65068fa3fe27 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_medtech_outbreak.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_medtech_outbreak.dmm @@ -8,11 +8,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle) -"am" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "ap" = ( /obj/structure/cable{ icon_state = "1-2" @@ -20,12 +15,8 @@ /obj/item/reagent_containers/syringe, /turf/open/floor/plasteel/tech, /area/ship/science) -"as" = ( -/obj/item/bodybag, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, +"ar" = ( +/turf/open/floor/plating/grass/jungle/lit, /area/ruin/jungle) "aF" = ( /obj/effect/turf_decal/industrial/warning{ @@ -41,6 +32,10 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) +"bk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "bm" = ( /obj/structure/railing{ dir = 9 @@ -72,11 +67,17 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/science/storage) -"ch" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) +"bY" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/effect/gibspawner/generic, +/turf/open/floor/plasteel/white, +/area/ship/science/storage) "cn" = ( /obj/effect/turf_decal/corner/opaque/mauve, /obj/effect/decal/cleanable/blood/bubblegum, @@ -86,10 +87,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"db" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "dh" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 10 @@ -102,14 +99,13 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) -"dq" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 +"dl" = ( +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + dir = 6 }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel/white, -/area/ship/science) +/area/ship/science/storage) "dz" = ( /obj/effect/turf_decal/trimline/opaque/mauve/filled/warning{ dir = 1 @@ -133,25 +129,16 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"dJ" = ( -/obj/effect/turf_decal/corner/opaque/mauve{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/item/stack/tile/plasteel/dark{ - pixel_x = 8; - pixel_y = -10 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) "dN" = ( /obj/effect/turf_decal/industrial/warning/dust{ dir = 8 }, /turf/open/floor/plasteel/white, /area/ship/science) +"dO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "dR" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 4 @@ -182,6 +169,9 @@ }, /turf/open/floor/plating, /area/ship/crew/office) +"ek" = ( +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "eo" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 6 @@ -226,34 +216,22 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/bridge) -"eS" = ( -/obj/machinery/light/broken, -/obj/machinery/button/door{ - desc = "A door remote bast door switch."; - id = "lablock2"; - name = "Lab #2 lockdown"; - pixel_x = 7; - pixel_y = -23 - }, -/obj/machinery/button/door{ - id = "office_bolts"; - name = "Office door bolts"; - normaldoorcontrol = 1; - pixel_y = -33; - specialfunctions = 4 +"fa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/machinery/computer/rdconsole{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/button/door{ - desc = "A door remote bast door switch."; - id = "lablock1"; - name = "Lab #1 lockdown"; - pixel_x = -7; - pixel_y = -23 +/obj/machinery/light/small/broken/directional/east, +/obj/effect/mob_spawn/human/corpse/assistant{ + mob_name = "Dr. Hibert Lacroix"; + outfit = /datum/outfit/job/scientist; + short_desc = "Looks ike the man chose starvation in plase of beeing eaten alive." }, -/turf/open/floor/wood, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/engineering/electrical) "fe" = ( /obj/effect/decal/cleanable/dirt/dust, /mob/living/simple_animal/hostile/zombie{ @@ -290,32 +268,14 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"fu" = ( -/obj/effect/turf_decal/corner/opaque/green{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +"fv" = ( +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/science/storage) "fC" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, /area/ruin/jungle) -"fE" = ( -/obj/effect/turf_decal/industrial/warning/corner, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood/bubblegum, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) "fG" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/grass/jungle, @@ -339,6 +299,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"gu" = ( +/obj/effect/decal/fakelattice, +/turf/open/floor/plating, +/area/ship/medical) "gv" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 9 @@ -371,18 +335,46 @@ }, /turf/open/floor/grass, /area/ruin/jungle) +"gQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/structure/flippedtable{ + dir = 8 + }, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "gY" = ( /obj/effect/decal/cleanable/blood/gibs/up, /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/plasteel/stairs, /area/ship/crew/office) -"hd" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass/jungle/lit, +"hg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/pill/patch/synthflesh{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) +"hv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/paper/crumpled/bloody{ + desc = "written hastly on a blood stained peace of paper."; + info = "They breached all the doors, I am the last one, its over for me.."; + name = "MedTech chmist's last note"; + pixel_x = 15; + pixel_y = 1 + }, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) +"hB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, /area/ruin/jungle) "hF" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -399,7 +391,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/public{ - name = "Administrative office" + name = "Administrative office"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ship/hallway) @@ -452,7 +445,8 @@ name = "High Security Chem-lab #1" }, /obj/machinery/door/poddoor{ - id = "lablock1" + id = "lablock1"; + dir = 4 }, /turf/open/floor/plasteel/white, /area/ship/science) @@ -465,37 +459,20 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"ir" = ( +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 5 + }, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "iC" = ( /obj/effect/turf_decal/industrial/warning{ dir = 9 }, /turf/open/floor/plasteel/white, /area/ship/science) -"iM" = ( -/obj/effect/decal/fakelattice, -/turf/open/floor/plating, -/area/ship/medical) -"iR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/ammo_casing{ - dir = 4; - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/ammo_casing{ - dir = 8; - pixel_x = 5; - pixel_y = -10 - }, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) -"iY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "jc" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/railing{ @@ -552,6 +529,12 @@ /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/plasteel/white, /area/ship/science/storage) +"jG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners, +/obj/machinery/light/floor, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "jI" = ( /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/plasteel/white, @@ -571,43 +554,21 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/hallway) -"jS" = ( -/obj/structure/chair/plastic, -/turf/open/floor/grass, -/area/ruin/jungle) -"kb" = ( +"jN" = ( /obj/effect/turf_decal/corner/opaque/mauve{ - dir = 6 + dir = 9 }, /obj/effect/turf_decal/corner/opaque/mauve{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/mothpill{ - pixel_y = 32 - }, -/obj/machinery/light/broken{ - dir = 1 + dir = 4 }, +/obj/structure/chair/office, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"ke" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/mob_spawn/human/corpse/assistant{ - mob_name = "Dr. Hibert Lacroix"; - outfit = /datum/outfit/job/scientist; - short_desc = "Looks ike the man chose starvation in plase of beeing eaten alive." - }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) +"jS" = ( +/obj/structure/chair/plastic, +/turf/open/floor/grass, +/area/ruin/jungle) "kp" = ( /obj/structure/chair/office/light, /obj/effect/decal/cleanable/blood/gibs/core, @@ -669,19 +630,6 @@ /obj/machinery/chem_heater, /turf/open/floor/plasteel/tech, /area/ship/science) -"kG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/effect/gibspawner/generic, -/turf/open/floor/plasteel/white, -/area/ship/science/storage) "kH" = ( /obj/effect/turf_decal/trimline/opaque/blue/filled/corner, /obj/item/ammo_casing{ @@ -691,13 +639,23 @@ }, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"kL" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +"kI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/ammo_casing{ + dir = 4; + pixel_x = 5; + pixel_y = 7 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/item/ammo_casing{ + dir = 8; + pixel_x = 5; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "kM" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 9 @@ -709,18 +667,33 @@ dir = 4 }, /obj/machinery/door/airlock/virology{ - name = "High Security Chem-lab #2" + name = "High Security Chem-lab #2"; + dir = 4 }, /obj/machinery/door/poddoor/preopen{ - id = "lablock2" + id = "lablock2"; + dir = 8 }, /turf/open/floor/plasteel/white, /area/ship/medical) +"kP" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "kT" = ( /obj/effect/gibspawner/human, /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/plating, /area/ship/science) +"ln" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/science) "lw" = ( /obj/structure/railing{ dir = 10 @@ -767,6 +740,21 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/science/storage) +"mb" = ( +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/mob_spawn/human/corpse/assistant{ + outfit = /datum/outfit/job/chemist + }, +/obj/item/gun/ballistic/automatic/pistol/m1911/no_mag{ + pixel_y = -13 + }, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) +"mf" = ( +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/decal/fakelattice, +/turf/open/floor/plating, +/area/ship/medical) "mg" = ( /obj/machinery/door/airlock/maintenance_hatch{ welded = 1 @@ -776,18 +764,16 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) -"mm" = ( -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ +"mo" = ( +/obj/effect/turf_decal/corner/opaque/green{ dir = 6 }, -/obj/machinery/power/apc/auto_name/east{ - start_charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel/white, -/area/ship/science/storage) +/area/ship/science) "mq" = ( /obj/machinery/reagentgrinder{ pixel_y = 4 @@ -821,6 +807,23 @@ }, /turf/open/floor/plasteel/tech, /area/ship/science) +"mJ" = ( +/obj/effect/turf_decal/corner/opaque/mauve{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/paper_bin/carbon{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/effect/decal/cleanable/blood/gibs/torso, +/turf/open/floor/plasteel/white, +/area/ship/hallway) "mN" = ( /obj/structure/table, /obj/item/paper{ @@ -841,18 +844,34 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"mY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/reagent_containers/pill/patch/synthflesh{ - pixel_x = 4; - pixel_y = -5 +"ni" = ( +/obj/effect/turf_decal/corner/opaque/mauve{ + dir = 10 }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "nl" = ( /obj/machinery/power/smes, /turf/open/floor/plating, /area/ship/engineering/electrical) +"nr" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) +"nx" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/science) "nJ" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ @@ -869,21 +888,24 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"nQ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "nS" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, /turf/open/floor/plasteel/white, /area/ship/hallway) -"nX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/stack/medical/ointment{ - pixel_x = -5; - pixel_y = 4 +"oi" = ( +/obj/machinery/door/poddoor/shutters{ + id = "chemdoors"; + name = "MedTech Chemical Manufacturing Facility Shutters"; + dir = 8 }, -/obj/item/ammo_box/magazine/m45/ap, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) +/turf/open/floor/plating, +/area/ship/science/storage) "om" = ( /obj/item/shard{ icon_state = "tiny" @@ -915,17 +937,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science/storage) -"oB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/paper/crumpled/bloody{ - desc = "written hastly on a blood stained peace of paper."; - info = "They breached all the doors, I am the last one, its over for me.."; - name = "MedTech chmist's last note"; - pixel_x = 15; - pixel_y = 1 - }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "oD" = ( /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/plasteel/dark, @@ -960,6 +971,11 @@ /obj/machinery/plumbing/reaction_chamber, /turf/open/floor/plasteel/white, /area/ship/science/storage) +"oN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/shovel, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "oR" = ( /obj/effect/turf_decal/industrial/warning/dust{ dir = 10 @@ -978,22 +994,6 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/white, /area/ship/hallway) -"px" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) -"py" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/ship/science/storage) "pG" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 6 @@ -1034,6 +1034,10 @@ }, /turf/open/floor/plasteel/tech, /area/ship/science) +"pQ" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "pT" = ( /obj/structure/sign/poster/contraband/mothpill, /turf/closed/wall/r_wall, @@ -1079,16 +1083,19 @@ }, /turf/open/floor/plasteel/tech, /area/ship/medical) +"qs" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) "qG" = ( /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ dir = 4 }, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"qO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/dirt/jungle/lit, -/area/ruin/jungle) "qQ" = ( /obj/item/shard{ icon_state = "tiny" @@ -1106,11 +1113,6 @@ /obj/structure/grille/broken, /turf/open/floor/plating, /area/ship/medical) -"re" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "rf" = ( /obj/effect/turf_decal/corner/opaque/orange/full, /mob/living/simple_animal/hostile/zombie, @@ -1127,6 +1129,11 @@ /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/plasteel/white, /area/ship/medical) +"rE" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "rJ" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 5 @@ -1144,23 +1151,28 @@ }, /turf/open/floor/plasteel/tech, /area/ship/science) -"rQ" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 +"sc" = ( +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + dir = 6 }, -/obj/effect/decal/cleanable/blood/bubblegum, -/obj/structure/flippedtable{ - dir = 8 +/obj/machinery/power/apc/auto_name/directional/east{ + start_charge = 0 }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) -"rY" = ( -/obj/machinery/light/broken{ - dir = 1 +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/structure/frame, -/turf/open/floor/plating/catwalk_floor, +/turf/open/floor/plasteel/white, /area/ship/science/storage) +"sv" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) +"sE" = ( +/obj/machinery/light/broken/directional/north, +/obj/effect/gibspawner/generic, +/turf/open/floor/plating, +/area/ship/medical) "sH" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1178,33 +1190,12 @@ /obj/effect/gibspawner/human/bodypartless, /turf/open/floor/plating/catwalk_floor, /area/ship/science/storage) -"sQ" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) -"sZ" = ( -/obj/effect/turf_decal/corner/opaque/green{ - dir = 10 - }, -/obj/machinery/light, -/mob/living/simple_animal/hostile/zombie, -/turf/open/floor/plasteel/white, -/area/ship/medical) "ta" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 5 }, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"te" = ( -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) -"tp" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "tz" = ( /obj/effect/turf_decal/industrial/warning/dust, /obj/effect/decal/cleanable/blood/tracks, @@ -1224,13 +1215,13 @@ }, /turf/open/floor/plasteel/white, /area/ship/science/storage) +"tW" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/science) "tY" = ( /turf/closed/wall, /area/ship/science/storage) -"ub" = ( -/obj/structure/closet/crate/grave, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "uc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/opaque/blue{ @@ -1238,10 +1229,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"ue" = ( -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "ul" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 6 @@ -1251,11 +1238,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) -"us" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/dirt/jungle/lit, -/area/ruin/jungle) "uC" = ( /obj/structure/table/wood/reinforced, /obj/item/paper_bin/bundlenatural{ @@ -1277,11 +1259,6 @@ }, /turf/open/floor/wood, /area/ship/bridge) -"uH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "uM" = ( /obj/structure/table/glass, /obj/effect/turf_decal/corner/opaque/mauve{ @@ -1300,7 +1277,8 @@ "uS" = ( /obj/machinery/door/poddoor/shutters{ id = "chemdoors"; - name = "MedTech Chemical Manufacturing Facility Shutters" + name = "MedTech Chemical Manufacturing Facility Shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ship/science/storage) @@ -1322,6 +1300,19 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/ship/bridge) +"vj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) +"vo" = ( +/obj/effect/turf_decal/corner/opaque/green{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/mob/living/simple_animal/hostile/zombie, +/turf/open/floor/plasteel/white, +/area/ship/medical) "vu" = ( /obj/effect/turf_decal/industrial/warning/dust{ dir = 6 @@ -1329,12 +1320,15 @@ /obj/structure/closet/l3closet/scientist, /turf/open/floor/plasteel/white, /area/ship/science) -"vy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners, -/obj/machinery/light/floor, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) +"vB" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/wood, +/area/ship/bridge) "vU" = ( /obj/item/circuitboard/machine/rdserver, /obj/structure/closet/crate/science, @@ -1344,15 +1338,15 @@ }, /turf/open/floor/plating/catwalk_floor, /area/ship/science/storage) -"we" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/power/apc/auto_name/south{ - equipment = 2; - lighting = 2 +"wi" = ( +/obj/effect/turf_decal/corner/opaque/mauve{ + dir = 10 }, -/turf/open/floor/plasteel/white, -/area/ship/science) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "wl" = ( /obj/structure/table, /obj/item/folder/blue{ @@ -1368,12 +1362,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"wn" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) "wy" = ( /obj/effect/turf_decal/industrial/warning{ dir = 6 @@ -1427,14 +1415,6 @@ /obj/item/wrench/old, /turf/open/floor/plating, /area/ship/engineering/electrical) -"xc" = ( -/obj/effect/turf_decal/corner/opaque/mauve{ - dir = 10 - }, -/obj/machinery/light/broken, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/white, -/area/ship/hallway) "xl" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1450,11 +1430,36 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) +"xm" = ( +/obj/effect/turf_decal/corner/opaque/mauve{ + dir = 10 + }, +/obj/machinery/light/broken/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/white, +/area/ship/hallway) "xu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/jungle) +"xw" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"xD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "xG" = ( /obj/item/ammo_casing{ dir = 8; @@ -1464,10 +1469,20 @@ /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/grass, /area/ruin/jungle) +"xN" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "xO" = ( /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/plasteel/tech, /area/ship/medical) +"xW" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "ya" = ( /turf/open/floor/plasteel/white, /area/ship/science/storage) @@ -1511,26 +1526,17 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plasteel/white, /area/ship/medical) -"yR" = ( -/obj/effect/turf_decal/corner/opaque/mauve{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) -"yS" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/box, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/mauve{ - dir = 5 +"yL" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ship/hallway) +/obj/machinery/light/floor, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) +"yW" = ( +/obj/structure/closet/crate/grave, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "yZ" = ( /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/plating/catwalk_floor, @@ -1542,6 +1548,11 @@ }, /turf/open/floor/plasteel/white, /area/ship/science/storage) +"ze" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "zm" = ( /obj/structure/table/wood/reinforced, /obj/item/flashlight/lamp/green{ @@ -1557,35 +1568,6 @@ }, /turf/open/floor/carpet/blue, /area/ship/bridge) -"zp" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/ammo_casing{ - dir = 10; - pixel_x = -7; - pixel_y = -16 - }, -/obj/item/ammo_casing{ - dir = 4; - pixel_x = 3; - pixel_y = -1 - }, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) -"zq" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/machinery/light/floor, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) -"zr" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "zz" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 1 @@ -1608,16 +1590,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"Aa" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) -"An" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "Av" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 5 @@ -1629,7 +1601,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/research{ - name = "Administrative office" + name = "Administrative office"; + dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/science) @@ -1678,6 +1651,20 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle) +"Bb" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) +"Bc" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/science) "Bg" = ( /obj/structure/chair/office{ dir = 8 @@ -1710,16 +1697,18 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/science) -"Bp" = ( -/obj/effect/decal/cleanable/blood/bubblegum, -/obj/effect/decal/fakelattice, -/turf/open/floor/plating, -/area/ship/medical) "BI" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/grass/jungle, /turf/open/floor/grass, /area/ruin/jungle) +"BJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "BO" = ( /obj/structure/table/reinforced, /obj/machinery/computer{ @@ -1762,23 +1751,6 @@ /obj/item/rack_parts, /turf/open/floor/plating/catwalk_floor, /area/ship/science/storage) -"Cj" = ( -/obj/effect/turf_decal/corner/opaque/mauve{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/paper_bin/carbon{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs/up, -/obj/effect/decal/cleanable/blood/gibs/torso, -/turf/open/floor/plasteel/white, -/area/ship/hallway) "Cu" = ( /obj/structure/closet/crate/large{ name = "construction materials crate" @@ -1790,6 +1762,23 @@ }, /turf/open/floor/plating/catwalk_floor, /area/ship/science/storage) +"Cv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/ammo_casing{ + dir = 10; + pixel_x = -7; + pixel_y = -16 + }, +/obj/item/ammo_casing{ + dir = 4; + pixel_x = 3; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "Cz" = ( /turf/closed/wall/r_wall, /area/ship/medical) @@ -1807,31 +1796,21 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/science) -"CO" = ( -/obj/effect/turf_decal/corner/opaque/mauve{ - dir = 9 - }, +"CS" = ( /obj/effect/turf_decal/corner/opaque/mauve{ - dir = 4 + dir = 5 }, -/obj/structure/chair/office, -/obj/machinery/light/broken{ - dir = 1 +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/stack/tile/plasteel/dark{ + pixel_x = 8; + pixel_y = -10 }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"CP" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/wood, -/area/ship/bridge) "CV" = ( /obj/machinery/door/airlock/research{ - name = "Chemical Factory" + name = "Chemical Factory"; + dir = 4 }, /obj/effect/decal/cleanable/blood/tracks{ dir = 8 @@ -1861,6 +1840,10 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/office) +"Du" = ( +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plating, +/area/ship/science) "Dy" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 9 @@ -1908,13 +1891,21 @@ }, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"DZ" = ( -/obj/effect/decal/cleanable/dirt, +"DX" = ( +/obj/item/ammo_casing{ + dir = 4; + pixel_x = 5; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, /turf/open/floor/plating/dirt/jungle/wasteland/lit, /area/ruin/jungle) "Ei" = ( /obj/machinery/door/airlock/research{ - name = "Chemical Factory" + name = "Chemical Factory"; + dir = 4 }, /turf/open/floor/plasteel/white, /area/ship/science/storage) @@ -1947,19 +1938,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"EE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/shovel, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) -"EI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/bubblegum, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "Fi" = ( /turf/open/floor/plating/catwalk_floor, /area/ship/science/storage) @@ -1967,6 +1945,13 @@ /obj/item/rack_parts, /turf/open/floor/plasteel/dark, /area/ship/science/storage) +"Fx" = ( +/obj/item/bodybag, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "FB" = ( /turf/closed/wall, /area/ship/medical) @@ -1976,15 +1961,6 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"FJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/light/floor, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "FN" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 4 @@ -1997,6 +1973,24 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"FV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/stack/medical/ointment{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/m45/ap, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) +"FX" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/box, +/obj/machinery/light/broken/directional/north, +/obj/effect/turf_decal/corner/opaque/mauve{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/ship/hallway) "FZ" = ( /obj/structure/railing{ dir = 8 @@ -2016,10 +2010,22 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plasteel/white, /area/ship/science/storage) +"GK" = ( +/obj/effect/turf_decal/corner/opaque/green{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/medical) "GY" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/machinery/door/airlock/public/glass{ - name = "Patio" + name = "Patio"; + dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) @@ -2049,12 +2055,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/science) -"Hj" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "Hm" = ( /obj/structure/rack, /obj/item/crowbar/red, @@ -2073,11 +2073,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) -"HB" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "HJ" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 10 @@ -2089,15 +2084,9 @@ dir = 4 }, /obj/structure/window/reinforced/spawner, -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel/tech, -/area/ship/science) -"HT" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel/tech, +/area/ship/science) "HW" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 9 @@ -2131,6 +2120,34 @@ /obj/structure/table_frame, /turf/open/floor/plasteel/tech, /area/ship/crew/office) +"If" = ( +/obj/machinery/light/broken/directional/south, +/obj/machinery/button/door{ + desc = "A door remote bast door switch."; + id = "lablock2"; + name = "Lab #2 lockdown"; + pixel_x = 7; + pixel_y = -23 + }, +/obj/machinery/button/door{ + id = "office_bolts"; + name = "Office door bolts"; + normaldoorcontrol = 1; + pixel_y = -33; + specialfunctions = 4 + }, +/obj/machinery/computer/rdconsole{ + dir = 1 + }, +/obj/machinery/button/door{ + desc = "A door remote bast door switch."; + id = "lablock1"; + name = "Lab #1 lockdown"; + pixel_x = -7; + pixel_y = -23 + }, +/turf/open/floor/wood, +/area/ship/bridge) "Ii" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 8 @@ -2157,13 +2174,6 @@ /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"IH" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "IR" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 9 @@ -2191,9 +2201,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) -"IY" = ( -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "Jw" = ( /obj/effect/decal/cleanable/blood/bubblegum, /obj/item/organ/lungs{ @@ -2211,16 +2218,6 @@ "JC" = ( /turf/closed/wall, /area/ship/hallway) -"JE" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/ship/medical) "JU" = ( /obj/structure/chair/office, /obj/effect/decal/cleanable/blood/tracks{ @@ -2247,6 +2244,13 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) +"Kf" = ( +/obj/effect/turf_decal/industrial/warning/corner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/science) "Ki" = ( /obj/item/stack/tile/plasteel/white, /turf/open/floor/plasteel/white, @@ -2285,6 +2289,11 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"Km" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/dirt/jungle/lit, +/area/ruin/jungle) "Kn" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2303,7 +2312,8 @@ /area/ship/science/storage) "KE" = ( /obj/machinery/door/airlock/public{ - name = "Administrative office" + name = "Administrative office"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ship/hallway) @@ -2321,13 +2331,6 @@ /obj/effect/gibspawner/human, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"KM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "KV" = ( /obj/effect/turf_decal/trimline/opaque/blue/filled/warning{ dir = 4 @@ -2339,6 +2342,11 @@ /obj/effect/decal/cleanable/blood/gibs/bubblegum, /turf/open/floor/plasteel/white, /area/ship/science/storage) +"Lh" = ( +/obj/machinery/light/broken/directional/north, +/obj/structure/frame, +/turf/open/floor/plating/catwalk_floor, +/area/ship/science/storage) "Li" = ( /obj/effect/turf_decal/industrial/warning/dust{ dir = 1 @@ -2432,13 +2440,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"Mv" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/gibspawner/generic, -/turf/open/floor/plating, -/area/ship/medical) "MB" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/decal/cleanable/blood/splatter, @@ -2509,19 +2510,11 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"NB" = ( -/obj/effect/turf_decal/corner/opaque/mauve{ - dir = 10 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/broken, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) +"NG" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "NK" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 9 @@ -2577,10 +2570,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"Oq" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) +"Oo" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/science/storage) "Oy" = ( /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle) @@ -2608,6 +2604,13 @@ /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/plating, /area/ship/crew/office) +"Ps" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/ship/science/storage) "Pu" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 5 @@ -2679,6 +2682,11 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Qa" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "Qc" = ( /turf/open/floor/plasteel/white, /area/ship/medical) @@ -2735,21 +2743,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/medical) -"Qu" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) -"QF" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/science/storage) "QI" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 4 @@ -2783,6 +2776,15 @@ /obj/machinery/door/window/southright, /turf/open/floor/plasteel/white, /area/ship/medical) +"Rg" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/power/apc/auto_name/directional/south{ + equipment = 2; + lighting = 2 + }, +/turf/open/floor/plasteel/white, +/area/ship/science) "Rj" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2811,6 +2813,14 @@ /obj/item/reagent_containers/dropper, /turf/open/floor/plasteel/tech, /area/ship/science) +"Rp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/turf/open/floor/plating/dirt/jungle/wasteland/lit, +/area/ruin/jungle) "Rr" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 5 @@ -2820,13 +2830,6 @@ /obj/effect/gibspawner/human, /turf/open/floor/plasteel/white, /area/ship/hallway) -"Rw" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light/broken, -/turf/open/floor/plasteel/white, -/area/ship/science) "RC" = ( /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/jungle) @@ -2853,14 +2856,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"Sd" = ( -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 5 - }, -/obj/machinery/light/broken, -/turf/open/floor/plasteel/white, -/area/ship/medical) "Se" = ( /obj/effect/decal/cleanable/blood/bubblegum, /obj/item/paper/crumpled/bloody{ @@ -2889,17 +2884,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Sq" = ( -/obj/item/ammo_casing{ - dir = 4; - pixel_x = 5; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 6 - }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "Sr" = ( /obj/item/ammo_casing, /turf/open/floor/plating, @@ -2940,10 +2924,33 @@ /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/grass, /area/ruin/jungle) +"SN" = ( +/obj/effect/turf_decal/corner/opaque/mauve{ + dir = 6 + }, +/obj/effect/turf_decal/corner/opaque/mauve{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/mothpill{ + pixel_y = 32 + }, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) +"SP" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "SQ" = ( /obj/structure/flora/tree/jungle/small, /turf/open/floor/grass, /area/ruin/jungle) +"SU" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "SV" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 5 @@ -3045,11 +3052,6 @@ /obj/effect/turf_decal/trimline/opaque/blue/filled/line, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"Ua" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "Uc" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 10 @@ -3074,17 +3076,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) -"Un" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/storage) -"Uo" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "Ur" = ( /obj/effect/decal/cleanable/blood/bubblegum, /obj/item/organ/liver{ @@ -3097,19 +3088,6 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plating, /area/ship/science/storage) -"Uz" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/science) -"Vj" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/grass/jungle/lit, -/area/ruin/jungle) "Vn" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 10 @@ -3130,6 +3108,11 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) +"Vp" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "Vt" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 9 @@ -3138,10 +3121,12 @@ dir = 6 }, /obj/machinery/door/airlock/virology{ - name = "High Security Chem-lab #2" + name = "High Security Chem-lab #2"; + dir = 4 }, /obj/machinery/door/poddoor/preopen{ - id = "lablock2" + id = "lablock2"; + dir = 4 }, /turf/open/floor/plasteel/white, /area/ship/medical) @@ -3163,7 +3148,8 @@ dir = 9 }, /obj/machinery/door/poddoor{ - id = "lablock1" + id = "lablock1"; + dir = 4 }, /turf/open/floor/plasteel/white, /area/ship/science) @@ -3192,6 +3178,10 @@ /obj/item/gun/ballistic/revolver, /turf/open/floor/wood, /area/ship/bridge) +"VM" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "VY" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 5 @@ -3202,21 +3192,16 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) -"Wl" = ( -/obj/effect/turf_decal/corner/opaque/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) +"Wm" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "Wo" = ( /obj/machinery/door/airlock/research{ - name = "Administrative office" + name = "Administrative office"; + dir = 4 }, /obj/effect/turf_decal/corner/opaque/mauve{ dir = 5 @@ -3226,6 +3211,11 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science) +"Wt" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/tree/jungle, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "Wx" = ( /obj/effect/turf_decal/trimline/opaque/mauve/filled/warning, /obj/effect/turf_decal/siding/wideplating/dark/corner{ @@ -3272,10 +3262,6 @@ /obj/machinery/vending/wardrobe/chem_wardrobe, /turf/open/floor/plasteel/dark, /area/ship/science/storage) -"Xl" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "Xq" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 10 @@ -3289,13 +3275,6 @@ /obj/item/hatchet, /turf/open/floor/plasteel/white, /area/ship/science/storage) -"Xv" = ( -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ - dir = 6 - }, -/obj/machinery/light/broken, -/turf/open/floor/plasteel/white, -/area/ship/science/storage) "Xz" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3320,7 +3299,8 @@ /area/ship/medical) "XO" = ( /obj/machinery/door/airlock/public{ - name = "MedTech Chemical Manufacturing Facility" + name = "MedTech Chemical Manufacturing Facility"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ship/hallway) @@ -3344,6 +3324,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"Yd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/dirt/jungle/lit, +/area/ruin/jungle) "Yj" = ( /turf/open/floor/grass, /area/ruin/jungle) @@ -3358,6 +3342,14 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Yp" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "Yu" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 5 @@ -3378,16 +3370,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) -"Yz" = ( -/obj/effect/decal/cleanable/blood/bubblegum, -/obj/effect/mob_spawn/human/corpse/assistant{ - outfit = /datum/outfit/job/chemist - }, -/obj/item/gun/ballistic/automatic/pistol/m1911/no_mag{ - pixel_y = -13 - }, -/turf/open/floor/plating/dirt/jungle/wasteland/lit, -/area/ruin/jungle) "YJ" = ( /obj/effect/turf_decal/corner/opaque/mauve{ dir = 10 @@ -3408,6 +3390,13 @@ /obj/machinery/vending/coffee, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"YZ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/plating/grass/jungle/lit, +/area/ruin/jungle) "Zc" = ( /obj/effect/turf_decal/corner/opaque/green{ dir = 9 @@ -3479,20 +3468,20 @@ /area/ship/bridge) (1,1,1) = {" -IY -Aa -iY -FJ -DZ +ek +VM +dO +xD +bk Oy -uH +vj Ba -zq -te -IY -ue -db -te +yL +ar +ek +pQ +nr +ar JC JC JC @@ -3501,24 +3490,24 @@ XO JC JC JC -te -Aa -ue +ar +VM +pQ "} (2,1,1) = {" -te -db -Xl +ar +nr +nQ aj RC -uH -DZ -qO -IY -IY -te -HT -te +vj +bk +Yd +ek +ek +ar +SP +ar JC JC Hu @@ -3529,23 +3518,23 @@ aM Vn JC JC -ue -ch +pQ +Qa "} (3,1,1) = {" -ue -Oq -IY +pQ +SU +ek aj -uH -Xl -qO -uH +vj +nQ +Yd +vj aj -te -db -db -Aa +ar +nr +nr +VM jM BO nS @@ -3554,27 +3543,27 @@ Um dh Pz Bh -xc +xm jM -Aa -Oq +VM +SU "} (4,1,1) = {" -te -Xl -te +ar +nQ +ar Eq -uH +vj xu -us -uH -vy -DZ -te -ue -db +Km +vj +jG +bk +ar +pQ +nr jM -yS +FX JU Ke VY @@ -3583,26 +3572,26 @@ kq NY Xq jM -ue -ch +pQ +Qa "} (5,1,1) = {" -HB -te -te -te -uH -Xl -IY +xW +ar +ar +ar +vj +nQ +ek Oy -IY -te -IY -te -HB +ek +ar +ek +ar +xW JC JC -Cj +mJ xl Pu eG @@ -3610,24 +3599,24 @@ pt uM JC JC -db -ue +nr +pQ "} (6,1,1) = {" -te +ar tY tY tY tY -uS +oi uS uS tY tY tY -HB -ue -te +xW +pQ +ar JC JC JC @@ -3636,9 +3625,9 @@ KE JC JC JC -db -ue -Aa +nr +pQ +VM "} (7,1,1) = {" tY @@ -3653,19 +3642,19 @@ VG pZ tY tY -ue -Qu -te -db +pQ +kP +ar +nr Zq NT RV Ib Zq -te -Qu -Aa -db +ar +kP +VM +nr "} (8,1,1) = {" tY @@ -3678,9 +3667,9 @@ ya Ev ya DW -py +Ps tY -te +ar Zq Ss Ss @@ -3692,7 +3681,7 @@ YN YN YN YN -ue +pQ "} (9,1,1) = {" tY @@ -3709,11 +3698,11 @@ lX tY tY Zq -CO +jN SB Qg Yc -yR +wi YN YN nl @@ -3723,7 +3712,7 @@ YN "} (10,1,1) = {" tY -Un +fv Us ya jI @@ -3743,7 +3732,7 @@ LR Wx mg VH -ke +fa ro Hm YN @@ -3794,7 +3783,7 @@ TN gY Bg mN -NB +ni ZU Vu zm @@ -3826,12 +3815,12 @@ ZU vf yt jL -eS +If ZU "} (14,1,1) = {" tY -rY +Lh Cg kx TR @@ -3841,7 +3830,7 @@ HW Xr fn Nh -mm +sc tY jo dR @@ -3871,7 +3860,7 @@ TY tY tY Zq -kb +SN wl lO IG @@ -3879,7 +3868,7 @@ iq ZU kt fp -CP +vB ZU ZU "} @@ -3894,51 +3883,51 @@ Ii ya Ts kH -Xv +dl tY wU Zq GY Ss Zq -dJ +CS mU ZU ZU eQ eQ ZU -db +nr "} (17,1,1) = {" tY tY WF kx -kG +bY KV Ex -QF +Oo qG pf tY tY Yj Yj -rQ +gQ Kk Zq OX gp Zq -te -te -HB -HB -db +ar +ar +xW +xW +nr "} (18,1,1) = {" -ue +pQ tY tY tY @@ -3952,22 +3941,22 @@ jq Sh fC SQ -zp +Cv MB jl Wo Av jl jl -ch -te -zr -te +Qa +ar +Vp +ar "} (19,1,1) = {" -db -te -Ua +nr +ar +ze FB XE Lo @@ -3975,53 +3964,53 @@ TV FB Sh BI -mY -IY -Xl -IY -iR +hg +ek +nQ +ek +kI Dj jl CK IW oR jl -te -te -ue -Ua +ar +ar +pQ +ze "} (20,1,1) = {" -zr -Qu -zr +Vp +kP +Vp FB Rc rt -sZ +vo ZI fG jS -nX +FV gG SL xG -EI +Rp Yj Oi -Uz +Du Nd Tt jl -ue -ch -sQ -am +pQ +Qa +rE +Wt "} (21,1,1) = {" -ue -Uo -ue +pQ +xN +pQ FB Gt yE @@ -4029,80 +4018,80 @@ yh FB Yj ZO -Xl -KM -IY +nQ +hB +ek fC -IY +ek fG jl kT ul vu jl -ue -db -te -zr +pQ +nr +ar +Vp "} (22,1,1) = {" -db -zr -db +nr +Vp +nr Cz Cz kM Vt Cz Cz -IY -oB -as -IY -Xl -Xl +ek +hv +Fx +ek +nQ +nQ Er Er Vx ij Er Er -ue -tp -te -zr +pQ +NG +ar +Vp "} (23,1,1) = {" -ch -ue -iM +Qa +pQ +gu Cz -kL +qs Sj Zw -Sd +ir pT Cz -Yz -Sq -EE -IY +mb +DX +oN +ek Er Er -wn +tW AJ DC -we +Rg Er Er -HB -db -te +xW +nr +ar "} (24,1,1) = {" -ue +pQ om -Bp +mf HX DU Zc @@ -4111,23 +4100,23 @@ hQ QI af Cz -ub -IY +yW +ek Er RG -fE +Kf aF IR Hf HZ -Rw +ln RG Er -ue -Hj +pQ +Wm "} (25,1,1) = {" -ue +pQ qQ CG MV @@ -4150,11 +4139,11 @@ Uc SI hL eF -te -db +ar +nr "} (26,1,1) = {" -te +ar fr Sw SV @@ -4165,7 +4154,7 @@ Rj Zi Li PP -fu +GK gv Qf GZ @@ -4177,11 +4166,11 @@ kp mx Pv eF -ue -te +pQ +ar "} (27,1,1) = {" -Qu +kP fr Sw gD @@ -4193,7 +4182,7 @@ kr PO WP PA -Wl +mo NK tz rJ @@ -4204,11 +4193,11 @@ Qn HJ Pv eF -db -Ua +nr +ze "} (28,1,1) = {" -te +ar fr Qc hT @@ -4231,39 +4220,39 @@ kD iC Pa eF -ue -Aa +pQ +VM "} (29,1,1) = {" -te +ar Cz af -Mv +sE hT Qo jk wS -JE +xw af Cz -ue -ue +pQ +pQ Er RG -px +nx ve oI Rm wQ -dq +Bc Er kC -ue -Vj +pQ +YZ "} (30,1,1) = {" -zr -Oq +Vp +SU Cz Cz Qc @@ -4272,10 +4261,10 @@ SX Ip Cz Cz -db -ch -re -Aa +nr +Qa +sv +VM Er Er bT @@ -4284,34 +4273,34 @@ dN eK Er Er -te -IH -te +ar +BJ +ar "} (31,1,1) = {" -db -ch -te +nr +Qa +ar Cz fr fr fr fr Cz -db -hd -Aa -ch -An -te +nr +Yp +VM +Qa +Bb +ar Er eF eF eF eF Er -ue -Qu -te -ch +pQ +kP +ar +Qa "} diff --git a/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm b/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm index af2dc799c371..d9b2ccc65b42 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm @@ -42,7 +42,7 @@ /obj/structure/cable/yellow{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /obj/effect/turf_decal/siding/wood/corner, @@ -117,7 +117,7 @@ pixel_x = -14; pixel_y = 1 }, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/jungle/paradise/darkmisc) "aM" = ( @@ -267,7 +267,7 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/ruin/jungle/paradise/darkmisc) @@ -321,7 +321,7 @@ /turf/open/floor/plasteel/telecomms_floor, /area/ruin/jungle/paradise/comms) "bW" = ( -/obj/structure/extinguisher_cabinet, +/obj/structure/extinguisher_cabinet/directional/north, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/jungle/paradise/shuttle) "bX" = ( @@ -485,9 +485,7 @@ /obj/item/weldingtool, /obj/item/wirecutters, /obj/item/stack/cable_coil, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel, /area/ruin/jungle/paradise/shuttle) "da" = ( @@ -637,9 +635,7 @@ /area/ruin/jungle/paradise/darkmisc) "dU" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel, /area/ruin/jungle/paradise/shuttle) "dW" = ( @@ -1212,9 +1208,7 @@ "hp" = ( /obj/structure/flora/rock/jungle, /obj/structure/flora/grass/jungle/b, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle/paradise/darkmisc) "hr" = ( @@ -1315,9 +1309,7 @@ /area/ruin/jungle/paradise/comms) "hX" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel, /area/ruin/jungle/paradise/shuttle) "hY" = ( @@ -1342,7 +1334,7 @@ /turf/open/water/jungle, /area/ruin/jungle/paradise/misc) "ie" = ( -/obj/structure/extinguisher_cabinet, +/obj/structure/extinguisher_cabinet/directional/north, /turf/closed/wall/mineral/titanium, /area/ruin/jungle/paradise/shuttle) "ik" = ( @@ -1367,8 +1359,7 @@ /turf/closed/wall/mineral/wood, /area/ruin/jungle/paradise/misc) "iq" = ( -/obj/machinery/light{ - dir = 8; +/obj/machinery/light/directional/west{ light_color = "#e8eaff" }, /turf/open/floor/plating/dirt/jungle, @@ -1648,10 +1639,8 @@ pixel_x = -2; pixel_y = 8 }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = -24 +/obj/item/radio/intercom/directional/south{ + name = "Station Intercom (General)" }, /turf/open/floor/mineral/titanium/blue, /area/ruin/jungle/paradise/shuttle) @@ -2083,9 +2072,7 @@ /turf/open/water/jungle, /area/ruin/jungle/paradise/darkmisc) "mr" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/radioactive/stack, /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle/paradise/shuttle) @@ -2132,9 +2119,7 @@ }, /area/ruin/jungle/paradise/shuttle) "mA" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/cable{ icon_state = "1-2" }, @@ -2146,9 +2131,7 @@ /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/jungle/paradise/shuttle) "mC" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/concrete/slab_2, /area/ruin/jungle/paradise/construction) @@ -2164,10 +2147,7 @@ "mL" = ( /obj/structure/table, /obj/item/folder/blue, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_y = -27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/mineral/titanium/blue, /area/ruin/jungle/paradise/shuttle) "mO" = ( @@ -2213,15 +2193,13 @@ /turf/open/water/jungle, /area/ruin/jungle/paradise/darkmisc) "nf" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = -24 +/obj/item/radio/intercom/directional/south{ + name = "Station Intercom (General)" }, /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/mineral/titanium/blue, /area/ruin/jungle/paradise/shuttle) "ng" = ( @@ -2331,9 +2309,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 6 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/ruin/jungle/paradise/misc) @@ -2504,7 +2480,7 @@ /obj/structure/cable/yellow{ icon_state = "0-10" }, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ start_charge = 1 }, /turf/open/floor/plasteel, @@ -3021,10 +2997,8 @@ pixel_x = 1; pixel_y = 13 }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = -27 +/obj/item/radio/intercom/directional/west{ + name = "Station Intercom (General)" }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/titanium, @@ -3148,7 +3122,7 @@ /obj/effect/turf_decal/techfloor{ dir = 10 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/railing{ dir = 10; layer = 3.9 @@ -3243,9 +3217,7 @@ /turf/open/floor/plasteel, /area/ruin/jungle/paradise/shuttle) "ta" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/storage/box/bodybags{ pixel_x = 11; pixel_y = 5 @@ -3263,7 +3235,7 @@ /obj/structure/cable/yellow{ icon_state = "0-5" }, -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /obj/effect/decal/cleanable/dirt, @@ -3500,9 +3472,7 @@ }, /area/ruin/jungle/paradise/comms) "uQ" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red/brig, /area/ruin/jungle/paradise/shuttle) @@ -3596,7 +3566,7 @@ /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /turf/open/floor/mineral/titanium/blue, @@ -3618,9 +3588,7 @@ /area/ruin/jungle/paradise/darkmisc) "vD" = ( /obj/effect/decal/cleanable/plasma, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/mineral/titanium/blue, /area/ruin/jungle/paradise/shuttle) "vE" = ( @@ -3679,9 +3647,7 @@ /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle/paradise/darkmisc) "vX" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/pod, /area/ruin/jungle/paradise/misc) "wj" = ( @@ -3774,9 +3740,7 @@ color = "#A47449"; layer = 3.9 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood/walnut, /area/ruin/jungle/paradise/dorms) "wK" = ( @@ -3875,9 +3839,7 @@ /obj/effect/turf_decal/weather/dirt{ dir = 8 }, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/water/jungle, /area/ruin/jungle/paradise/darkmisc) "xw" = ( @@ -4003,7 +3965,7 @@ }, /area/ruin/jungle/paradise/shuttle) "yf" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, @@ -4113,9 +4075,7 @@ /turf/open/floor/pod/dark, /area/ruin/jungle/paradise/med) "zc" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle/paradise/shuttle) "ze" = ( @@ -4182,9 +4142,7 @@ /turf/open/water/jungle, /area/ruin/jungle/paradise/misc) "zz" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/robot_debris{ icon_state = "gib7" }, @@ -4258,9 +4216,7 @@ /turf/open/floor/mineral/titanium/blue, /area/ruin/jungle/paradise/shuttle) "zS" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/structure/table/reinforced, /obj/item/circuitboard/mecha/ripley/peripherals{ pixel_x = -4; @@ -4383,7 +4339,7 @@ /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/jungle/paradise/shuttle) "AB" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/grass/jungle, /area/ruin/jungle/paradise/shuttle) "AL" = ( @@ -4460,9 +4416,7 @@ /turf/open/floor/plating/dirt/jungle/wasteland, /area/ruin/jungle/paradise/darkmisc) "Be" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/mineral/titanium/blue, /area/ruin/jungle/paradise/shuttle) "Bg" = ( @@ -4666,7 +4620,7 @@ /obj/structure/cable/yellow{ icon_state = "4-9" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -4733,9 +4687,7 @@ /area/ruin/jungle/paradise/shuttle) "Da" = ( /obj/structure/frame/machine, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /obj/item/reagent_containers/syringe/penacid{ pixel_x = -5 }, @@ -4766,9 +4718,7 @@ /turf/open/water/jungle, /area/ruin/jungle/paradise/misc) "Dl" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/frame/computer{ dir = 4 }, @@ -4802,7 +4752,7 @@ /area/ruin/jungle/paradise/shuttle) "Dy" = ( /obj/structure/cable/yellow, -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ start_charge = 0 }, /obj/effect/decal/cleanable/dirt, @@ -4987,11 +4937,11 @@ dir = 10 }, /obj/machinery/iv_drip, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /obj/structure/cable/yellow{ icon_state = "0-5" }, -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /turf/open/floor/pod/dark, @@ -5226,7 +5176,7 @@ /obj/structure/cable/yellow{ icon_state = "1-10" }, -/obj/machinery/power/apc/auto_name/east{ +/obj/machinery/power/apc/auto_name/directional/east{ start_charge = 0 }, /obj/structure/cable/yellow, @@ -5416,7 +5366,8 @@ "HG" = ( /obj/machinery/door/airlock/command/glass{ name = "Cockpit"; - req_access_txt = "19" + req_access_txt = "19"; + dir = 4 }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/abandoned, @@ -5476,7 +5427,7 @@ /area/ruin/jungle/paradise/construction) "Ih" = ( /obj/structure/table/wood, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/item/reagent_containers/food/snacks/breadslice/moldy{ pixel_x = -8 }, @@ -5541,7 +5492,7 @@ /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle/paradise/darkmisc) "IT" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/mineral/titanium/blue, /area/ruin/jungle/paradise/shuttle) "IW" = ( @@ -5675,9 +5626,7 @@ /turf/open/water/jungle, /area/ruin/jungle/paradise/misc) "JM" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -5709,7 +5658,7 @@ "Kh" = ( /obj/structure/lattice/catwalk, /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/power/apc/auto_name/east{ +/obj/machinery/power/apc/auto_name/directional/east{ start_charge = 0 }, /obj/structure/cable/yellow{ @@ -5942,9 +5891,7 @@ /turf/open/floor/plasteel/tech, /area/ruin/jungle/paradise/comms) "LA" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle/paradise/shuttle) "LB" = ( @@ -6377,9 +6324,7 @@ /turf/open/floor/plating/grass/jungle, /area/ruin/jungle/paradise/misc) "Ob" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/structure/table_frame, /obj/item/stack/sheet/mineral/silver/five{ pixel_x = 6; @@ -6474,10 +6419,8 @@ pixel_x = -4; pixel_y = 2 }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = -23 +/obj/item/radio/intercom/directional/south{ + name = "Station Intercom (General)" }, /obj/item/book/manual/wiki/security_space_law{ pixel_x = -4; @@ -6712,9 +6655,7 @@ /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/jungle/paradise/darkmisc) "PY" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plating/dirt/jungle/dark, /area/ruin/jungle/paradise/darkmisc) "PZ" = ( @@ -6744,7 +6685,7 @@ /area/ruin/jungle/paradise/construction) "Qn" = ( /obj/effect/turf_decal/siding/wood, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/walnut, /area/ruin/jungle/paradise/dorms) @@ -6861,7 +6802,7 @@ /turf/open/floor/mineral/titanium/white, /area/ruin/jungle/paradise/shuttle) "Ri" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/ashplanet/rocky, /area/ruin/jungle/paradise/mine) "Rn" = ( @@ -7313,9 +7254,7 @@ /turf/open/floor/wood, /area/ruin/jungle/paradise/darkmisc) "UJ" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/structure/frame/computer{ anchored = 1 }, @@ -7734,7 +7673,7 @@ /turf/open/water/jungle, /area/ruin/jungle/paradise/darkmisc) "Xh" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/dirt/jungle, /area/ruin/jungle/paradise/misc) "Xm" = ( @@ -7758,7 +7697,7 @@ /obj/effect/turf_decal/techfloor{ dir = 6 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/railing{ dir = 6; layer = 3.9 @@ -7991,9 +7930,7 @@ pixel_x = 2; pixel_y = -11 }, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/mineral/titanium/blue, /area/ruin/jungle/paradise/shuttle) "YU" = ( @@ -8071,9 +8008,7 @@ dir = 10; id = "mining_internal" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ruin/jungle/paradise/construction) "Zx" = ( @@ -8081,7 +8016,7 @@ /obj/effect/turf_decal/techfloor{ dir = 6 }, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/pod/dark, /area/ruin/jungle/paradise/med) "Zz" = ( diff --git a/_maps/RandomRuins/JungleRuins/jungle_seedling.dmm b/_maps/RandomRuins/JungleRuins/jungle_seedling.dmm index 549dbfb6c708..f4bd9c4fe94a 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_seedling.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_seedling.dmm @@ -43,7 +43,7 @@ /area/ruin/unpowered) "mt" = ( /obj/item/storage/bag/medical, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ruin/powered) "nW" = ( diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_bombmakers_cabin.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_bombmakers_cabin.dmm index a085c7288c5c..d69762eeafb0 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_surface_bombmakers_cabin.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_surface_bombmakers_cabin.dmm @@ -1,8 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aE" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/wood, /area/ruin/powered) "bF" = ( @@ -19,9 +17,7 @@ /area/ruin/powered) "dQ" = ( /mob/living/simple_animal/hostile/rat, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /turf/open/floor/wood, /area/ruin/powered) "eE" = ( @@ -82,7 +78,7 @@ /turf/open/floor/plating/grass/jungle/lit, /area/ruin/powered) "hD" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood, /area/ruin/powered) "iH" = ( @@ -129,8 +125,8 @@ /turf/open/floor/wood, /area/ruin/powered) "lW" = ( -/obj/structure/mineral_door/wood, /obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/wood, /turf/open/floor/wood, /area/ruin/powered) "oD" = ( @@ -266,7 +262,7 @@ /turf/open/floor/wood, /area/ruin/powered) "Bo" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/wood, /area/ruin/powered) "Bz" = ( @@ -288,6 +284,13 @@ }, /turf/open/floor/wood, /area/ruin/powered) +"CR" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/powered) "Dy" = ( /obj/structure/flora/junglebush/b, /turf/open/floor/plating/grass/jungle/lit, @@ -301,15 +304,13 @@ }, /area/ruin/powered) "FT" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood{ icon_state = "wood-broken2" }, /area/ruin/powered) "Gz" = ( -/obj/structure/mineral_door/wood{ - name = "Teachers Office" - }, +/obj/machinery/door/airlock/wood, /turf/open/floor/wood, /area/ruin/powered) "GE" = ( @@ -371,7 +372,7 @@ /mob/living/simple_animal/hostile/rat{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood, /area/ruin/powered) "SI" = ( @@ -401,8 +402,10 @@ }, /area/ruin/powered) "Ux" = ( -/obj/structure/mineral_door/wood, /obj/structure/barricade/wooden, +/obj/machinery/door/airlock/wood{ + dir = 8 + }, /turf/open/floor/wood, /area/ruin/powered) "Vq" = ( @@ -439,9 +442,7 @@ }, /area/ruin/powered) "XH" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood, /area/ruin/powered) "Ym" = ( @@ -612,7 +613,7 @@ yu yu yu Ux -lW +CR yu lN fu diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_coffinpirate.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_coffinpirate.dmm index 811818fc8a24..8cf50ca658fa 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_surface_coffinpirate.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_surface_coffinpirate.dmm @@ -27,9 +27,9 @@ /turf/open/floor/wood, /area/ruin/unpowered) "g" = ( -/obj/structure/mineral_door/wood, /obj/item/grown/bananapeel, /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/wood, /turf/open/floor/plating/dirt/jungle/dark/lit, /area/ruin/unpowered) "h" = ( @@ -188,7 +188,9 @@ /turf/open/floor/plating/dirt/jungle/dark/lit, /area/ruin/unpowered) "L" = ( -/obj/structure/mineral_door/wood, +/obj/machinery/door/airlock/wood{ + dir = 8 + }, /turf/open/floor/wood, /area/ruin/unpowered) "M" = ( diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_roommates.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_roommates.dmm index 16920258889f..86e44d0d8480 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_surface_roommates.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_surface_roommates.dmm @@ -374,13 +374,11 @@ /obj/structure/chair/wood{ dir = 1 }, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/jungle/roommates/shack) "R" = ( -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /turf/open/floor/carpet/purple, /area/ruin/jungle/roommates/shack) "S" = ( @@ -412,9 +410,7 @@ /obj/item/toy/plush/knight{ pixel_y = -1 }, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/jungle/roommates/shack) "U" = ( @@ -499,9 +495,7 @@ }, /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/plastic, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/jungle/roommates/shack) diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_weed_shack.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_weed_shack.dmm index 9db117808f4d..b06dc20c2e80 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_surface_weed_shack.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_surface_weed_shack.dmm @@ -417,7 +417,7 @@ /obj/machinery/power/terminal{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/item/trash/cheesie, /obj/item/cigbutt/roach, /turf/open/floor/wood, diff --git a/_maps/RandomRuins/JungleRuins/jungle_syndicate.dmm b/_maps/RandomRuins/JungleRuins/jungle_syndicate.dmm index 9b5584da7e54..fd57afc6ff86 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_syndicate.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_syndicate.dmm @@ -34,6 +34,24 @@ }, /turf/open/floor/plating, /area/ruin/jungle/syndifort) +"bt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Window Shutters"; + id = "jsynwin"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/jungle/syndifort) +"bC" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Window Shutters"; + id = "jsynwin"; + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/jungle/syndifort/jerry) "bP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, @@ -140,9 +158,7 @@ /area/ruin/jungle/syndifort) "eW" = ( /obj/effect/decal/cleanable/blood, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "eX" = ( @@ -186,9 +202,7 @@ /obj/item/storage/box/syndimaid, /obj/item/storage/box/syndimaid, /obj/item/blackmarket_uplink, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ruin/jungle/syndifort/jerry) "gx" = ( @@ -222,12 +236,12 @@ /obj/item/clothing/gloves/combat, /obj/item/clothing/shoes/combat, /obj/item/clothing/mask/gas/syndicate, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/syndifort) "gQ" = ( /obj/structure/table/wood, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "gU" = ( @@ -236,9 +250,7 @@ /obj/item/storage/fancy/cigarettes/cigpack_syndicate, /obj/item/paper_bin, /obj/item/pen/edagger, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ruin/jungle/syndifort/jerry) "gY" = ( @@ -247,9 +259,7 @@ pixel_x = 4 }, /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating{ icon_state = "panelscorched"; initial_gas_mix = "ws_atmos" @@ -343,9 +353,7 @@ }, /area/ruin/jungle/syndifort) "kp" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/table, /obj/item/grenade/smokebomb, /obj/item/grenade/smokebomb, @@ -455,14 +463,20 @@ }, /area/ruin/jungle/syndifort) "oi" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating{ icon_state = "panelscorched"; initial_gas_mix = "ws_atmos" }, /area/ruin/jungle/syndifort) +"oq" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Base Gates"; + id = "jsyngate"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/jungle/syndifort/jerry) "pr" = ( /obj/structure/cable{ icon_state = "2-4" @@ -531,7 +545,8 @@ "rk" = ( /obj/machinery/door/poddoor/shutters/preopen{ name = "Gear Room Shutters"; - id = "jsyngear" + id = "jsyngear"; + dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -543,7 +558,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/syndifort/jerry) "sq" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -604,7 +619,8 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/poddoor/shutters/preopen{ name = "Base Gates"; - id = "jsyngate" + id = "jsyngate"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -623,7 +639,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "uh" = ( @@ -631,7 +647,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched"; initial_gas_mix = "ws_atmos" @@ -705,14 +721,16 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/poddoor/shutters/preopen{ name = "Base Gates"; - id = "jsyngate" + id = "jsyngate"; + dir = 8 }, /turf/open/floor/plating, /area/ruin/jungle/syndifort/jerry) "wu" = ( /obj/machinery/door/poddoor/shutters/preopen{ name = "Command Room Shutters"; - id = "jsynbridge" + id = "jsynbridge"; + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" @@ -753,9 +771,7 @@ icon_state = "2-8" }, /obj/machinery/camera/autoname, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "xv" = ( @@ -767,7 +783,8 @@ "xC" = ( /obj/machinery/door/poddoor/shutters/preopen{ name = "Command Room Shutters"; - id = "jsynbridge" + id = "jsynbridge"; + dir = 4 }, /turf/open/floor/plasteel/stairs{ dir = 4 @@ -813,6 +830,15 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/jungle/syndifort) +"yL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Window Shutters"; + id = "jsynwin"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/jungle/syndifort) "yM" = ( /obj/structure/spacevine, /obj/structure/flora/junglebush, @@ -850,16 +876,23 @@ /area/ruin/jungle/syndifort/jerry) "Al" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/directional/west, /obj/structure/table, /obj/item/grenade/frag, /obj/item/grenade/frag, /obj/item/grenade/frag, /turf/open/floor/plating/rust, /area/ruin/jungle/syndifort) +"Ao" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Window Shutters"; + id = "jsynwin"; + dir = 8 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/jungle/syndifort/jerry) "At" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/junglebush/c, @@ -909,9 +942,7 @@ /area/ruin/jungle) "BC" = ( /obj/structure/chair/plastic, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/rust, /area/ruin/jungle/syndifort) "BH" = ( @@ -919,7 +950,7 @@ /turf/open/floor/plating, /area/ruin/jungle/syndifort) "BK" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -929,7 +960,7 @@ /obj/structure/cable{ icon_state = "0-5" }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/jungle/syndifort) @@ -982,7 +1013,8 @@ "ET" = ( /obj/machinery/door/poddoor/shutters/preopen{ name = "Gear Room Shutters"; - id = "jsyngear" + id = "jsyngear"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -1170,7 +1202,7 @@ /turf/open/floor/plating/rust, /area/ruin/jungle/syndifort/jerry) "Lu" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "LG" = ( @@ -1189,7 +1221,7 @@ "Mo" = ( /obj/structure/rack, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/item/ammo_box/magazine/m10mm, /obj/item/ammo_box/magazine/m10mm, /turf/open/floor/plating, @@ -1197,9 +1229,7 @@ "My" = ( /obj/structure/rack, /obj/item/storage/toolbox/syndicate, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "ML" = ( @@ -1338,9 +1368,7 @@ /mob/living/simple_animal/hostile/syndicate{ unsuitable_atmos_damage = 0 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "Qx" = ( @@ -1375,7 +1403,7 @@ /area/ruin/jungle) "Rw" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "RD" = ( @@ -1449,7 +1477,7 @@ /area/ruin/jungle/syndifort) "TC" = ( /obj/item/trash/syndi_cakes, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -1629,7 +1657,7 @@ /obj/structure/cable{ icon_state = "5-8" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched"; initial_gas_mix = "ws_atmos" @@ -1664,7 +1692,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/jungle/syndifort) "ZF" = ( @@ -1826,8 +1854,8 @@ At eX eX zM -ER -ER +bC +Ao zM zM eX @@ -1993,7 +2021,7 @@ wu nH nH tZ -Uc +oq vt vt eX @@ -2436,8 +2464,8 @@ Uu fZ eX fe -NM -NM +yL +bt fe Aa mO diff --git a/_maps/RandomRuins/JungleRuins/jungle_witch.dmm b/_maps/RandomRuins/JungleRuins/jungle_witch.dmm index 5ac76e68ec6a..465c445a6eac 100644 --- a/_maps/RandomRuins/JungleRuins/jungle_witch.dmm +++ b/_maps/RandomRuins/JungleRuins/jungle_witch.dmm @@ -46,14 +46,24 @@ }, /turf/open/floor/wood, /area/ruin/powered) +"iS" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/wood, +/area/ruin/powered) "jh" = ( /obj/item/toy/crayon/white, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/wood, /area/ruin/powered) "jF" = ( -/obj/structure/mineral_door/wood, /obj/item/restraints/legcuffs/beartrap/energy, +/obj/machinery/door/airlock/wood, +/turf/open/floor/wood, +/area/ruin/powered) +"kc" = ( +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/wood, /area/ruin/powered) "lG" = ( @@ -119,9 +129,7 @@ /area/ruin/powered) "se" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood, /area/ruin/powered) "sP" = ( @@ -203,7 +211,7 @@ /area/ruin/unpowered) "Dr" = ( /obj/effect/decal/cleanable/generic, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/wood, /area/ruin/powered) "DP" = ( @@ -278,9 +286,7 @@ /area/ruin/unpowered) "Uy" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/wood, /area/ruin/powered) "WI" = ( @@ -360,8 +366,8 @@ Xl wI Eq Eq -WI -WI +kc +kc Eq Eq Eq @@ -434,7 +440,7 @@ Kc Kc Kc Kc -WI +iS YZ ER YZ diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm index 25a523f9329d..12f4ff918b93 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm @@ -9,15 +9,10 @@ "aj" = ( /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) -"am" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/beach/sand, -/area/ruin/powered/beach) "ao" = ( /obj/machinery/door/airlock/public/glass{ - name = "Resort Lobby" + name = "Resort Lobby"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -33,28 +28,12 @@ "as" = ( /turf/open/floor/plating, /area/ruin/powered/beach) -"at" = ( -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_animal/crab{ - name = "Eddie" - }, -/turf/open/floor/plating/beach/sand, -/area/ruin/powered/beach) "au" = ( /obj/structure/sign/poster/contraband/space_cola{ pixel_y = 32 }, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) -"av" = ( -/obj/effect/overlay/coconut, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/beach/sand, -/area/ruin/powered/beach) "az" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/chair/stool/bar, @@ -65,7 +44,9 @@ /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) "aB" = ( -/obj/structure/mineral_door/wood, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/wood, /area/ruin/powered/beach) "aC" = ( @@ -134,16 +115,19 @@ /obj/effect/overlay/coconut, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) -"bb" = ( -/obj/structure/closet/crate/bin, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/trash/candy, -/obj/item/toy/talking/owl, +"bv" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/effect/turf_decal/sand, -/obj/machinery/light{ - dir = 8 +/turf/open/floor/plasteel{ + icon = 'icons/misc/beach.dmi'; + icon_state = "sand" }, -/turf/open/floor/plasteel, /area/ruin/powered/beach) "bx" = ( /obj/structure/flora/rock, @@ -178,6 +162,10 @@ }, /turf/open/floor/carpet/red, /area/ruin/powered/beach) +"bD" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/pod/light, +/area/ruin/powered/beach) "bG" = ( /obj/structure/window/reinforced{ dir = 8 @@ -209,12 +197,6 @@ "bM" = ( /turf/open/floor/plasteel/stairs/old, /area/ruin/powered/beach) -"bN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plating/beach/sand, -/area/ruin/powered/beach) "bR" = ( /turf/open/floor/plating/beach/coastline_t, /area/ruin/powered/beach) @@ -231,12 +213,6 @@ "bW" = ( /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/explored) -"bY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/powered/beach) "cd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -252,12 +228,6 @@ icon_state = "platingdmg3" }, /area/ruin/powered/beach) -"ch" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/ruin/powered/beach) "cj" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; @@ -275,13 +245,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/beach/water, /area/ruin/powered/beach) -"cR" = ( -/obj/structure/chair/wood, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/beach/sand, -/area/ruin/powered/beach) "cV" = ( /obj/structure/closet/secure_closet/freezer/meat{ req_access = null @@ -301,6 +264,12 @@ }, /turf/open/floor/wood, /area/ruin/powered/beach) +"du" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/washing_machine, +/turf/open/floor/wood, +/area/ruin/powered/beach) "dX" = ( /obj/structure/sign/warning/gasmask{ pixel_y = 32 @@ -326,6 +295,13 @@ }, /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) +"fm" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/powered/beach) "fB" = ( /turf/open/floor/plasteel/stairs/medium, /area/ruin/powered/beach) @@ -344,33 +320,36 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/public/glass{ - name = "Resort Casino" + name = "Resort Casino"; + dir = 4 }, /turf/open/floor/wood, /area/ruin/powered/beach) +"gh" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ruin/powered/beach) "gs" = ( /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/ruin/powered/beach) +"gy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ruin/powered/beach) "gC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/pod/light, /area/ruin/powered/beach) -"gF" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/sepia, -/area/ruin/powered/beach) "gT" = ( /obj/machinery/door/airlock/sandstone{ - name = "Surfer Shack 2" + name = "Surfer Shack 2"; + dir = 4 }, /turf/open/floor/wood, /area/ruin/powered/beach) @@ -409,7 +388,8 @@ /area/ruin/powered/beach) "hF" = ( /obj/machinery/door/airlock/sandstone{ - name = "Resort Bathroom" + name = "Resort Bathroom"; + dir = 8 }, /turf/open/floor/wood, /area/ruin/powered/beach) @@ -442,14 +422,13 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/wood, /area/ruin/powered/beach) -"kb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ - pixel_y = 32 +"jW" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/light/small/directional/west{ + brightness = 3 }, -/turf/open/floor/plasteel/grimy, +/turf/open/floor/wood, /area/ruin/powered/beach) "kd" = ( /obj/structure/table/wood, @@ -473,18 +452,10 @@ /obj/structure/fluff/beach_umbrella/cap, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) -"kn" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plating/beach/coastline_b{ - dir = 10 - }, -/area/ruin/powered/beach) "li" = ( /obj/machinery/door/airlock/sandstone{ - name = "Bar Access" + name = "Bar Access"; + dir = 8 }, /turf/open/floor/wood, /area/ruin/powered/beach) @@ -492,6 +463,13 @@ /obj/effect/turf_decal/sand, /turf/open/floor/sepia, /area/ruin/powered/beach) +"lI" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/powered/beach) "lL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -514,12 +492,10 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating, /area/ruin/powered/beach) -"nw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/washing_machine, +"nW" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/chair/stool/bar, /turf/open/floor/wood, /area/ruin/powered/beach) "og" = ( @@ -559,22 +535,6 @@ }, /turf/open/floor/plating, /area/ruin/powered/beach) -"pS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel{ - icon = 'icons/misc/beach.dmi'; - icon_state = "sand" - }, -/area/ruin/powered/beach) "qc" = ( /obj/structure/mirror{ pixel_x = -32 @@ -591,6 +551,10 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/pod/light, /area/ruin/powered/beach) +"qr" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/pod/light, +/area/ruin/powered/beach) "qt" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -617,13 +581,20 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) -"qT" = ( -/obj/machinery/light{ - dir = 4 +"rL" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/secure_closet{ + icon_state = "cabinet"; + name = "bartender's closet"; + req_access = list(25) }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/item/clothing/shoes/sandal{ + desc = "A very fashionable pair of flip-flops."; + name = "flip-flops" }, +/obj/item/clothing/neck/beads, +/obj/item/clothing/glasses/sunglasses/reagent, +/obj/item/clothing/suit/hawaiian, /turf/open/floor/wood, /area/ruin/powered/beach) "rU" = ( @@ -642,24 +613,6 @@ }, /turf/closed/wall/mineral/wood/nonmetal, /area/ruin/powered/beach) -"sM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet{ - icon_state = "cabinet"; - name = "bartender's closet"; - req_access = list(25) - }, -/obj/item/clothing/shoes/sandal{ - desc = "A very fashionable pair of flip-flops."; - name = "flip-flops" - }, -/obj/item/clothing/neck/beads, -/obj/item/clothing/glasses/sunglasses/reagent, -/obj/item/clothing/suit/hawaiian, -/turf/open/floor/wood, -/area/ruin/powered/beach) "sV" = ( /obj/machinery/hydroponics/constructable, /turf/open/floor/plasteel/grimy, @@ -672,26 +625,6 @@ /obj/structure/curtain, /turf/open/floor/plasteel/white, /area/ruin/powered/beach) -"tf" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/machinery/light, -/obj/item/disk/plantgene, -/obj/item/disk/plantgene, -/obj/item/disk/plantgene, -/obj/item/disk/plantgene, -/obj/item/disk/plantgene, -/turf/open/floor/plasteel/grimy, -/area/ruin/powered/beach) "tg" = ( /obj/structure/closet/crate/freezer{ name = "Cooler" @@ -736,16 +669,14 @@ /obj/structure/chair/stool/bar, /turf/open/floor/carpet/red, /area/ruin/powered/beach) +"tU" = ( +/obj/structure/chair/wood, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/beach/sand, +/area/ruin/powered/beach) "uz" = ( /turf/open/floor/light/colour_cycle/dancefloor_a, /area/ruin/powered/beach) -"vf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood/poker, -/obj/item/storage/pill_bottle/dice, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/wood, -/area/ruin/powered/beach) "vi" = ( /obj/structure/railing{ dir = 8 @@ -754,6 +685,16 @@ dir = 9 }, /area/ruin/powered/beach) +"vn" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plating/beach/coastline_b{ + dir = 1 + }, +/area/ruin/powered/beach) +"vI" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/beach/sand, +/area/ruin/powered/beach) "vK" = ( /obj/effect/turf_decal/sand, /obj/machinery/icecream_vat, @@ -800,6 +741,11 @@ /obj/item/canvas/twentythreeXtwentythree, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) +"xN" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/beach/sand, +/area/ruin/powered/beach) "xS" = ( /turf/open/floor/plating/beach/coastline_b{ dir = 1 @@ -819,14 +765,14 @@ }, /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) -"yk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"yv" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/closet/crate{ + name = "fuel crate" }, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/turf/open/floor/plating, /area/ruin/powered/beach) "yB" = ( /mob/living/simple_animal/crab{ @@ -834,13 +780,6 @@ }, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) -"yN" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ruin/powered/beach) "zm" = ( /obj/structure/table/wood, /obj/item/reagent_containers/pill/morphine, @@ -878,12 +817,18 @@ /obj/item/cultivator, /turf/open/floor/plasteel/grimy, /area/ruin/powered/beach) -"Bl" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/light{ - dir = 8 +"AZ" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ruin/powered/beach) +"Bg" = ( +/obj/machinery/light/directional/east, +/obj/machinery/chem_dispenser/drinks/fullupgrade{ + dir = 1 }, -/turf/open/floor/plating/beach/sand, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, /area/ruin/powered/beach) "Bn" = ( /turf/open/floor/carpet/blue, @@ -898,17 +843,17 @@ }, /turf/open/floor/plating/beach/coastline_t, /area/ruin/powered/beach) +"BC" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered/beach) "BE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) -"BL" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/ruin/powered/beach) "BN" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -987,6 +932,10 @@ /obj/structure/flora/rock/jungle, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) +"DN" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/ruin/powered/beach) "Eq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/wood, @@ -1019,14 +968,10 @@ /obj/structure/fluff/beach_umbrella/security, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) -"Fi" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/wood, +"Fo" = ( +/obj/effect/overlay/coconut, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) "Fr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1077,15 +1022,12 @@ icon_state = "platingdmg2" }, /area/ruin/powered/beach) -"Hn" = ( -/obj/machinery/light, -/turf/open/floor/pod/light, -/area/ruin/powered/beach) -"Hy" = ( -/obj/machinery/light{ - dir = 8 +"HS" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/turf/open/floor/plasteel/stairs/left, /area/ruin/powered/beach) "HV" = ( /turf/open/floor/plating/beach/coastline_b{ @@ -1164,6 +1106,26 @@ }, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) +"Jp" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/machinery/light/directional/south, +/obj/item/disk/plantgene, +/obj/item/disk/plantgene, +/obj/item/disk/plantgene, +/obj/item/disk/plantgene, +/obj/item/disk/plantgene, +/turf/open/floor/plasteel/grimy, +/area/ruin/powered/beach) "Jr" = ( /turf/open/floor/carpet/purple, /area/ruin/powered/beach) @@ -1174,6 +1136,10 @@ }, /turf/open/floor/plating, /area/ruin/powered/beach) +"JH" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/beach/sand, +/area/ruin/powered/beach) "JO" = ( /turf/open/floor/plating/beach/coastline_b{ dir = 6 @@ -1204,15 +1170,15 @@ /obj/structure/fluff/beach_umbrella/science, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) -"Lp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, +"Lx" = ( +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/wood, /area/ruin/powered/beach) +"Ly" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/light/directional/west, +/turf/open/floor/plating/beach/sand, +/area/ruin/powered/beach) "Md" = ( /obj/structure/urinal{ pixel_y = 32 @@ -1231,17 +1197,6 @@ }, /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) -"MO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/chem_dispenser/drinks/fullupgrade{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/ruin/powered/beach) "MZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1264,6 +1219,10 @@ /obj/item/storage/firstaid/brute, /turf/open/floor/wood, /area/ruin/powered/beach) +"NF" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/ruin/powered/beach) "NJ" = ( /obj/machinery/computer/slot_machine, /turf/open/floor/wood, @@ -1281,23 +1240,19 @@ }, /turf/closed/wall/mineral/wood/nonmetal, /area/ruin/powered/beach) -"OE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/powered/beach) "OI" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/item/toy/seashell, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) -"OP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +"OS" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/beach/coastline_b{ + dir = 10 }, -/obj/machinery/light, -/turf/open/floor/wood, /area/ruin/powered/beach) "Pr" = ( /obj/machinery/vending/hydronutrients, @@ -1318,22 +1273,14 @@ }, /turf/open/floor/pod/light, /area/ruin/powered/beach) -"QF" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/ruin/powered/beach) -"QS" = ( +"QH" = ( +/obj/structure/closet/crate/bin, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/trash/candy, +/obj/item/toy/talking/owl, /obj/effect/turf_decal/sand, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/ruin/powered/beach) -"Rk" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, /area/ruin/powered/beach) "RB" = ( /obj/structure/closet/cabinet, @@ -1351,9 +1298,17 @@ "RE" = ( /turf/closed/wall/mineral/wood/nonmetal, /area/ruin/powered/beach) +"RP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood/poker, +/obj/item/storage/pill_bottle/dice, +/obj/item/spacecash/bundle/c1000, +/turf/open/floor/wood, +/area/ruin/powered/beach) "Sn" = ( /obj/machinery/door/airlock/maintenance{ - name = "Supply Room" + name = "Supply Room"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1366,8 +1321,8 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, -/obj/structure/mineral_door/wood{ - name = "Croupier's Booth" +/obj/machinery/door/airlock/wood{ + dir = 4 }, /turf/open/floor/wood, /area/ruin/powered/beach) @@ -1388,17 +1343,14 @@ /obj/item/canvas/twentythreeXtwentythree, /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) +"Td" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/ruin/powered/beach) "Ti" = ( /turf/open/floor/carpet/red, /area/ruin/powered/beach) -"Tu" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/beach/coastline_b{ - dir = 8 - }, -/area/ruin/powered/beach) "TC" = ( /obj/effect/mob_spawn/human/beach/alive{ dir = 4 @@ -1458,18 +1410,20 @@ icon_state = "panelscorched" }, /area/ruin/powered/beach) -"Vf" = ( -/obj/machinery/light, -/turf/open/floor/plating/beach/coastline_b{ - dir = 1 - }, -/area/ruin/powered/beach) "Vl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/table/wood/poker, /obj/item/toy/cards/deck, /turf/open/floor/wood, /area/ruin/powered/beach) +"Vr" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/sepia, +/area/ruin/powered/beach) "Vs" = ( /obj/structure/toilet, /turf/open/floor/wood, @@ -1481,16 +1435,9 @@ }, /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) -"VL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/crate{ - name = "fuel crate" - }, -/obj/item/stack/sheet/mineral/coal/ten, -/obj/item/stack/sheet/mineral/coal/ten, -/turf/open/floor/plating, +"Vx" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) "VN" = ( /obj/item/toy/seashell, @@ -1517,6 +1464,12 @@ /obj/machinery/computer/arcade/battle, /turf/open/floor/wood, /area/ruin/powered/beach) +"Wl" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/beach/coastline_b{ + dir = 8 + }, +/area/ruin/powered/beach) "Wy" = ( /obj/structure/closet/cabinet, /obj/item/storage/backpack/duffelbag, @@ -1543,14 +1496,6 @@ }, /turf/open/floor/wood, /area/ruin/powered/beach) -"Xu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/ruin/powered/beach) "XW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1560,6 +1505,24 @@ }, /turf/closed/wall/mineral/wood/nonmetal, /area/ruin/powered/beach) +"Ya" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/powered/beach) +"Yo" = ( +/obj/machinery/light/directional/north, +/mob/living/simple_animal/crab{ + name = "Eddie" + }, +/turf/open/floor/plating/beach/sand, +/area/ruin/powered/beach) +"YL" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/stairs/left, +/area/ruin/powered/beach) "Zi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -1599,12 +1562,6 @@ "ZS" = ( /turf/closed/mineral/random/volcanic, /area/template_noop) -"ZZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/ruin/powered/beach) (1,1,1) = {" aa @@ -1647,8 +1604,8 @@ aa aa aa aj -gs -gs +BC +BC aj aj aa @@ -1657,14 +1614,14 @@ aa Zi BE Mf -cR +tU yB ap aj oQ Zq FF -Fi +jW aF Fr yc @@ -1725,12 +1682,12 @@ ar ar ar aj -sM +rL aC aC CK IJ -MO +Bg CU Bp "} @@ -1746,7 +1703,7 @@ aj aj lT as -yk +HS Jv as gs @@ -1755,7 +1712,7 @@ ar ar ar ar -bN +vI aj aj li @@ -1789,12 +1746,12 @@ SZ ar ar ar -Hy +YL TU EF EF EF -gF +Vr MZ Bp "} @@ -1808,11 +1765,11 @@ az Vl aO CU -bb +QH aN aT aY -Bl +Ly aZ ar ar @@ -1836,8 +1793,8 @@ aj tn Ti Ti -Xu -vf +nW +RP ct BN aA @@ -1934,7 +1891,7 @@ ar ar ar ar -pS +bv aA aA aA @@ -1942,7 +1899,7 @@ aA aA aA aA -QS +xN ar ar ER @@ -1955,7 +1912,7 @@ wW wW wW wW -kn +OS MZ "} (12,1,1) = {" @@ -2000,7 +1957,7 @@ ar ar XW aI -OE +DN aC aC aC @@ -2026,7 +1983,7 @@ MZ Bp bW MZ -at +Yo ar hY ar @@ -2083,7 +2040,7 @@ bU bV bV bU -Vf +vn MZ "} (16,1,1) = {" @@ -2122,22 +2079,22 @@ MZ Bp bW MZ -av +Fo ar ar ar RE aS -Rk +NF aC aC pB Ds -yN +Td RE ar OI -ch +JH ar ar bR @@ -2185,12 +2142,12 @@ MZ (19,1,1) = {" aa MZ -am +Vx ar ar ap ar -Bl +Ly aA vK hv @@ -2198,7 +2155,7 @@ aA aA aA aA -Bl +Ly ar bB bH @@ -2211,7 +2168,7 @@ bU bU bU bU -Vf +vn MZ "} (20,1,1) = {" @@ -2238,7 +2195,7 @@ ar Cv bR HV -Tu +Wl Cl Cl Cl @@ -2258,7 +2215,7 @@ ar ar ar ar -ch +JH ar ar ar @@ -2337,7 +2294,7 @@ VO og wY wY -Hn +bD Fr yc Bp @@ -2345,7 +2302,7 @@ Bp (24,1,1) = {" aa lL -nw +du TL aC aC @@ -2384,12 +2341,12 @@ aC aC aj EE -Rk +NF RB aj tB aC -OP +gy MZ ar ar @@ -2412,7 +2369,7 @@ MZ aj hF aj -bY +gh aC aj aj @@ -2429,13 +2386,13 @@ aA aA ZN wY -ZZ +qr wY gC oF oU wY -tf +Jp MZ "} (27,1,1) = {" @@ -2462,7 +2419,7 @@ Sn qF BE yc -kb +lI gC wY kg @@ -2474,11 +2431,11 @@ MZ aa lL Md -QF +AZ aj aj aj -BL +Lx aC aC aC @@ -2513,17 +2470,17 @@ Zi BE yc aC -Rk +NF aC aC aC -Lp -qT +Ya +fm aC aC MZ et -VL +yv aj Fr BE diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_SPOOKYCRASH.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_SPOOKYCRASH.dmm index 8423e23714c3..fbef36db538b 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_SPOOKYCRASH.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_SPOOKYCRASH.dmm @@ -4,7 +4,7 @@ /area/lavaland/surface/outdoors) "b" = ( /obj/effect/decal/cleanable/blood, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/item/stack/tile/mineral/titanium/blue, /obj/item/storage/book/bible, /turf/open/floor/plating, @@ -51,9 +51,7 @@ /obj/structure/table, /obj/item/soulstone/anybody, /obj/item/toy/plush/narplush, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/structure/window/reinforced/spawner, /obj/machinery/door/window/brigdoor/westright, /obj/item/clothing/head/wizard/black, @@ -103,7 +101,6 @@ icon_state = "coffinopen"; opened = 1 }, -/obj/effect/mob_spawn/human/skeleton/alive, /turf/open/floor/mineral/plastitanium/red, /area/lavaland/surface/outdoors) "w" = ( @@ -139,9 +136,7 @@ /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "G" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/blood/splatter, /obj/structure/chair/comfy/shuttle{ dir = 4 diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm index c5829ec31c54..3a0a7502cd35 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm @@ -12,9 +12,7 @@ /obj/structure/table, /obj/item/stack/medical/gauze, /obj/item/stack/medical/gauze, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ruin/powered/snow_biodome) "ae" = ( @@ -26,9 +24,7 @@ /area/ruin/powered/snow_biodome) "ag" = ( /obj/structure/reagent_dispensers/beerkeg, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ruin/powered/snow_biodome) "ah" = ( @@ -132,7 +128,7 @@ /turf/open/floor/wood, /area/ruin/powered/snow_biodome) "aE" = ( -/obj/structure/extinguisher_cabinet, +/obj/structure/extinguisher_cabinet/directional/north, /turf/closed/wall/mineral/wood, /area/ruin/powered/snow_biodome) "aF" = ( @@ -193,62 +189,49 @@ }, /area/ruin/powered/snow_biodome) "bv" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/ice, /area/ruin/powered/snow_biodome) "bw" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/wood, /area/ruin/powered/snow_biodome) "bx" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/ruin/powered/snow_biodome) "by" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating/asteroid/snow, /area/ruin/powered/snow_biodome) "bz" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/ruin/powered/snow_biodome) "bB" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/asteroid/snow, /area/ruin/powered/snow_biodome) "bD" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/asteroid/snow, /area/ruin/powered/snow_biodome) "bM" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/asteroid/snow, /area/ruin/powered/snow_biodome) "bN" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/ice, /area/ruin/powered/snow_biodome) "dS" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) "eb" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) "eg" = ( @@ -256,9 +239,8 @@ /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) "gh" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) @@ -267,26 +249,21 @@ /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) "hA" = ( -/obj/machinery/light/built{ - dir = 1 - }, -/obj/effect/mapping_helpers/no_lava, +/obj/machinery/light/built/directional/north, /turf/open/floor/pod/dark{ initial_gas_mix = "LAVALAND_ATMOS" }, /area/ruin/powered/snow_biodome) "qt" = ( -/obj/machinery/door/airlock/silver, +/obj/machinery/door/airlock/silver{ + dir = 8 + }, /obj/structure/fans/tiny, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) -"tb" = ( -/obj/effect/mapping_helpers/no_lava, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) "tl" = ( /turf/open/floor/pod/light, /area/ruin/powered/snow_biodome) @@ -295,7 +272,9 @@ /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) "zT" = ( -/obj/machinery/door/airlock/silver, +/obj/machinery/door/airlock/silver{ + dir = 4 + }, /obj/structure/fans/tiny, /turf/open/floor/plating, /area/ruin/powered/snow_biodome) @@ -336,9 +315,7 @@ "KS" = ( /obj/item/chainsaw, /obj/structure/closet, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) "Mp" = ( @@ -350,7 +327,9 @@ /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) "PD" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/structure/fans/tiny, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -363,11 +342,6 @@ /obj/item/paper_bin, /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) -"Qa" = ( -/obj/effect/mapping_helpers/no_lava, -/obj/effect/mapping_helpers/no_lava, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) "QI" = ( /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/explored) @@ -401,7 +375,7 @@ /turf/closed/wall/r_wall, /area/ruin/powered/snow_biodome) "Zq" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/white, /area/ruin/powered/snow_biodome) @@ -562,7 +536,7 @@ ak Wg Wg QI -tb +QI aa "} (6,1,1) = {" @@ -594,7 +568,7 @@ ak ak Wg QI -tb +QI aa "} (7,1,1) = {" @@ -626,7 +600,7 @@ ak bM Wg Wg -tb +QI aa "} (8,1,1) = {" @@ -658,8 +632,8 @@ ak az ak Wg -tb -tb +QI +QI "} (9,1,1) = {" aa @@ -691,7 +665,7 @@ ak ak Wg hA -tb +QI "} (10,1,1) = {" Wg @@ -722,8 +696,8 @@ ak ak ak Wg -tb -tb +QI +QI "} (11,1,1) = {" Wg @@ -755,7 +729,7 @@ Wg Wg Wg Wg -tb +QI "} (12,1,1) = {" Wg @@ -787,7 +761,7 @@ Wg Dd Dd Wg -tb +QI "} (13,1,1) = {" Wg @@ -819,7 +793,7 @@ Wg Mp dS Wg -tb +QI "} (14,1,1) = {" Wg @@ -851,7 +825,7 @@ Wg tl tl Wg -tb +QI "} (15,1,1) = {" Wg @@ -883,7 +857,7 @@ aO tl tl Ez -Qa +QI "} (16,1,1) = {" Wg @@ -915,7 +889,7 @@ aP tl tl aP -Qa +QI "} (17,1,1) = {" Wg @@ -947,7 +921,7 @@ Wg tl tl Wg -tb +QI "} (18,1,1) = {" Wg @@ -979,7 +953,7 @@ Wg HP dS Wg -tb +QI "} (19,1,1) = {" Wg @@ -1011,7 +985,7 @@ Wg QK AM Wg -tb +QI "} (20,1,1) = {" Wg @@ -1043,7 +1017,7 @@ Wg Wg Wg Wg -tb +QI "} (21,1,1) = {" Wg @@ -1074,8 +1048,8 @@ ak ak ak Wg -tb -tb +QI +QI "} (22,1,1) = {" aa @@ -1107,7 +1081,7 @@ ak ak Wg hA -tb +QI "} (23,1,1) = {" aa @@ -1138,8 +1112,8 @@ ak ak ak Wg -tb -tb +QI +QI "} (24,1,1) = {" aa @@ -1170,7 +1144,7 @@ ak bM Wg Wg -tb +QI aa "} (25,1,1) = {" @@ -1202,7 +1176,7 @@ aC ak Wg QI -tb +QI aa "} (26,1,1) = {" diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_comm_outpost.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_comm_outpost.dmm index 6c9c48308a55..fd8b2f0dd6b9 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_comm_outpost.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_comm_outpost.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "bk" = ( -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/mineral/plastitanium{ name = "base floor" }, @@ -70,17 +70,13 @@ }, /area/ruin/unpowered/syndicate_outpost) "uM" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/mineral/plastitanium{ name = "base floor" }, /area/ruin/unpowered/syndicate_outpost) "xV" = ( -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/carpet, /area/ruin/unpowered/syndicate_outpost) "AV" = ( @@ -130,10 +126,6 @@ name = "base floor" }, /area/ruin/unpowered/syndicate_outpost) -"IZ" = ( -/obj/effect/mapping_helpers/no_lava, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/ruin/unpowered/syndicate_outpost) "JO" = ( /obj/machinery/door/airlock/highsecurity{ hackProof = 1; @@ -158,14 +150,15 @@ /turf/open/floor/plating, /area/ruin/unpowered/syndicate_outpost) "Mo" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red{ name = "base floor" }, /area/ruin/unpowered/syndicate_outpost) "MK" = ( /obj/structure/closet/crate/grave, -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/syndicate_outpost) "NT" = ( @@ -215,9 +208,7 @@ /turf/open/floor/carpet/black, /area/ruin/unpowered/syndicate_outpost) "To" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/mineral/plastitanium/red{ name = "base floor" }, @@ -267,7 +258,7 @@ /area/ruin/unpowered/syndicate_outpost) "YJ" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband, +/obj/item/radio/intercom/wideband/directional/north, /turf/open/floor/mineral/plastitanium/red{ name = "base floor" }, @@ -280,14 +271,14 @@ /area/ruin/unpowered/syndicate_outpost) (1,1,1) = {" -IZ -IZ -IZ -IZ -IZ -IZ -IZ -IZ +RV +RV +RV +RV +RV +RV +RV +RV Wt Wt Wt @@ -296,14 +287,14 @@ Wt Wt "} (2,1,1) = {" -IZ +RV ho ho ho JO ho ho -IZ +RV RV Wt Wt @@ -312,7 +303,7 @@ Wt Wt "} (3,1,1) = {" -IZ +RV ho Pi uM @@ -328,7 +319,7 @@ RV Wt "} (4,1,1) = {" -IZ +RV Lu NT Cs @@ -344,7 +335,7 @@ RV RV "} (5,1,1) = {" -IZ +RV Lu II YJ @@ -360,7 +351,7 @@ ho RV "} (6,1,1) = {" -IZ +RV Lu js qp @@ -376,7 +367,7 @@ ho RV "} (7,1,1) = {" -IZ +RV ho js Ts @@ -392,7 +383,7 @@ ho RV "} (8,1,1) = {" -IZ +RV ho PG PG @@ -408,7 +399,7 @@ ho RV "} (9,1,1) = {" -IZ +RV ho bA To @@ -433,10 +424,10 @@ js fa VY ho -IZ -IZ -IZ -IZ +RV +RV +RV +RV RV "} (11,1,1) = {" @@ -450,9 +441,9 @@ XB Kw ho MK -IZ -IZ -IZ +RV +RV +RV Wt "} (12,1,1) = {" @@ -465,10 +456,10 @@ ho ho ho ho -IZ -IZ -IZ -IZ +RV +RV +RV +RV Wt "} (13,1,1) = {" @@ -481,9 +472,9 @@ RV RV RV RV -IZ -IZ -IZ +RV +RV +RV Wt Wt "} diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_crashed_pinnance.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_crashed_pinnance.dmm index ad75f274243f..13b470056ea8 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_crashed_pinnance.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_crashed_pinnance.dmm @@ -55,9 +55,7 @@ "gk" = ( /obj/structure/rack, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/windoor_assembly{ dir = 2 }, @@ -135,10 +133,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/crashsite/pinnance) "oT" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner_techfloor_grid, /obj/effect/turf_decal/corner_techfloor_grid{ dir = 8 @@ -193,9 +188,7 @@ dir = 9 }, /obj/item/light/tube/broken, -/obj/structure/light_construct{ - dir = 8 - }, +/obj/structure/light_construct/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/unpowered/crashsite/pinnance) @@ -206,9 +199,7 @@ "vH" = ( /obj/structure/rack, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/structure/windoor_assembly, /turf/open/floor/plating/rust, /area/ruin/unpowered/crashsite/pinnance) @@ -227,7 +218,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/item/shard, -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /turf/open/floor/plasteel/mono/dark, @@ -447,9 +438,7 @@ /area/ruin/unpowered/crashsite/pinnance) "Jg" = ( /obj/structure/frame/machine, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating, /area/ruin/unpowered/crashsite/pinnance) "JS" = ( @@ -481,7 +470,7 @@ pixel_y = -32 }, /obj/effect/decal/cleanable/ash/large, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/item/shard, /obj/structure/table_frame, /turf/open/floor/plasteel/mono/dark, @@ -556,9 +545,7 @@ /area/ruin/unpowered/crashsite) "Rw" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating, /area/ruin/unpowered/crashsite/pinnance) "SD" = ( @@ -611,14 +598,9 @@ /turf/open/floor/plasteel/mono/dark, /area/ruin/unpowered/crashsite/pinnance) "VS" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /obj/item/bedsheet/rd, /turf/open/floor/plating, /area/ruin/unpowered/crashsite/pinnance) diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm index 8ef8a4316a57..8ce14c7b16db 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm @@ -9,9 +9,7 @@ dir = 8 }, /obj/effect/turf_decal/corner/transparent/neutral, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/trimline/opaque/white/line{ dir = 1 }, @@ -98,9 +96,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/powered/golem_ship) "cp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) @@ -158,7 +154,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) "dt" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -182,7 +178,7 @@ /obj/item/card/id/mining, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/hardhat/mining, -/obj/machinery/light/small, +/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{ @@ -200,7 +196,7 @@ /turf/open/floor/mineral/titanium/yellow, /area/ruin/powered/golem_ship) "ea" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) @@ -218,7 +214,7 @@ /turf/open/floor/plasteel, /area/ruin/powered/golem_ship) "ep" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -240,9 +236,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/powered/golem_ship) "eG" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 }, @@ -259,6 +253,11 @@ /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 @@ -311,9 +310,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/powered/golem_ship) "gg" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/mineral/titanium/yellow, /area/ruin/powered/golem_ship) "gn" = ( @@ -382,14 +379,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/powered/golem_ship) -"hO" = ( -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/golem_ship) "hS" = ( /obj/structure/mirror{ pixel_y = 28 @@ -427,9 +416,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/blood/tracks{ dir = 4 }, @@ -546,7 +533,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) "kg" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 @@ -628,28 +615,20 @@ /area/ruin/powered/golem_ship) "kY" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, +/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{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/bed, /obj/item/bedsheet/random, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/ruin/powered/golem_ship) "lN" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 27 - }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) "lU" = ( @@ -691,9 +670,7 @@ "mL" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/mineral/plastitanium, /area/ruin/powered/golem_ship) "mX" = ( @@ -719,9 +696,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/suit_storage_unit, /obj/effect/turf_decal/box/corners{ dir = 8 @@ -739,7 +714,9 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) "nt" = ( @@ -830,9 +807,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/suit_storage_unit, /obj/effect/turf_decal/box/corners{ dir = 1 @@ -885,9 +860,7 @@ /area/ruin/powered/golem_ship) "oO" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/mineral/titanium/yellow, /area/ruin/powered/golem_ship) "pi" = ( @@ -968,15 +941,11 @@ /obj/machinery/shower{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/freezer, /area/ruin/powered/golem_ship) "uw" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/shower{ dir = 8 }, @@ -1074,7 +1043,7 @@ /area/ruin/powered/golem_ship) "vA" = ( /obj/structure/table/reinforced, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/button/door{ id = "golemloading"; name = "Cargo Blast Door Control"; @@ -1098,9 +1067,7 @@ /turf/open/floor/plating, /area/ruin/powered/golem_ship) "vV" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) @@ -1120,9 +1087,7 @@ /turf/open/floor/plasteel, /area/ruin/powered/golem_ship) "wJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/bed, /obj/item/bedsheet/random, /obj/effect/decal/cleanable/dirt, @@ -1172,12 +1137,8 @@ /turf/open/floor/plasteel/freezer, /area/ruin/powered/golem_ship) "yu" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/machinery/light/small/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/blood/tracks{ dir = 4 }, @@ -1202,7 +1163,8 @@ dir = 8 }, /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + dir = 8 }, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) @@ -1210,14 +1172,14 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, -/obj/machinery/light/small, +/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, +/obj/machinery/light/directional/south, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel/freezer, /area/ruin/powered/golem_ship) @@ -1244,9 +1206,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/powered/golem_ship) "zW" = ( -/obj/machinery/light{ - dir = 8 - }, +/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{ @@ -1306,7 +1266,8 @@ dir = 8 }, /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + dir = 4 }, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) @@ -1358,15 +1319,25 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/door/airlock/external, /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{ @@ -1404,7 +1375,9 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) "DY" = ( @@ -1595,6 +1568,7 @@ "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" = ( @@ -1615,9 +1589,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) "IB" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/ruin/powered/golem_ship) @@ -1738,7 +1710,9 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) "Ma" = ( @@ -1775,9 +1749,7 @@ /obj/effect/decal/cleanable/blood/tracks{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/titanium/yellow, /area/ruin/powered/golem_ship) "Mx" = ( @@ -1884,9 +1856,7 @@ "Om" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/ore_box, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 1 }, @@ -1896,10 +1866,6 @@ /obj/effect/turf_decal/corner/transparent/neutral, /turf/open/floor/mineral/plastitanium, /area/ruin/powered/golem_ship) -"On" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/powered/golem_ship) "Ox" = ( /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -2097,16 +2063,6 @@ /obj/effect/turf_decal/trimline/opaque/purple/line, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) -"SV" = ( -/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) "Td" = ( /obj/structure/rack, /obj/item/storage/bag/ore, @@ -2226,16 +2182,14 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/powered/golem_ship) -"Vy" = ( -/obj/effect/turf_decal/industrial/outline/yellow, +"UW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, +/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{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/recharger, /obj/item/resonator/upgraded, /obj/effect/turf_decal/trimline/opaque/blue/line{ @@ -2258,16 +2212,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) -"Xc" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor{ - id = "golemwindows" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/powered/golem_ship) "Xr" = ( /obj/structure/closet/crate, /obj/item/storage/bag/ore, @@ -2323,7 +2267,9 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/ruin/powered/golem_ship) "YQ" = ( @@ -2342,9 +2288,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/powered/golem_ship) "YV" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/blue, /area/ruin/powered/golem_ship) @@ -2371,13 +2315,15 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/door/airlock/external, /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" = ( @@ -2401,12 +2347,12 @@ HZ HZ HZ HZ -Xc -Ma -Ma -Ma -Ma -Ma +Ye +Cg +Cg +Cg +Cg +Ye HZ HZ HZ @@ -2547,7 +2493,7 @@ aY vl dt Ye -SV +GB aB Ng nD @@ -2609,7 +2555,7 @@ Af Ye Ye Mw -On +aB aB Jk ki @@ -2670,7 +2616,7 @@ Ox fK nD NZ -Vy +SG SG Ma "} @@ -2731,7 +2677,7 @@ Ye se aB zX -gT +UW ny "} (18,1,1) = {" @@ -2963,8 +2909,8 @@ tI nt nt Ye -gT -hO +fy +ea Ye nt nt diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm index d8652e33f180..308f02a36afe 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm @@ -110,9 +110,7 @@ /turf/open/floor/pod/dark, /area/ruin/powered) "z" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/tubes, /turf/open/floor/plating, /area/ruin/powered) diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm index 82c5e17da1e1..1d0323a4f09f 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm @@ -64,9 +64,7 @@ }, /area/ruin/unpowered) "l" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/table/wood, /obj/effect/spawner/lootdrop/pizzaparty, /obj/effect/decal/cleanable/dirt, @@ -275,9 +273,7 @@ }, /area/ruin/unpowered) "P" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm index 8710b9b4ca26..4eee51cacf87 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm @@ -17,7 +17,9 @@ }, /area/ruin/unpowered) "e" = ( -/obj/machinery/door/airlock/wood, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/sepia{ slowdown = 10 }, diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm index 01cbeb09fd64..94d807b3e71e 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm @@ -58,9 +58,7 @@ /obj/structure/bed/pod, /obj/item/bedsheet/black, /obj/structure/tubes, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/pod/dark, /area/ruin/powered) "n" = ( diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm index 83b642ab8139..be604192e5bd 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm @@ -12,9 +12,7 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/testlab) "af" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) @@ -70,9 +68,7 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered/syndicate_lava_base/medbay) "ap" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/testlab) "aq" = ( @@ -116,7 +112,8 @@ }, /obj/machinery/door/airlock{ name = "Bar Storage"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -125,7 +122,7 @@ /area/ruin/unpowered/syndicate_lava_base/bar) "aQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/arrivals) "aR" = ( @@ -175,19 +172,10 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable{ icon_state = "4-8" }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "by" = ( @@ -205,10 +193,7 @@ icon_state = "0-2" }, /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 + dir = 9 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) @@ -258,19 +243,10 @@ pixel_y = -25 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable{ icon_state = "0-4" }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "cJ" = ( @@ -293,10 +269,18 @@ /obj/structure/cable, /turf/open/floor/engine/vacuum, /area/ruin/unpowered/syndicate_lava_base/engineering) -"cP" = ( -/obj/machinery/light/small{ +"cN" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "lavalandsyndi_bar"; dir = 4 }, +/turf/open/floor/plating, +/area/ruin/unpowered/syndicate_lava_base/bar) +"cP" = ( +/obj/machinery/light/small/directional/east, /turf/open/floor/engine/plasma, /area/ruin/unpowered/syndicate_lava_base/engineering) "cU" = ( @@ -315,15 +299,9 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "cV" = ( @@ -340,15 +318,11 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/cargo) "dc" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/testlab) "di" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/testlab) "dn" = ( @@ -374,21 +348,13 @@ /obj/effect/decal/cleanable/dirt, /obj/item/storage/box/beakers/bluespace, /obj/item/storage/box/beakers/bluespace, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) "du" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/button/door{ id = "lavalandsyndi_chemistry"; name = "Chemistry Blast Door Control"; @@ -397,10 +363,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 5 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) @@ -477,12 +440,8 @@ pixel_y = 5 }, /obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ + dir = 8 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) @@ -581,7 +540,8 @@ }, /obj/machinery/door/airlock/engineering{ name = "Engineering"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/industrial/hatch/yellow, @@ -657,9 +617,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) "dZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/table/glass, /obj/item/folder/white, /obj/item/reagent_containers/glass/beaker/large{ @@ -677,9 +635,8 @@ /obj/item/screwdriver/nuke{ pixel_y = 18 }, -/obj/effect/turf_decal/corner/opaque/white, /obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 6 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) @@ -738,17 +695,8 @@ "ed" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/machinery/power/rad_collector, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "ee" = ( @@ -820,22 +768,11 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "em" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/button/door{ id = "lavalandsyndi"; name = "Syndicate Experimentation Lockdown Control"; @@ -846,16 +783,7 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "en" = ( @@ -868,58 +796,30 @@ "eo" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/syndicate, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/item/paper/crumpled{ info = "Explosive testing on site is STRICTLY forbidden, as this outpost's walls are lined with explosives intended for intentional self-destruct purposes that may be set off prematurely through careless experiments."; name = "Explosives Testing Warning"; pixel_x = -6; pixel_y = -3 }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "ep" = ( /obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, /obj/item/paper_bin, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "eq" = ( /obj/structure/table/reinforced, /obj/item/restraints/handcuffs, /obj/item/taperecorder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "es" = ( @@ -952,13 +852,7 @@ "ew" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/syndichem, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, +/obj/effect/turf_decal/corner/opaque/white/three_quarters, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) "eD" = ( @@ -976,41 +870,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium, /area/ruin/unpowered/syndicate_lava_base/cargo) -"eF" = ( -/obj/structure/grille, -/obj/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor{ - id = "lavalandsyndi_cargo" - }, -/turf/open/floor/plating, -/area/ruin/unpowered/syndicate_lava_base/cargo) "eG" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "eH" = ( /obj/structure/bed, /obj/item/bedsheet, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ + dir = 8 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -1024,7 +897,7 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/virology) "eK" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/bed/roller, /obj/machinery/iv_drip, /obj/effect/decal/cleanable/dirt, @@ -1047,7 +920,8 @@ "eL" = ( /obj/machinery/door/airlock/hatch{ name = "Monkey Pen"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 8 }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -1063,23 +937,11 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "eN" = ( -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -25 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ 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 = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "eO" = ( @@ -1090,16 +952,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ 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 = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "eP" = ( @@ -1112,33 +965,15 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ 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 = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "eQ" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/table/reinforced, /obj/item/storage/box/monkeycubes/syndicate, /obj/item/storage/box/monkeycubes/syndicate, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "eS" = ( @@ -1166,13 +1001,7 @@ /area/ruin/unpowered/syndicate_lava_base/chemistry) "eV" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, +/obj/effect/turf_decal/corner/opaque/white/three_quarters, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) "eX" = ( @@ -1213,17 +1042,8 @@ /area/ruin/unpowered/syndicate_lava_base/cargo) "eZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/machinery/power/rad_collector, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "fa" = ( @@ -1268,40 +1088,26 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "fg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, +/obj/effect/turf_decal/corner/opaque/white/three_quarters, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "fh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "fj" = ( @@ -1314,16 +1120,9 @@ /obj/item/clothing/glasses/hud/health, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ + dir = 8 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -1375,16 +1174,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/assist, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "fs" = ( @@ -1428,9 +1218,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "fu" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/airalarm/syndicate{ dir = 4; pixel_x = -25 @@ -1464,11 +1252,8 @@ /area/ruin/unpowered/syndicate_lava_base/cargo) "fw" = ( /obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/cargo) "fx" = ( @@ -1505,14 +1290,7 @@ /obj/machinery/smartfridge/chemistry/virology/preloaded, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/turf/open/floor/plasteel, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/virology) "fD" = ( /obj/structure/sign/warning/biohazard, @@ -1521,9 +1299,7 @@ "fE" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/closet/l3closet, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/airalarm/syndicate{ pixel_y = 25 }, @@ -1540,26 +1316,17 @@ "fH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 5 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "fM" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 27 - }, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "fO" = ( /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 5 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) @@ -1585,7 +1352,8 @@ /area/ruin/unpowered/syndicate_lava_base/cargo) "gd" = ( /obj/machinery/door/airlock/external{ - req_access_txt = "150" + req_access_txt = "150"; + dir = 8 }, /obj/structure/fans/tiny, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -1597,7 +1365,7 @@ /obj/structure/sign/warning/vacuum{ pixel_y = -32 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/cargo) "gg" = ( @@ -1612,7 +1380,8 @@ "gh" = ( /obj/structure/fans/tiny, /obj/machinery/door/airlock/external{ - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -1659,7 +1428,7 @@ "gs" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -1670,19 +1439,10 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "gD" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -1743,9 +1503,7 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/button/door{ id = "lavalandsyndi_cargo"; name = "Cargo Bay Blast Door Control"; @@ -1778,10 +1536,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 + dir = 9 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -1831,13 +1586,9 @@ /area/ruin/unpowered/syndicate_lava_base/main) "hb" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/red{ +/obj/effect/turf_decal/corner/opaque/red/three_quarters{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "hd" = ( @@ -1860,7 +1611,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "hg" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ @@ -1892,7 +1643,8 @@ "hk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" + name = "Cargo Bay"; + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, @@ -1916,17 +1668,11 @@ /area/ruin/unpowered/syndicate_lava_base/cargo) "hp" = ( /obj/effect/decal/cleanable/dirt, -/mob/living/carbon/monkey{ - faction = list("neutral","Syndicate") - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 +/mob/living/carbon/monkey{ + faction = list("neutral","Syndicate") }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -1936,24 +1682,17 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 5 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "hr" = ( +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ + dir = 8 + }, /mob/living/carbon/monkey{ faction = list("neutral","Syndicate") }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "hs" = ( @@ -1965,13 +1704,9 @@ pixel_x = -26; req_access_txt = "150" }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "ht" = ( @@ -1985,9 +1720,8 @@ /obj/item/restraints/handcuffs, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/science, -/obj/effect/turf_decal/corner/opaque/white, /obj/effect/turf_decal/corner/opaque/white{ - dir = 8 + dir = 10 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -2003,9 +1737,8 @@ /obj/item/stack/sheet/mineral/gold{ amount = 10 }, -/obj/effect/turf_decal/corner/opaque/white, /obj/effect/turf_decal/corner/opaque/white{ - dir = 8 + dir = 10 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -2073,7 +1806,8 @@ "hC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" + name = "Cargo Bay"; + dir = 4 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/cargo) @@ -2087,42 +1821,31 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/unpowered/syndicate_lava_base/cargo) "hE" = ( -/mob/living/carbon/monkey{ - faction = list("neutral","Syndicate") - }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 +/mob/living/carbon/monkey{ + faction = list("neutral","Syndicate") }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "hF" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/white, /obj/effect/turf_decal/corner/opaque/white{ - dir = 8 + dir = 10 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "hG" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/white/three_quarters, /mob/living/carbon/monkey{ faction = list("neutral","Syndicate") }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "hH" = ( @@ -2144,9 +1867,7 @@ /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/main) "hK" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/sign/warning/fire{ pixel_x = 32 }, @@ -2162,15 +1883,11 @@ /obj/structure/table/wood, /obj/item/ammo_box/magazine/m10mm, /obj/item/ammo_box/magazine/sniper_rounds, -/obj/machinery/airalarm/syndicate{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "hN" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) @@ -2178,18 +1895,14 @@ /turf/closed/wall/mineral/plastitanium/explosive, /area/ruin/unpowered/syndicate_lava_base/dormitories) "hP" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "hQ" = ( /obj/structure/table/wood, /obj/item/ammo_box/magazine/m10mm, -/obj/machinery/airalarm/syndicate{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "hR" = ( @@ -2225,7 +1938,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/cargo) "hU" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/brown, /obj/effect/turf_decal/corner/opaque/brown{ @@ -2299,9 +2012,7 @@ dir = 8; pixel_x = 11 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/mirror{ pixel_x = 28 }, @@ -2333,7 +2044,6 @@ /obj/effect/turf_decal/industrial/warning{ dir = 9 }, -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -2343,7 +2053,6 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -2427,12 +2136,6 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered/syndicate_lava_base/main) -"is" = ( -/obj/machinery/light/small{ - dir = 1 - }, /obj/machinery/turretid{ ailock = 1; control_area = "/area/ruin/unpowered/syndicate_lava_base/main"; @@ -2444,6 +2147,10 @@ req_access = null; req_access_txt = "150" }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered/syndicate_lava_base/main) +"is" = ( +/obj/machinery/light/small/directional/north, /turf/open/floor/circuit/red, /area/ruin/unpowered/syndicate_lava_base/main) "it" = ( @@ -2463,13 +2170,12 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/main) "iu" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -2477,7 +2183,6 @@ /area/lavaland/surface/outdoors) "iv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -2485,7 +2190,8 @@ /area/lavaland/surface/outdoors) "iy" = ( /obj/machinery/door/airlock/public/glass{ - name = "Dormitories" + name = "Dormitories"; + dir = 4 }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, @@ -2550,10 +2256,6 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/dormitories) "iG" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 @@ -2561,6 +2263,7 @@ /obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "iH" = ( @@ -2600,9 +2303,7 @@ /turf/open/floor/circuit/red, /area/ruin/unpowered/syndicate_lava_base/main) "iM" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -2612,9 +2313,7 @@ /turf/closed/wall/mineral/plastitanium/explosive, /area/ruin/unpowered/syndicate_lava_base/main) "iO" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -2682,7 +2381,8 @@ pixel_x = 25; pixel_y = 8; req_access_txt = "150"; - specialfunctions = 4 + specialfunctions = 4; + dir = 8 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) @@ -2704,7 +2404,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/main) "jc" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/circuit/red, /area/ruin/unpowered/syndicate_lava_base/main) "jd" = ( @@ -2728,7 +2428,6 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -2755,7 +2454,6 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "jk" = ( -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -2786,9 +2484,7 @@ /obj/effect/mob_spawn/human/lavaland_syndicate{ dir = 4 }, -/obj/machinery/airalarm/syndicate{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "jo" = ( @@ -2802,9 +2498,7 @@ /obj/effect/mob_spawn/human/lavaland_syndicate{ dir = 8 }, -/obj/machinery/airalarm/syndicate{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "jr" = ( @@ -2824,16 +2518,6 @@ }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) -"jt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/unpowered/syndicate_lava_base/main) "ju" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/engineering) @@ -2879,18 +2563,14 @@ /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "jB" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "jC" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -2909,6 +2589,16 @@ }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) +"jK" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + id = "lavalandsyndi_cargo"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered/syndicate_lava_base/cargo) "jL" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -2933,9 +2623,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "jM" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/chair{ dir = 8 }, @@ -2964,9 +2652,7 @@ /turf/closed/wall/mineral/plastitanium/explosive, /area/ruin/unpowered/syndicate_lava_base/bar) "jR" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -2974,10 +2660,6 @@ /area/ruin/unpowered/syndicate_lava_base/main) "jT" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, /obj/structure/sign/departments/engineering, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/main) @@ -3181,9 +2863,7 @@ /turf/open/floor/engine/co2, /area/ruin/unpowered/syndicate_lava_base/engineering) "kF" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/engine/n2, /area/ruin/unpowered/syndicate_lava_base/engineering) "kG" = ( @@ -3258,15 +2938,12 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "kM" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, /obj/machinery/vending/cigarette{ extended_inventory = 1 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "kN" = ( @@ -3390,9 +3067,7 @@ /turf/open/floor/engine/co2, /area/ruin/unpowered/syndicate_lava_base/engineering) "le" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; @@ -3400,16 +3075,10 @@ }, /area/ruin/unpowered/syndicate_lava_base/arrivals) "lf" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/chair{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) @@ -3455,9 +3124,7 @@ /area/ruin/unpowered/syndicate_lava_base/bar) "lk" = ( /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = 30 }, @@ -3489,6 +3156,7 @@ /obj/effect/turf_decal/corner/opaque/white{ dir = 8 }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/medbay) "ln" = ( @@ -3501,9 +3169,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/medbay) "lo" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/table, /obj/item/storage/firstaid/fire, /obj/effect/decal/cleanable/dirt, @@ -3536,9 +3202,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "lu" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supplymain/visible{ @@ -3551,7 +3215,6 @@ /obj/effect/turf_decal/industrial/warning{ dir = 10 }, -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -3559,7 +3222,6 @@ /area/lavaland/surface/outdoors) "lw" = ( /obj/effect/turf_decal/industrial/warning, -/obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating{ baseturfs = /turf/open/lava/smooth/lava_land_surface; initial_gas_mix = "LAVALAND_ATMOS" @@ -3580,6 +3242,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "ly" = ( @@ -3659,16 +3322,11 @@ /obj/effect/turf_decal/corner/opaque/white{ dir = 4 }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/medbay) "lL" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/table, /obj/item/stack/sheet/metal/fifty{ pixel_x = -1; @@ -3711,9 +3369,7 @@ /turf/open/floor/engine/o2, /area/ruin/unpowered/syndicate_lava_base/engineering) "lR" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/engine/o2, /area/ruin/unpowered/syndicate_lava_base/engineering) "lS" = ( @@ -3731,10 +3387,6 @@ /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/arrivals) "lU" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -25 - }, /obj/structure/chair/stool, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -3746,6 +3398,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "lV" = ( @@ -3790,18 +3443,11 @@ dir = 8; pixel_x = 11 }, -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 25 - }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/medbay) "mg" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high/plus, @@ -3810,6 +3456,7 @@ pixel_y = 12 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "mi" = ( @@ -3882,9 +3529,7 @@ /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/arrivals) "ms" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/sign/warning/fire{ pixel_x = 32 }, @@ -3892,6 +3537,7 @@ /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/flashlight/seclite, /obj/item/clothing/mask/gas, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/arrivals) "mt" = ( @@ -3910,7 +3556,7 @@ /area/ruin/unpowered/syndicate_lava_base/bar) "mv" = ( /obj/structure/table/wood, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/power/apc/syndicate{ name = "Bar APC"; pixel_y = -25 @@ -3935,16 +3581,11 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "mA" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/bed/roller, /obj/machinery/iv_drip, /obj/item/reagent_containers/blood/OMinus, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -3979,9 +3620,7 @@ /obj/item/circular_saw{ pixel_y = 9 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white, @@ -4004,7 +3643,7 @@ /area/ruin/unpowered/syndicate_lava_base/engineering) "mI" = ( /obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/visible, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump{ @@ -4117,6 +3756,7 @@ dir = 1; id = "syndie_lavaland_incineratorturbine" }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "ne" = ( @@ -4127,19 +3767,22 @@ }, /obj/machinery/button/ignition/incinerator/syndicatelava{ pixel_x = 6; - pixel_y = -25 + pixel_y = -25; + dir = 1 }, /obj/effect/turf_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/canister, /obj/effect/decal/cleanable/dirt, /obj/machinery/button/door/incinerator_vent_syndicatelava_aux{ - pixel_x = -8; - pixel_y = -40 + pixel_x = 22; + pixel_y = -8; + dir = 8 }, /obj/machinery/button/door/incinerator_vent_syndicatelava_main{ - pixel_x = 6; - pixel_y = -40 + pixel_x = 22; + pixel_y = 3; + dir = 8 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) @@ -4158,87 +3801,39 @@ /obj/machinery/telecomms/relay/preset/ruskie{ use_power = 0 }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/machinery/light/small/directional/west, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "ni" = ( -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "nj" = ( /obj/machinery/door/airlock/hatch{ name = "Telecommunications Control"; - req_access_txt = "150" - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/neutral, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ + req_access_txt = "150"; dir = 8 }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "nk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ 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 = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "nl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ 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 = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "nm" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -4247,16 +3842,7 @@ dir = 8; pixel_x = 27 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "nn" = ( @@ -4315,6 +3901,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "nB" = ( @@ -4347,51 +3934,18 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/engineering) "nH" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/machinery/light/small/directional/west, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "nI" = ( /obj/machinery/computer/camera_advanced, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "nJ" = ( /obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "nW" = ( @@ -4427,10 +3981,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/medbay) "oc" = ( -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/machinery/light/small/directional/south, /obj/machinery/power/apc/syndicate{ dir = 4; name = "Medbay APC"; @@ -4448,9 +3999,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/medbay) "od" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, @@ -4460,9 +4009,7 @@ /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/engineering) "of" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/binary/pump/on{ target_pressure = 4500 }, @@ -4481,54 +4028,25 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "oh" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/machinery/firealarm/directional/west, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "oi" = ( /obj/structure/chair/office{ 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 = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "oj" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ freerange = 1; name = "Syndicate Radio Intercom" }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "ok" = ( @@ -4539,17 +4057,8 @@ name = "Telecommunications APC"; pixel_y = -25 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "ol" = ( @@ -4572,20 +4081,19 @@ /obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/arrivals) "on" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/arrivals) "oo" = ( @@ -4686,9 +4194,7 @@ /obj/structure/sign/warning/vacuum{ pixel_x = -32 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/arrivals) "oL" = ( @@ -4705,7 +4211,8 @@ frequency = 1449; id_tag = "lavaland_syndie_virology_exterior"; name = "Virology Lab Exterior Airlock"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/machinery/doorButtons/access_button{ idDoor = "lavaland_syndie_virology_exterior"; @@ -4745,15 +4252,12 @@ /obj/effect/turf_decal/industrial/caution/red{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/effect/turf_decal/corner/opaque/white, /obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 6 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -4770,13 +4274,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 5 }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -4789,9 +4287,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "qC" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -4819,20 +4315,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable{ icon_state = "4-8" }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "qL" = ( @@ -4859,17 +4345,12 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/arrivals) "rc" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/dormitories) "rg" = ( @@ -4900,25 +4381,19 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ 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 = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) -"so" = ( -/obj/machinery/light/small{ - dir = 1 +"sk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay"; + dir = 4 }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered/syndicate_lava_base/medbay) +"so" = ( /obj/machinery/power/apc/syndicate{ dir = 1; name = "Engineering APC"; @@ -4966,9 +4441,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "tu" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -4981,6 +4454,13 @@ }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) +"tM" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered/syndicate_lava_base/virology) "tW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -5012,15 +4492,18 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/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" }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 9 + }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "vu" = ( @@ -5134,10 +4617,6 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "xm" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -5146,11 +4625,9 @@ icon_state = "1-2" }, /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 + dir = 9 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) "xJ" = ( @@ -5166,12 +4643,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "xK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/syndicate{ - pixel_y = 25 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5230,19 +4702,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable{ icon_state = "2-4" }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/telecomms) "zq" = ( @@ -5283,9 +4746,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "zM" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/corner/opaque/red{ @@ -5314,9 +4775,8 @@ pixel_x = 23; pixel_y = -23 }, -/obj/effect/turf_decal/corner/opaque/white, /obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 6 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -5342,10 +4802,7 @@ /obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "Bd" = ( @@ -5468,9 +4925,6 @@ /area/ruin/unpowered/syndicate_lava_base/dormitories) "CC" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitories" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5481,6 +4935,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories"; + dir = 4 + }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/dormitories) "CG" = ( @@ -5493,7 +4951,7 @@ /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/testlab) "Db" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5507,15 +4965,29 @@ }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/arrivals) -"DC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Chemistry Lab"; - req_access_txt = "150" +"Dk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/transparent/neutral/full, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered/syndicate_lava_base/cargo) +"DC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Chemistry Lab"; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -5531,7 +5003,7 @@ /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/testlab) "Ec" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 1 }, @@ -5561,7 +5033,8 @@ frequency = 1449; id_tag = "lavaland_syndie_virology_interior"; name = "Virology Lab Interior Airlock"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5625,7 +5098,9 @@ /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/engineering) "Fz" = ( -/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5649,10 +5124,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 + dir = 9 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) @@ -5670,21 +5142,11 @@ /area/ruin/unpowered/syndicate_lava_base/medbay) "Hu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable{ icon_state = "1-2" }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "HG" = ( @@ -5746,6 +5208,15 @@ }, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/main) +"Je" = ( +/obj/docking_port/stationary{ + dir = 4; + height = 15; + dwidth = 8; + width = 15 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) "JB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/layer_manifold/visible{ @@ -5779,7 +5250,8 @@ dir = 4 }, /obj/machinery/door/airlock/medical/glass{ - name = "Medbay" + name = "Medbay"; + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" @@ -5805,10 +5277,7 @@ /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/cargo) "Lg" = ( @@ -5822,32 +5291,17 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/engineering) "Ls" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable{ icon_state = "2-4" }, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "Lz" = ( @@ -5867,6 +5321,7 @@ /obj/structure/cable{ icon_state = "0-4" }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/engineering) "LG" = ( @@ -5893,7 +5348,7 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5926,13 +5381,10 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/corner/opaque/white/three_quarters{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) "Mo" = ( @@ -6021,19 +5473,11 @@ "NL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable{ icon_state = "1-2" }, +/obj/effect/turf_decal/corner/transparent/neutral/full, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "NU" = ( @@ -6052,10 +5496,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/arrivals) "Ov" = ( @@ -6183,6 +5624,16 @@ }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/arrivals) +"Ro" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "lavalandsyndi_bar"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/unpowered/syndicate_lava_base/bar) "Rq" = ( /turf/open/floor/engine/plasma, /area/ruin/unpowered/syndicate_lava_base/engineering) @@ -6240,9 +5691,7 @@ /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/arrivals) "SA" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/closet/crate, /obj/item/vending_refill/snack{ pixel_x = -3; @@ -6286,32 +5735,17 @@ /obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "Td" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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/structure/cable{ icon_state = "2-8" }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 27 - }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/corner/transparent/neutral/full, /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "Tp" = ( @@ -6335,9 +5769,7 @@ "TG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "TV" = ( @@ -6354,10 +5786,6 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "Ub" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -6372,6 +5800,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "Uc" = ( @@ -6404,10 +5833,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 5 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) @@ -6427,9 +5853,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/structure/cable{ icon_state = "0-4" }, @@ -6467,7 +5891,8 @@ "WE" = ( /obj/machinery/door/airlock/hatch{ name = "Telecommunications"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -6492,8 +5917,17 @@ /area/ruin/unpowered/syndicate_lava_base/telecomms) "Xd" = ( /obj/structure/closet/radiation, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) +"Xg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/white/three_quarters, +/turf/open/floor/plasteel, +/area/ruin/unpowered/syndicate_lava_base/virology) "XI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -6504,9 +5938,6 @@ /obj/structure/cable{ icon_state = "1-4" }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/virology) "XR" = ( @@ -6525,30 +5956,19 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "Yd" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, /obj/effect/turf_decal/corner/opaque/white{ - dir = 8 + dir = 9 }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/chemistry) "Ym" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/power/apc/syndicate{ dir = 1; name = "Cargo Bay APC"; @@ -6638,9 +6058,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/arrivals) "ZN" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/engine/co2, /area/ruin/unpowered/syndicate_lava_base/engineering) "ZU" = ( @@ -7012,7 +6430,7 @@ ab ab ac eh -eG +tM ff eI aj @@ -7063,7 +6481,7 @@ ab ab eh eH -fg +Xg fy gp eI @@ -7379,7 +6797,7 @@ ig je jk jx -jx +cN jy jy jy @@ -7428,7 +6846,7 @@ ig je jk jx -jx +Ro kG lf lx @@ -7477,7 +6895,7 @@ ig je iv jx -jx +Ro kn kH jN @@ -7526,7 +6944,7 @@ iu je jk jx -jx +cN jN jZ jN @@ -8086,7 +7504,7 @@ kQ kQ kT KZ -kR +sk kQ kQ ab @@ -8361,7 +7779,7 @@ ab dy dy ed -qJ +Dk eZ dy dy @@ -8374,7 +7792,7 @@ iq iI iq ha -jt +ha dO jT ju @@ -8661,13 +8079,13 @@ ab ab ab dy -eF -eF +jK +jK dy gf dy -eF -eF +jK +jK dy ab ab @@ -8814,7 +8232,7 @@ ab ab ab ab -ab +Je ab ab ab @@ -8853,7 +8271,7 @@ aa aa aa ab -aa +ab ab ab ab @@ -8906,7 +8324,7 @@ aa aa ab ab -aa +ab ab ab ab @@ -8953,8 +8371,52 @@ aa aa aa aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa +"} +(48,1,1) = {" aa aa aa @@ -8995,17 +8457,66 @@ ab ab ab ab +ab +ab +ab +ab +ab +aa aa aa "} -(48,1,1) = {" +(49,1,1) = {" +aa +aa +aa aa aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa aa aa aa aa aa +"} +(50,1,1) = {" aa aa aa @@ -9044,6 +8555,613 @@ ab ab ab ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,1) = {" +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,1) = {" +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,1) = {" +aa +aa +aa +aa +ab +ab +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ab +aa +aa +aa +aa +ab +ab +aa +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa diff --git a/_maps/RandomRuins/ReebeRuins/reebe_arena.dmm b/_maps/RandomRuins/ReebeRuins/reebe_arena.dmm index 86bd4a91ac71..54d5adb49d9f 100644 --- a/_maps/RandomRuins/ReebeRuins/reebe_arena.dmm +++ b/_maps/RandomRuins/ReebeRuins/reebe_arena.dmm @@ -129,7 +129,7 @@ /area/ruin/reebe) "FD" = ( /obj/structure/table/bronze, -/obj/item/radio/intercom, +/obj/item/radio/intercom/directional/north, /turf/open/floor/bronze, /area/ruin/reebe) "FK" = ( @@ -242,10 +242,6 @@ /obj/effect/mob_spawn/human/corpse/nanotrasensoldier, /turf/open/floor/bronze, /area/ruin/reebe) -"Yz" = ( -/obj/structure/lattice/clockwork, -/turf/template_noop, -/area/template_noop) "Zx" = ( /obj/structure/mirror/magic/lesser{ pixel_x = 32 @@ -463,7 +459,7 @@ IC IC IC IC -Yz +bi vP pm pm @@ -473,7 +469,7 @@ pm pm pm FK -Yz +bi IC IC IC @@ -517,15 +513,15 @@ IC IC IC ai -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Yz +bi +bi +bi +bi +bi +bi +bi +bi +bi vP pm pm @@ -535,15 +531,15 @@ pm pm pm FK -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Yz +bi +bi +bi +bi +bi +bi +bi +bi +bi ai IC IC @@ -587,7 +583,7 @@ IC IC IC IC -Yz +bi vP pm pm @@ -597,7 +593,7 @@ pm pm pm FK -Yz +bi IC IC IC @@ -1927,7 +1923,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -1989,7 +1985,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -2051,7 +2047,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -2113,7 +2109,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -2175,7 +2171,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -2237,7 +2233,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -2299,7 +2295,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -2361,7 +2357,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -3105,7 +3101,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -3167,7 +3163,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -3229,7 +3225,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -3291,7 +3287,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -3353,7 +3349,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -3415,7 +3411,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -3477,7 +3473,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -3539,7 +3535,7 @@ IC IC IC IC -Yz +bi IC IC IC @@ -4803,7 +4799,7 @@ IC IC IC IC -Yz +bi vP pm pm @@ -4813,7 +4809,7 @@ pm pm pm FK -Yz +bi IC IC IC @@ -4857,15 +4853,15 @@ IC IC IC ai -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Yz +bi +bi +bi +bi +bi +bi +bi +bi +bi vP pm pm @@ -4875,15 +4871,15 @@ Em pm pm FK -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Yz +bi +bi +bi +bi +bi +bi +bi +bi +bi FT IC IC @@ -4927,7 +4923,7 @@ IC IC IC IC -Yz +bi vP pm pm @@ -4937,7 +4933,7 @@ pm pm pm FK -Yz +bi IC IC IC diff --git a/_maps/RandomRuins/RockRuins/rockplanet_boxsci.dmm b/_maps/RandomRuins/RockRuins/rockplanet_boxsci.dmm index 17a99cefee8b..7af7b29b6de2 100644 --- a/_maps/RandomRuins/RockRuins/rockplanet_boxsci.dmm +++ b/_maps/RandomRuins/RockRuins/rockplanet_boxsci.dmm @@ -20,7 +20,9 @@ /turf/open/floor/plating, /area/ruin/unpowered) "aO" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -45,7 +47,9 @@ /area/ruin/unpowered) "cY" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/unpowered) @@ -117,9 +121,7 @@ "jk" = ( /obj/effect/turf_decal/industrial/warning, /obj/machinery/aug_manipulator, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/unpowered) @@ -131,7 +133,9 @@ /area/ruin/unpowered) "kz" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "lv" = ( @@ -228,7 +232,9 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered) "rB" = ( -/obj/structure/door_assembly/door_assembly_com, +/obj/structure/door_assembly/door_assembly_com{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/unpowered) @@ -249,12 +255,12 @@ /turf/open/floor/plating, /area/ruin/unpowered) "sO" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/rust, /area/ruin/unpowered) "sR" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/table, /obj/item/storage/toolbox/mechanical, /obj/item/crowbar, @@ -298,6 +304,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/unpowered) +"uR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) "vc" = ( /obj/structure/table, /obj/item/clothing/gloves/color/latex, @@ -356,6 +369,20 @@ /obj/machinery/door/poddoor/shutters, /turf/open/floor/plasteel/white, /area/ruin/unpowered) +"BI" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"BV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) "Cq" = ( /turf/template_noop, /area/template_noop) @@ -402,7 +429,9 @@ /area/ruin/unpowered) "Gk" = ( /obj/machinery/door/airlock/research, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "Hp" = ( @@ -461,9 +490,8 @@ /turf/open/floor/circuit/red/telecomms, /area/ruin/unpowered) "LN" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, @@ -476,6 +504,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ruin/unpowered) +"Mm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) "My" = ( /obj/structure/table, /obj/item/mmi/syndie, @@ -538,7 +573,9 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered) "Qi" = ( -/obj/machinery/door/airlock/research, +/obj/machinery/door/airlock/research{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -572,6 +609,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered) +"SS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) "Tl" = ( /obj/structure/window/reinforced/spawner/west, /obj/effect/decal/cleanable/dirt, @@ -606,9 +650,7 @@ /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 8 }, -/obj/machinery/light/built{ - dir = 8 - }, +/obj/machinery/light/built/directional/west, /turf/open/floor/plasteel, /area/ruin/unpowered) "VO" = ( @@ -623,9 +665,7 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered) "WJ" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating, /area/ruin/unpowered) "WO" = ( @@ -741,7 +781,7 @@ MQ MQ MQ Ts -hK +BV "} (4,1,1) = {" AX @@ -841,7 +881,7 @@ MQ rW MQ Ts -hK +BV "} (8,1,1) = {" Ts @@ -1026,16 +1066,16 @@ NV NV NV Ts -oY -JY +BI +SS NV NV Cu oa -aI -aI -aI -aI +NV +Mm +Mm +uR Cq Cq Cq diff --git a/_maps/RandomRuins/RockRuins/rockplanet_budgetcuts.dmm b/_maps/RandomRuins/RockRuins/rockplanet_budgetcuts.dmm index ae98f925f5be..6b3b24f4e752 100644 --- a/_maps/RandomRuins/RockRuins/rockplanet_budgetcuts.dmm +++ b/_maps/RandomRuins/RockRuins/rockplanet_budgetcuts.dmm @@ -111,9 +111,7 @@ "by" = ( /obj/machinery/vending/cola/random, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/plasteel, /area/ruin/powered) "bD" = ( @@ -241,7 +239,9 @@ /area/overmap_encounter/planetoid/rockplanet/explored) "do" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/ruin/powered) @@ -272,9 +272,7 @@ /turf/open/floor/engine, /area/ruin/powered) "eb" = ( -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/effect/turf_decal/siding/white{ dir = 1 }, @@ -297,6 +295,13 @@ }, /turf/open/floor/plasteel/dark, /area/overmap_encounter/planetoid/rockplanet/explored) +"eI" = ( +/obj/machinery/door/airlock/hatch{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/ruin/powered) "eM" = ( /obj/structure/table/reinforced, /obj/item/aicard{ @@ -331,9 +336,7 @@ /turf/closed/wall/r_wall/rust, /area/ruin/powered) "fe" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ruin/powered) @@ -392,7 +395,7 @@ /obj/machinery/microwave{ pixel_y = 5 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, @@ -403,9 +406,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/wood, /area/ruin/powered) "gm" = ( @@ -617,9 +618,7 @@ /turf/open/floor/plating, /area/ruin/powered) "jT" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/oil, /turf/open/floor/engine, /area/ruin/powered) @@ -635,9 +634,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/dresser, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/wood{ icon_state = "wood-broken6" }, @@ -895,9 +892,7 @@ /turf/open/floor/plasteel/white, /area/ruin/powered) "nS" = ( -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/structure/railing{ dir = 4 }, @@ -1036,9 +1031,7 @@ /obj/effect/decal/cleanable/blood/tracks{ pixel_y = 10 }, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /obj/effect/turf_decal/corner/opaque/red/border{ dir = 4 }, @@ -1088,9 +1081,7 @@ /area/ruin/powered) "qJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/effect/turf_decal/siding/white{ dir = 1 }, @@ -1267,7 +1258,9 @@ /turf/open/floor/plasteel/showroomfloor, /area/ruin/powered) "tV" = ( -/obj/machinery/door/airlock/freezer, +/obj/machinery/door/airlock/freezer{ + dir = 8 + }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/showroomfloor, /area/ruin/powered) @@ -1309,7 +1302,7 @@ }, /obj/effect/turf_decal/industrial/hatch/yellow, /obj/effect/turf_decal/corner/opaque/red/full, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_x = 1; pixel_y = 23 }, @@ -1325,13 +1318,7 @@ }, /obj/item/trash/plate, /obj/item/trash/popcorn, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = 23 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plastic, /area/ruin/powered) "vb" = ( @@ -1368,16 +1355,12 @@ "vr" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/oil, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /mob/living/simple_animal/hostile/pirate/ranged/space, /turf/open/floor/plating, /area/ruin/powered) "vz" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/effect/turf_decal/corner/transparent/purple/border{ dir = 8 }, @@ -1416,10 +1399,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = 23 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/ruin/powered) "wd" = ( @@ -1566,7 +1546,7 @@ pixel_x = -3; pixel_y = 3 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/showroomfloor, @@ -1589,9 +1569,7 @@ /turf/open/floor/plasteel, /area/ruin/powered) "An" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/bed/pod, /obj/structure/railing{ dir = 4 @@ -1623,7 +1601,9 @@ /turf/open/water/jungle, /area/overmap_encounter/planetoid/rockplanet/explored) "AV" = ( -/obj/machinery/door/airlock/mining, +/obj/machinery/door/airlock/mining{ + dir = 4 + }, /obj/machinery/door/firedoor, /obj/structure/barricade/wooden/crude, /turf/open/floor/plasteel, @@ -1640,11 +1620,7 @@ /obj/machinery/newscaster/security_unit{ pixel_y = 32 }, -/obj/item/radio/intercom{ - pixel_x = -24; - pixel_y = 1; - dir = 4 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/carpet/red, /area/ruin/powered) "Ba" = ( @@ -1692,7 +1668,7 @@ /area/ruin/powered) "BF" = ( /obj/structure/fluff/hedge, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /obj/effect/turf_decal/siding/white{ dir = 4 }, @@ -1735,7 +1711,7 @@ "Cn" = ( /obj/machinery/processor, /obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_x = 1; pixel_y = 23 }, @@ -1753,9 +1729,7 @@ "Cx" = ( /obj/structure/bed/pod, /obj/item/bedsheet/dorms, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/wood, /area/ruin/powered) "CG" = ( @@ -1940,11 +1914,9 @@ /turf/open/water/jungle, /area/overmap_encounter/planetoid/rockplanet/explored) "Fo" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/garbage, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel/rockvault, /area/ruin/powered) "Fq" = ( @@ -2016,10 +1988,7 @@ pixel_x = 4; pixel_y = 5 }, -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = 23 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/powered) "FR" = ( @@ -2141,9 +2110,7 @@ /area/overmap_encounter/planetoid/rockplanet/explored) "IJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/engine, /area/ruin/powered) "IW" = ( @@ -2177,7 +2144,9 @@ /turf/closed/mineral/random/asteroid/rockplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "Jm" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/structure/grille/broken, /turf/open/floor/plating/rust, /area/ruin/powered) @@ -2234,6 +2203,7 @@ /obj/structure/railing{ dir = 8 }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plastic, /area/ruin/powered) "KO" = ( @@ -2261,7 +2231,7 @@ /obj/item/desk_flag{ pixel_x = -9 }, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/plasteel, /area/ruin/powered) "KW" = ( @@ -2270,7 +2240,9 @@ /turf/open/floor/plasteel/dark, /area/overmap_encounter/planetoid/rockplanet/explored) "KZ" = ( -/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/ruin/powered) @@ -2297,18 +2269,14 @@ "Ma" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/sandbags, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/plating/rust, /area/ruin/powered) "Md" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/ruin/powered) @@ -2328,14 +2296,13 @@ /area/ruin/powered) "Na" = ( /obj/structure/displaycase/labcage, -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = 23 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/carpet/purple, /area/ruin/powered) "Ne" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/ruin/powered) @@ -2345,9 +2312,7 @@ }, /obj/structure/railing/corner, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/pod/light, /area/ruin/powered) "NB" = ( @@ -2367,7 +2332,7 @@ /area/ruin/powered) "NP" = ( /obj/machinery/vending/security, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_x = 1; pixel_y = 23 }, @@ -2485,7 +2450,9 @@ /turf/open/floor/plating/asteroid/rockplanet/lit, /area/overmap_encounter/planetoid/rockplanet/explored) "Qd" = ( -/obj/machinery/door/airlock/security, +/obj/machinery/door/airlock/security{ + dir = 4 + }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/powered) @@ -2538,16 +2505,11 @@ /obj/item/healthanalyzer{ pixel_y = 14 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech/grid, /area/ruin/powered) "Rb" = ( @@ -2561,9 +2523,7 @@ "Rm" = ( /obj/structure/bed/pod, /obj/item/bedsheet/dorms, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/carpet/black, /area/ruin/powered) "RC" = ( @@ -2609,7 +2569,9 @@ /turf/open/floor/plating/dirt/jungle/lit, /area/overmap_encounter/planetoid/rockplanet/explored) "So" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/door/firedoor, /obj/structure/barricade/wooden/crude, /turf/open/floor/wood, @@ -2638,7 +2600,7 @@ /obj/machinery/recharger{ pixel_y = 4 }, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /obj/structure/railing{ dir = 4 }, @@ -2757,13 +2719,11 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/structure/railing{ dir = 1 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_x = 1; pixel_y = 23 }, @@ -2798,10 +2758,7 @@ "Ww" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/industrial/warning, -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = 23 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ruin/powered) "WY" = ( @@ -2818,9 +2775,7 @@ /turf/open/floor/plating, /area/overmap_encounter/planetoid/rockplanet/explored) "XB" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/catwalk_floor, /area/ruin/powered) @@ -2829,9 +2784,7 @@ dir = 1 }, /obj/structure/bookcase/random, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/wood, /area/ruin/powered) "XR" = ( @@ -2842,9 +2795,7 @@ /turf/open/floor/plasteel/dark, /area/overmap_encounter/planetoid/rockplanet/explored) "Yg" = ( -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /obj/effect/turf_decal/corner/opaque/red/border{ dir = 4 }, @@ -2906,7 +2857,7 @@ /obj/effect/turf_decal/corner/transparent/purple/border{ dir = 1 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_x = 1; pixel_y = 23 }, @@ -2925,10 +2876,7 @@ /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = 23 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel, /area/ruin/powered) "ZC" = ( @@ -2974,9 +2922,7 @@ /turf/open/floor/carpet/purple, /area/ruin/powered) "ZY" = ( -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/structure/railing{ dir = 8 }, @@ -3641,7 +3587,7 @@ Dx cP cP cP -Ne +eI cP cP Ne diff --git a/_maps/RandomRuins/RockRuins/rockplanet_crash_cult.dmm b/_maps/RandomRuins/RockRuins/rockplanet_crash_cult.dmm index 3a0ec7b4a309..ad780a525321 100644 --- a/_maps/RandomRuins/RockRuins/rockplanet_crash_cult.dmm +++ b/_maps/RandomRuins/RockRuins/rockplanet_crash_cult.dmm @@ -61,6 +61,9 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, +/obj/machinery/airalarm/directional/south{ + pixel_y = -25 + }, /turf/open/floor/plating, /area/ruin/unpowered) "cD" = ( @@ -168,9 +171,6 @@ dir = 1 }, /obj/effect/turf_decal/corner/opaque/blue, -/obj/machinery/airalarm/directional/south{ - pixel_y = -25 - }, /turf/open/floor/plating, /area/ruin/unpowered) "fE" = ( @@ -421,7 +421,7 @@ /area/ruin/unpowered) "qg" = ( /mob/living/simple_animal/hostile/construct/artificer/hostile{ - loot = list(/obj/item/ectoplasm, /obj/item/necromantic_stone) + loot = list(/obj/item/ectoplasm,/obj/item/necromantic_stone) }, /turf/open/floor/plating, /area/ruin/unpowered) @@ -430,7 +430,7 @@ dir = 4 }, /mob/living/simple_animal/hostile/construct/wraith/hostile{ - loot = list(/obj/item/ectoplasm, /obj/item/rod_of_asclepius) + loot = list(/obj/item/ectoplasm,/obj/item/rod_of_asclepius) }, /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -465,7 +465,7 @@ /turf/open/floor/plasteel/cult, /area/ruin/unpowered) "rB" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/turf_decal/corner/opaque/blue, /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -474,9 +474,7 @@ /area/ruin/unpowered) "rH" = ( /obj/machinery/hydroponics/constructable, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 }, @@ -508,9 +506,7 @@ /turf/open/floor/plating, /area/ruin/unpowered) "sX" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, @@ -625,9 +621,7 @@ /turf/open/floor/plating, /area/ruin/unpowered) "wn" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/effect/turf_decal/corner/opaque/green, /turf/open/floor/plating, /area/ruin/unpowered) @@ -648,10 +642,6 @@ /area/ruin/unpowered) "wB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/item/radio/intercom/wideband{ - pixel_x = -25; - pixel_y = 28 - }, /turf/open/floor/plating, /area/ruin/unpowered) "wG" = ( @@ -754,6 +744,14 @@ }, /turf/open/floor/plating, /area/ruin/unpowered) +"zo" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_bridge"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) "zF" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/tracks{ @@ -960,7 +958,7 @@ "Gz" = ( /obj/effect/rune/narsie, /mob/living/simple_animal/hostile/construct/juggernaut/hostile{ - loot = list(/obj/item/ectoplasm, /obj/item/nullrod/armblade/tentacle) + loot = list(/obj/item/ectoplasm,/obj/item/nullrod/armblade/tentacle) }, /obj/structure/sacrificealtar, /obj/effect/decal/cleanable/blood{ @@ -1109,6 +1107,7 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, +/obj/item/radio/intercom/wideband/directional/north, /turf/open/floor/plating, /area/ruin/unpowered) "Ka" = ( @@ -1252,6 +1251,14 @@ }, /turf/open/floor/plasteel/cult, /area/ruin/unpowered) +"RY" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) "Sm" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/corner/opaque/green{ @@ -1297,9 +1304,7 @@ /turf/closed/wall/mineral/titanium, /area/ruin/unpowered) "UE" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, @@ -1309,6 +1314,14 @@ /obj/effect/turf_decal/corner/opaque/blue, /turf/open/floor/plating, /area/ruin/unpowered) +"UI" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_bridge"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) "Vz" = ( /mob/living/simple_animal/hostile/construct/proteon/hostile, /obj/effect/decal/cleanable/dirt/dust, @@ -1343,6 +1356,14 @@ }, /turf/open/floor/plasteel/cult, /area/ruin/unpowered) +"Wi" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) "Wm" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -1398,7 +1419,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/turf_decal/corner/opaque/blue, /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -1519,7 +1540,7 @@ nv IO Rq nv -EQ +RY xD hs mq @@ -1554,12 +1575,12 @@ Jh lu Jh Zg -EQ +Wi xD iK XN nv -EQ +RY xD xt Yp @@ -1689,12 +1710,12 @@ EQ "} (15,1,1) = {" nv -EQ +RY xb On Hl Nt -EQ +RY nv IO xb @@ -1704,7 +1725,7 @@ xD tX rB xD -EQ +RY nv "} (16,1,1) = {" @@ -1729,22 +1750,22 @@ uo "} (17,1,1) = {" nv -EQ +nv Tn rf Aw xD -EQ +RY nv Vz dh xD -EQ +RY nv Cm Zm Nt -EQ +Nt nv "} (18,1,1) = {" @@ -1770,8 +1791,8 @@ EQ (19,1,1) = {" Nt Nt -EQ -EQ +RY +Wi Nt Nt Es @@ -1782,8 +1803,8 @@ Nt eK Nt Nt -EQ -EQ +Wi +Wi Nt Nt "} @@ -1893,8 +1914,8 @@ XI XI Es Es -as -as +Nt +Nt JX vT xT @@ -1914,10 +1935,10 @@ XI XI Es Es -as -as -as -as +Nt +UI +UI +zo xD xD Es diff --git a/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm b/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm index fffcc10edd8f..4e85fb24381a 100644 --- a/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm +++ b/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm @@ -2,12 +2,23 @@ "ak" = ( /turf/open/floor/plating/asteroid/rockplanet, /area/ruin/powered) +"al" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/patterned, +/area/ruin/powered) "aB" = ( /turf/closed/mineral/random/asteroid/rockplanet, /area/ruin/powered) "aG" = ( /turf/open/floor/plating/asteroid/rockplanet/cracked, /area/ruin/powered) +"aQ" = ( +/obj/machinery/light/dim/directional/west, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/engine, +/area/ruin/powered) "aT" = ( /obj/structure/flora/tree/cactus, /turf/open/floor/plating/asteroid/rockplanet/cracked, @@ -19,31 +30,6 @@ "bf" = ( /turf/closed/indestructible/reinforced, /area/ruin/powered) -"bh" = ( -/obj/machinery/light/dim, -/turf/open/floor/plating/asteroid/rockplanet/cracked, -/area/ruin/powered) -"br" = ( -/obj/machinery/light/dim, -/turf/open/floor/plating/asteroid/rockplanet, -/area/ruin/powered) -"bw" = ( -/obj/structure/rack, -/obj/item/construction/rcd/loaded, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) -"bz" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/stack/sheet/mineral/gold/fifty, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/plasteel/patterned/brushed, -/area/ruin/powered) "bO" = ( /obj/structure/cable{ icon_state = "2-4" @@ -72,6 +58,13 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"bU" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/stack/sheet/mineral/gold/fifty, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/patterned/brushed, +/area/ruin/powered) "cb" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end{ dir = 4 @@ -113,15 +106,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ruin/powered) -"cq" = ( -/obj/structure/rack, -/obj/item/melee/greykingsword, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "cv" = ( /obj/structure/cable{ icon_state = "1-8" @@ -198,26 +182,6 @@ }, /turf/open/floor/plating, /area/ruin/powered) -"em" = ( -/obj/structure/table/wood/reinforced, -/obj/item/melee/classic_baton{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/shield/riot{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/grenade/chem_grenade/teargas{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ruin/powered) "eA" = ( /obj/structure/cable{ icon_state = "2-8" @@ -360,23 +324,20 @@ }, /turf/closed/wall/rust, /area/ruin/powered) +"hG" = ( +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plating/asteroid/rockplanet, +/area/ruin/powered) "hJ" = ( /turf/closed/wall/r_wall, /area/ruin/powered) -"hQ" = ( -/obj/machinery/light, -/obj/structure/closet/secure_closet/wall{ - dir = 4; - pixel_x = -27 - }, -/obj/item/storage/firstaid/ancient, -/obj/item/clothing/neck/stethoscope, -/obj/item/grenade/chem_grenade/teargas{ - pixel_x = -4; - pixel_y = 5 +"hN" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/item/grenade/chem_grenade/teargas, -/turf/open/floor/plating, +/obj/machinery/light/broken/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned/brushed, /area/ruin/powered) "hV" = ( /turf/open/floor/plasteel/grimy, @@ -395,11 +356,10 @@ /mob/living/simple_animal/hostile/jungle/mook, /turf/open/floor/plasteel/grimy, /area/ruin/powered) -"iE" = ( -/obj/machinery/light, +"ip" = ( +/obj/machinery/light/dim/directional/west, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/grimy, +/turf/open/floor/plasteel/stairs/old, /area/ruin/powered) "iS" = ( /turf/closed/wall/r_wall/rust, @@ -480,6 +440,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /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" + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "kU" = ( /obj/structure/railing, /turf/open/floor/plasteel/patterned, @@ -500,13 +469,6 @@ /obj/structure/railing/corner, /turf/open/floor/plasteel/patterned/brushed, /area/ruin/powered) -"lw" = ( -/obj/structure/railing, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/plasteel/patterned/brushed, -/area/ruin/powered) "lC" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt/dust, @@ -570,16 +532,6 @@ }, /turf/open/floor/plasteel/patterned/brushed, /area/ruin/powered) -"mS" = ( -/obj/structure/railing, -/obj/machinery/light/dim{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "no" = ( /obj/structure/railing/corner{ dir = 8 @@ -609,10 +561,37 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ruin/powered) +"oc" = ( +/obj/structure/table/wood/reinforced, +/obj/item/melee/classic_baton{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/shield/riot{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ruin/powered) "oe" = ( /obj/structure/railing/corner, /turf/open/floor/plasteel/patterned, /area/ruin/powered) +"of" = ( +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/engine, +/area/ruin/powered) "oh" = ( /obj/structure/railing{ dir = 6 @@ -647,6 +626,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ruin/powered) +"oA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/broken/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned, +/area/ruin/powered) "oG" = ( /obj/structure/railing{ dir = 6 @@ -679,6 +666,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ruin/powered) +"pi" = ( +/obj/structure/rack, +/obj/item/construction/rcd/loaded, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plating/rust, +/area/ruin/powered) +"pk" = ( +/obj/structure/railing, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/patterned/brushed, +/area/ruin/powered) "pm" = ( /obj/effect/turf_decal/industrial/warning/dust{ dir = 1 @@ -742,6 +740,13 @@ /obj/item/megaphone, /turf/open/floor/plasteel/patterned/brushed, /area/ruin/powered) +"qd" = ( +/obj/machinery/light/dim/directional/west, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ruin/powered) "qm" = ( /obj/structure/railing, /obj/structure/chair/plastic, @@ -784,6 +789,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ruin/powered) +"rg" = ( +/obj/machinery/light/dim/directional/south, +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_y = 5 + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "rh" = ( /obj/structure/railing{ dir = 4 @@ -853,6 +866,20 @@ /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, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/clothing/suit/toggle/hazard, +/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, +/area/ruin/powered) "sV" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -916,6 +943,13 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) +"us" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plasteel/patterned/brushed, +/area/ruin/powered) "uu" = ( /obj/structure/railing{ dir = 4 @@ -946,6 +980,11 @@ }, /turf/open/floor/engine, /area/ruin/powered) +"uW" = ( +/obj/machinery/light/dim/directional/east, +/obj/structure/railing, +/turf/open/floor/engine, +/area/ruin/powered) "vi" = ( /obj/structure/sign/warning/electricshock, /obj/structure/cable{ @@ -988,15 +1027,6 @@ }, /turf/open/floor/plating, /area/ruin/powered) -"wL" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light/dim{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/brushed, -/area/ruin/powered) "xc" = ( /obj/structure/railing, /obj/effect/turf_decal/industrial/warning/dust{ @@ -1047,24 +1077,6 @@ }, /turf/open/floor/engine, /area/ruin/powered) -"xY" = ( -/obj/machinery/light/dim{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/powered) -"xZ" = ( -/obj/machinery/light/dim{ - dir = 8 - }, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/engine, -/area/ruin/powered) "yk" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/blood, @@ -1084,25 +1096,6 @@ }, /turf/open/floor/engine, /area/ruin/powered) -"yy" = ( -/obj/machinery/conveyor/inverted, -/obj/structure/grille, -/obj/structure/cable, -/obj/item/keycard/entry, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/powered) -"yV" = ( -/obj/machinery/conveyor/inverted, -/obj/structure/grille, -/obj/structure/cable, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/powered) "za" = ( /obj/machinery/power/emitter/ctf{ dir = 8 @@ -1128,16 +1121,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ruin/powered) -"zy" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/dim{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned, -/area/ruin/powered) "zB" = ( /obj/structure/table/greyscale{ pixel_y = 8 @@ -1231,15 +1214,6 @@ /obj/item/shard/plasma, /turf/open/floor/engine, /area/ruin/powered) -"BN" = ( -/obj/machinery/conveyor/auto{ - dir = 8 - }, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/powered) "BQ" = ( /obj/structure/table/greyscale, /obj/item/keycard, @@ -1302,6 +1276,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ruin/powered) +"De" = ( +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plating/asteroid/rockplanet, +/area/ruin/powered) "Dn" = ( /obj/structure/fence/door{ dir = 4 @@ -1363,13 +1341,6 @@ /obj/structure/table/greyscale, /turf/open/floor/engine, /area/ruin/powered) -"EK" = ( -/obj/machinery/conveyor/auto{ - dir = 4 - }, -/obj/machinery/light/dim, -/turf/open/floor/engine, -/area/ruin/powered) "Fa" = ( /obj/machinery/conveyor/auto, /obj/item/shard/plasma, @@ -1386,6 +1357,13 @@ /obj/structure/sign/number/five, /turf/open/floor/engine, /area/ruin/powered) +"Fj" = ( +/obj/structure/closet/secure/loot, +/obj/machinery/light/broken/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/clothing/suit/toggle/hazard, +/turf/open/floor/plasteel/patterned, +/area/ruin/powered) "Fp" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/fence/door{ @@ -1410,16 +1388,6 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"FA" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned/brushed, -/area/ruin/powered) "FC" = ( /obj/structure/railing{ dir = 1 @@ -1447,22 +1415,6 @@ /obj/effect/turf_decal/industrial/warning/dust, /turf/open/floor/engine, /area/ruin/powered) -"FR" = ( -/obj/machinery/light/dim{ - dir = 4 - }, -/obj/structure/railing, -/turf/open/floor/engine, -/area/ruin/powered) -"FU" = ( -/obj/machinery/light/dim{ - dir = 8 - }, -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/engine, -/area/ruin/powered) "FV" = ( /obj/structure/railing/corner{ dir = 4 @@ -1510,16 +1462,6 @@ /obj/item/shard, /turf/open/floor/engine, /area/ruin/powered) -"GB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned, -/area/ruin/powered) "GE" = ( /obj/structure/railing{ dir = 4 @@ -1540,6 +1482,10 @@ /obj/item/keycard/stockroom, /turf/open/floor/engine, /area/ruin/powered) +"GR" = ( +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plating/rust, +/area/ruin/powered) "GS" = ( /obj/effect/turf_decal/industrial/warning/dust/corner{ dir = 4 @@ -1571,6 +1517,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ruin/powered) +"HJ" = ( +/obj/machinery/light/broken/directional/east, +/turf/open/floor/plating/asteroid/rockplanet, +/area/ruin/powered) "HL" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -1583,6 +1533,10 @@ }, /turf/open/floor/engine, /area/ruin/powered) +"HU" = ( +/obj/machinery/light/broken/directional/east, +/turf/open/floor/plasteel/stairs/old, +/area/ruin/powered) "Ie" = ( /obj/structure/railing{ dir = 4 @@ -1594,14 +1548,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ruin/powered) -"Ik" = ( -/obj/effect/turf_decal/industrial/warning/dust, -/obj/machinery/light/dim, -/obj/structure/sign/number/eight{ - icon_state = "caution" - }, -/turf/open/floor/engine, -/area/ruin/powered) "Ip" = ( /obj/effect/turf_decal/industrial/warning/dust/corner{ dir = 8 @@ -1760,21 +1706,6 @@ }, /turf/open/floor/plasteel/patterned/brushed, /area/ruin/powered) -"KT" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table/greyscale, -/obj/item/spacecash/bundle/c1000{ - pixel_y = 10 - }, -/obj/item/toy/cards/deck/syndicate{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/toy/cards/deck/kotahi, -/turf/open/floor/plating, -/area/ruin/powered) "Lb" = ( /obj/structure/railing{ dir = 5 @@ -1821,22 +1752,30 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"LV" = ( +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plating/asteroid/rockplanet/cracked, +/area/ruin/powered) "Mb" = ( /obj/structure/railing{ dir = 1 }, /turf/open/floor/plating/rust, /area/ruin/powered) -"Me" = ( -/obj/machinery/light/dim, -/turf/open/floor/plasteel/patterned, -/area/ruin/powered) "Mp" = ( /obj/structure/railing/corner{ dir = 4 }, /turf/open/floor/plasteel/patterned/brushed, /area/ruin/powered) +"Mq" = ( +/obj/structure/railing, +/obj/machinery/light/dim/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "Mr" = ( /obj/structure/railing{ dir = 1 @@ -1877,10 +1816,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ruin/powered) -"NR" = ( -/obj/machinery/light/dim, -/turf/open/floor/plating/rust, -/area/ruin/powered) "NU" = ( /obj/structure/railing/corner{ dir = 1 @@ -1893,6 +1828,14 @@ /obj/machinery/vending/cola/sodie, /turf/open/floor/plasteel/patterned/brushed, /area/ruin/powered) +"Od" = ( +/obj/effect/turf_decal/industrial/warning/dust, +/obj/machinery/light/dim/directional/south, +/obj/structure/sign/number/eight{ + icon_state = "caution" + }, +/turf/open/floor/engine, +/area/ruin/powered) "Oo" = ( /obj/structure/table/greyscale, /obj/item/trash/cheesie{ @@ -1900,6 +1843,13 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"Op" = ( +/obj/machinery/light/dim/directional/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/powered) "OA" = ( /obj/structure/sign/poster/contraband/missing_gloves, /turf/closed/wall, @@ -1949,41 +1899,22 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/stairs/old, /area/ruin/powered) -"QA" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/old, -/area/ruin/powered) -"QR" = ( -/obj/structure/closet/secure/loot, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/clothing/suit/toggle/hazard, +"QF" = ( +/obj/machinery/light/dim/directional/south, /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, +/area/ruin/powered) "Rd" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/ruin/powered) -"Rp" = ( -/obj/structure/closet/secure/loot, -/obj/machinery/light/dim{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/clothing/suit/toggle/hazard, -/turf/open/floor/plasteel/patterned, -/area/ruin/powered) -"RB" = ( -/obj/machinery/light/dim{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/stairs/old, -/area/ruin/powered) "RM" = ( /obj/effect/spawner/structure/window/hollow/reinforced, /turf/open/floor/plating, @@ -1996,6 +1927,14 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/plating, /area/ruin/powered) +"RU" = ( +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plating/asteroid/rockplanet/cracked, +/area/ruin/powered) +"RW" = ( +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plating/asteroid/rockplanet, +/area/ruin/powered) "Sh" = ( /obj/structure/rack, /obj/effect/decal/cleanable/dirt/dust, @@ -2005,12 +1944,6 @@ /obj/item/storage/toolbox/drone, /turf/open/floor/plasteel/patterned, /area/ruin/powered) -"Sk" = ( -/obj/machinery/light/dim{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/rockplanet/cracked, -/area/ruin/powered) "Sm" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -2023,12 +1956,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ruin/powered) -"St" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/rockplanet, -/area/ruin/powered) "Su" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -2062,6 +1989,11 @@ }, /turf/open/floor/plasteel/grimy, /area/ruin/powered) +"SO" = ( +/obj/machinery/light/broken/directional/south, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/patterned, +/area/ruin/powered) "SW" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -2069,10 +2001,40 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/grimy, /area/ruin/powered) +"Tl" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/secure_closet/wall{ + dir = 4; + pixel_x = -27 + }, +/obj/item/storage/firstaid/ancient, +/obj/item/clothing/neck/stethoscope, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/grenade/chem_grenade/teargas, +/turf/open/floor/plating, +/area/ruin/powered) "Tu" = ( /obj/structure/holosign/barrier/engineering/infinite, /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 + }, +/obj/item/toy/cards/deck/syndicate{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/toy/cards/deck/kotahi, +/turf/open/floor/plating, +/area/ruin/powered) "TM" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -2087,6 +2049,12 @@ /obj/machinery/door/airlock/public/glass, /turf/open/floor/plasteel/patterned, /area/ruin/powered) +"Uq" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/grimy, +/area/ruin/powered) "UH" = ( /obj/structure/fence/door/opened, /turf/open/floor/plasteel/patterned, @@ -2100,16 +2068,8 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ruin/powered) -"UU" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/rockplanet, -/area/ruin/powered) -"UX" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +"Vj" = ( +/obj/machinery/light/dim/directional/west, /turf/open/floor/plasteel/patterned, /area/ruin/powered) "Vr" = ( @@ -2133,18 +2093,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ruin/powered) -"Wi" = ( -/obj/machinery/light/dim{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned, -/area/ruin/powered) -"Wl" = ( -/obj/machinery/light/dim{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/rockplanet/cracked, -/area/ruin/powered) "Wx" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plasteel/patterned, @@ -2160,6 +2108,10 @@ }, /turf/open/floor/plasteel/grimy, /area/ruin/powered) +"WL" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plating/asteroid/rockplanet/cracked, +/area/ruin/powered) "WM" = ( /obj/structure/chair/office{ dir = 4 @@ -2182,6 +2134,13 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"XU" = ( +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/engine, +/area/ruin/powered) "XX" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -2224,17 +2183,19 @@ }, /turf/open/floor/plating, /area/ruin/powered) -"Ys" = ( -/obj/structure/chair/plastic{ +"Yq" = ( +/obj/structure/railing{ dir = 8 }, +/obj/machinery/light/dim/directional/east, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ruin/powered) -"YG" = ( -/obj/machinery/light/dim{ +"Ys" = ( +/obj/structure/chair/plastic{ dir = 8 }, -/turf/open/floor/plating/asteroid/rockplanet, +/turf/open/floor/plasteel/patterned, /area/ruin/powered) "YJ" = ( /obj/item/chair/plastic{ @@ -2250,19 +2211,6 @@ /obj/effect/decal/remains/human, /turf/open/floor/plasteel/patterned, /area/ruin/powered) -"YU" = ( -/obj/machinery/light/broken, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/patterned, -/area/ruin/powered) -"Zc" = ( -/obj/machinery/light/dim, -/obj/structure/table/wood, -/obj/item/newspaper{ - pixel_y = 5 - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "Zd" = ( /obj/machinery/door/airlock/glass_large, /turf/open/floor/plating, @@ -2557,10 +2505,10 @@ hi oe qG uu -wL +us zK Dd -FA +hN GE Ie IO @@ -2822,7 +2770,7 @@ sd GJ ro JB -Me +QF hj aB ak @@ -2858,10 +2806,10 @@ ln oG ro uQ -xY +Op tR DI -FR +uW GN ro JC @@ -2897,7 +2845,7 @@ bf bf bf jR -lw +pk ol rv uQ @@ -2944,10 +2892,10 @@ lC ol ro uQ -xZ +aQ xg Ep -FU +qd uQ ro Jt @@ -2956,14 +2904,14 @@ hi hi aB aG -Sk +WL aG aG ak -UU +HJ aG aG -Sk +WL aG ak ak @@ -3040,13 +2988,13 @@ JV LQ Cg PT -QA +HU Qu PT zC Dd Ui -UX +Vj gv Wx XT @@ -3062,12 +3010,12 @@ aG GV aT bc -bh +RU bO cv -em +oc ga -hQ +Tl ko kU pm @@ -3121,12 +3069,12 @@ yw uQ Ga GS -Ik +Od hj hj OA PU -QR +Fj RQ hi hj @@ -3159,7 +3107,7 @@ mc px st vi -yy +QK Br EB Br @@ -3180,7 +3128,7 @@ dN WK Yb Db -YU +SO hi hg ak @@ -3202,7 +3150,7 @@ mi pC sx vi -yV +sN Br Br Br @@ -3223,7 +3171,7 @@ gv WM Yg gv -Zc +rg hi ak ak @@ -3250,12 +3198,12 @@ za uQ Go HG -Ik +Od hi hi Pa Qr -Rp +sK Sh hi hi @@ -3277,12 +3225,12 @@ ak GV GV ak -br +hG cd du eK gx -iE +Uq hJ my pG @@ -3341,13 +3289,13 @@ Ew LQ gv Qu -RB +ip PT PT zC zC UL -Wi +al zC XO Ys @@ -3429,14 +3377,14 @@ hi hi aB ak -St +RW ak ak aG -Wl +LV aG aG -YG +De ak aG aG @@ -3456,12 +3404,12 @@ bf bf bf hj -mS +Mq pU ro td hJ -BN +of BC hJ td @@ -3535,7 +3483,7 @@ GV aB aB bf -bw +pi ck dN fq @@ -3548,12 +3496,12 @@ tu tw hJ ro -EK +XU hJ tw BC -KT -NR +TE +GR hi aG aG @@ -3578,7 +3526,7 @@ GV aB aB bf -bz +bU co dO fF @@ -3622,7 +3570,7 @@ aB aB bf bf -cq +kN dU bf bf @@ -3804,10 +3752,10 @@ hj qy ug vZ -zy +Yq Cg zC -GB +oA ug IM LO diff --git a/_maps/RandomRuins/RockRuins/rockplanet_house.dmm b/_maps/RandomRuins/RockRuins/rockplanet_house.dmm index 6a854c9e77d2..275e2b7b1c17 100644 --- a/_maps/RandomRuins/RockRuins/rockplanet_house.dmm +++ b/_maps/RandomRuins/RockRuins/rockplanet_house.dmm @@ -3,7 +3,9 @@ /turf/closed/wall/rust, /area/ruin/unpowered) "g" = ( -/obj/machinery/door/airlock/wood, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/ruin/unpowered) diff --git a/_maps/RandomRuins/RockRuins/rockplanet_miningexpedition.dmm b/_maps/RandomRuins/RockRuins/rockplanet_miningexpedition.dmm index 65f572ae4e3c..57a8422ba3b0 100644 --- a/_maps/RandomRuins/RockRuins/rockplanet_miningexpedition.dmm +++ b/_maps/RandomRuins/RockRuins/rockplanet_miningexpedition.dmm @@ -6,7 +6,9 @@ /turf/open/floor/plating/asteroid/rockplanet/lit, /area/overmap_encounter/planetoid/rockplanet/explored) "an" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered) "bs" = ( @@ -49,9 +51,7 @@ /area/overmap_encounter/planetoid/rockplanet/explored) "mf" = ( /obj/structure/bed, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered) "mk" = ( @@ -168,9 +168,7 @@ /area/ruin/unpowered) "CX" = ( /obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel/mono, /area/ruin/unpowered) "Du" = ( @@ -191,9 +189,7 @@ /turf/open/floor/plasteel/mono, /area/ruin/unpowered) "HW" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered) "Jz" = ( @@ -218,7 +214,7 @@ /turf/open/floor/plasteel/grimy, /area/ruin/unpowered) "NV" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/decal/cleanable/blood, /turf/open/floor/plasteel/rockvault, /area/ruin/unpowered) @@ -294,9 +290,7 @@ /obj/item/toy/figure/miner{ pixel_x = -5 }, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered) "TI" = ( @@ -306,9 +300,7 @@ /turf/open/floor/plasteel/grimy, /area/ruin/unpowered) "Uu" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/oil, /turf/open/floor/plasteel/rockvault, /area/ruin/unpowered) @@ -347,7 +339,9 @@ /turf/open/floor/plasteel/grimy, /area/ruin/unpowered) "YS" = ( -/obj/machinery/door/airlock/mining, +/obj/machinery/door/airlock/mining{ + dir = 8 + }, /turf/open/floor/plasteel/rockvault, /area/ruin/unpowered) "YW" = ( diff --git a/_maps/RandomRuins/RockRuins/rockplanet_saloon.dmm b/_maps/RandomRuins/RockRuins/rockplanet_saloon.dmm index 996938d2cb24..621589ade630 100644 --- a/_maps/RandomRuins/RockRuins/rockplanet_saloon.dmm +++ b/_maps/RandomRuins/RockRuins/rockplanet_saloon.dmm @@ -609,7 +609,8 @@ /area/ruin/unpowered) "qd" = ( /obj/structure/door_assembly/door_assembly_wood{ - anchored = 1 + anchored = 1; + dir = 8 }, /turf/open/floor/wood/maple, /area/ruin/unpowered) diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_assaultpodcrash.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_assaultpodcrash.dmm index 57a6232760cf..832347f47c02 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_assaultpodcrash.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_assaultpodcrash.dmm @@ -95,10 +95,11 @@ /obj/machinery/door/airlock/centcom{ aiControlDisabled = 1; name = "Assault Pod"; - req_access_txt = "150" + req_access_txt = "150"; + dir = 4 }, /obj/item/ammo_casing/spent, -/turf/closed/mineral/random/whitesands, +/turf/open/space/basic, /area/whitesands/surface/outdoors) "u" = ( /obj/item/reagent_containers/food/drinks/waterbottle/large{ @@ -132,9 +133,7 @@ /turf/open/floor/plating/asteroid/whitesands/lit, /area/whitesands/surface/outdoors) "D" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium/red, /area/whitesands/surface/outdoors) @@ -171,7 +170,7 @@ /turf/open/floor/plating/asteroid/whitesands/dried/lit, /area/whitesands/surface/outdoors) "L" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/whitesands/surface/outdoors) "O" = ( diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_combination.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_combination.dmm index 4d54a3cdf476..df1ba2082d3e 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_combination.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_combination.dmm @@ -1,10 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"am" = ( -/obj/effect/spawner/lootdrop/whitesands/survivor, -/turf/open/floor/plating/asteroid/whitesands/dried{ - light_range = 2 - }, -/area/whitesands/surface/outdoors) "aq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ @@ -90,6 +84,13 @@ light_range = 2 }, /area/whitesands/surface/outdoors) +"eq" = ( +/obj/item/spear, +/obj/effect/mob_spawn/human/corpse/damaged/whitesands/survivor, +/turf/open/floor/plating/asteroid/whitesands/dried{ + light_range = 2 + }, +/area/whitesands/surface/outdoors) "er" = ( /obj/structure/mineral_door/wood, /turf/open/floor/wood, @@ -180,6 +181,12 @@ "gF" = ( /turf/template_noop, /area/template_noop) +"gL" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/whitesands/surface/outdoors) "hr" = ( /obj/structure/chair/stool/bar, /turf/open/floor/wood{ @@ -313,12 +320,6 @@ light_range = 2 }, /area/whitesands/surface/outdoors) -"lH" = ( -/obj/effect/spawner/lootdrop/whitesands/survivor, -/turf/open/floor/plating/asteroid/whitesands{ - light_range = 2 - }, -/area/whitesands/surface/outdoors) "lJ" = ( /obj/machinery/hydroponics/soil, /obj/item/cultivator/rake, @@ -473,15 +474,6 @@ light_range = 2 }, /area/whitesands/surface/outdoors) -"rv" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 1; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/whitesands/surface/outdoors) "rx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ @@ -697,11 +689,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/whitesands/surface/outdoors) -"yV" = ( -/obj/machinery/light, -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/whitesands/surface/outdoors) "yZ" = ( /obj/structure/closet/cabinet, /obj/item/storage/bag/money, @@ -1049,12 +1036,6 @@ }, /turf/open/floor/concrete, /area/whitesands/surface/outdoors) -"Ml" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/whitesands/surface/outdoors) "MS" = ( /mob/living/simple_animal/hostile/asteroid/whitesands/survivor, /turf/open/floor/plating/asteroid/whitesands{ @@ -1103,13 +1084,6 @@ icon_state = "wood-broken5" }, /area/whitesands/surface/outdoors) -"Pk" = ( -/obj/item/spear, -/obj/effect/mob_spawn/human/corpse/whitesands/survivor, -/turf/open/floor/plating/asteroid/whitesands/dried{ - light_range = 2 - }, -/area/whitesands/surface/outdoors) "Px" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -1181,6 +1155,22 @@ light_range = 2 }, /area/whitesands/surface/outdoors) +"SK" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/whitesands/surface/outdoors) +"SV" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/south, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/whitesands/surface/outdoors) "Td" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ @@ -1232,12 +1222,10 @@ "VF" = ( /turf/closed/wall/mineral/wood, /area/whitesands/surface/outdoors) -"VM" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +"VT" = ( +/obj/machinery/light/directional/south, +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, /area/whitesands/surface/outdoors) "Wd" = ( /obj/structure/closet/crate/bin, @@ -1721,7 +1709,7 @@ kO Yj Yj mV -Yj +kO Yj Yj Yj @@ -1846,7 +1834,7 @@ Yj Yj Yj Yj -lH +Yj Ld Yj Yj @@ -2027,7 +2015,7 @@ Yj Yj Yj Yj -lH +Yj kK Ld Yj @@ -2951,7 +2939,7 @@ Yj Yj Sy vL -Pk +eq Ld Hc rx @@ -3716,7 +3704,7 @@ Yj yt oL cI -rv +SV VF gy xr @@ -3968,7 +3956,7 @@ zh nE GG ZG -Ml +gL VF Yj Yj @@ -4082,7 +4070,7 @@ iQ AW ki Px -VM +SK Hb RY hL @@ -4212,7 +4200,7 @@ MX xB Lj UO -yV +VT VF Ld Yj @@ -4484,7 +4472,7 @@ Ld Zg MS Ld -am +Ld Ld Yj sJ @@ -4665,7 +4653,7 @@ Yj Ld AI Ld -am +Ld Vr Ld Yj diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_drugstore.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_drugstore.dmm index e8a5b936bfc4..ba50aaf885b5 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_drugstore.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_drugstore.dmm @@ -50,6 +50,20 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/whitesands/surface/outdoors) +"j" = ( +/obj/structure/closet/cabinet, +/obj/item/spacecash/bundle/c100, +/obj/item/spacecash/bundle/c10, +/obj/item/spacecash/bundle/c1, +/obj/item/spacecash/bundle/c1, +/obj/item/spacecash/bundle/c1, +/obj/item/spacecash/bundle/c1, +/obj/item/spacecash/bundle/c1, +/obj/item/spacecash/bundle/c20, +/obj/item/spacecash/bundle/c200, +/obj/item/spacecash/bundle/c50, +/turf/open/floor/wood, +/area/whitesands/surface/outdoors) "k" = ( /obj/structure/rack, /obj/item/reagent_containers/food/snacks/cheesyfries, @@ -146,13 +160,6 @@ icon_state = "wood-broken5" }, /area/whitesands/surface/outdoors) -"A" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/whitesands/surface/outdoors) "B" = ( /turf/open/floor/wood{ icon_state = "wood-broken4" @@ -219,6 +226,10 @@ /obj/item/reagent_containers/food/snacks/canned/peaches, /turf/open/floor/wood, /area/whitesands/surface/outdoors) +"L" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/whitesands/surface/outdoors) "M" = ( /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/gloves, @@ -243,15 +254,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/whitesands/surface/outdoors) -"Q" = ( +"P" = ( /obj/structure/rack, /obj/item/reagent_containers/food/snacks/chocolatebunny, /obj/item/reagent_containers/food/snacks/candy, /obj/item/reagent_containers/food/snacks/canned/beans, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/whitesands/surface/outdoors) "R" = ( @@ -265,6 +274,11 @@ "S" = ( /turf/template_noop, /area/template_noop) +"T" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/whitesands/surface/outdoors) "U" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -284,26 +298,6 @@ /obj/item/rcd_ammo, /turf/open/floor/wood, /area/whitesands/surface/outdoors) -"X" = ( -/obj/structure/closet/cabinet, -/obj/item/spacecash/bundle/c100, -/obj/item/spacecash/bundle/c10, -/obj/item/spacecash/bundle/c1, -/obj/item/spacecash/bundle/c1, -/obj/item/spacecash/bundle/c1, -/obj/item/spacecash/bundle/c1, -/obj/item/spacecash/bundle/c1, -/obj/item/spacecash/bundle/c20, -/obj/item/spacecash/bundle/c200, -/obj/item/spacecash/bundle/c50, -/turf/open/floor/wood, -/area/whitesands/surface/outdoors) -"Y" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/whitesands/surface/outdoors) "Z" = ( /turf/open/floor/plating, /area/whitesands/surface/outdoors) @@ -323,7 +317,7 @@ R H k K -A +T h "} (3,1,1) = {" @@ -337,7 +331,7 @@ E "} (4,1,1) = {" a -Q +P D f J @@ -409,7 +403,7 @@ S "} (12,1,1) = {" a -Y +L m m a @@ -419,7 +413,7 @@ S (13,1,1) = {" a N -X +j l a S diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_saloon.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_saloon.dmm index 5b2b01a4b703..6c16dc5b7c7b 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_saloon.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_saloon.dmm @@ -27,7 +27,9 @@ /turf/open/floor/wood, /area/ruin/whitesands/saloon) "aO" = ( -/obj/structure/mineral_door/wood, +/obj/machinery/door/airlock/wood/glass{ + dir = 4 + }, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "aZ" = ( @@ -40,7 +42,7 @@ /turf/open/floor/wood, /area/ruin/whitesands/saloon) "bd" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ icon_state = "wood-broken7" @@ -57,7 +59,7 @@ /turf/open/floor/wood, /area/ruin/whitesands/saloon) "bJ" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/item/shovel, /obj/item/shovel, @@ -72,9 +74,7 @@ /turf/open/floor/wood, /area/ruin/whitesands/saloon) "cf" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/ruin/whitesands/saloon) @@ -100,9 +100,7 @@ /area/ruin/whitesands/saloon) "cI" = ( /obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/poster/random{ pixel_x = -32 }, @@ -111,7 +109,7 @@ }, /area/ruin/whitesands/saloon) "da" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "dq" = ( @@ -120,7 +118,7 @@ /area/ruin/whitesands/saloon) "dU" = ( /obj/structure/table/wood, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/item/clothing/mask/cigarette/cigar/havana{ pixel_x = 1; pixel_y = 4 @@ -137,13 +135,11 @@ /obj/structure/closet/crate/bin, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "er" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/bar{ dir = 1 @@ -169,10 +165,12 @@ /turf/open/floor/plating/asteroid/whitesands/lit, /area/ruin/whitesands/saloon) "fo" = ( -/obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/machinery/door/airlock/wood/glass{ + dir = 4 + }, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "fv" = ( @@ -376,6 +374,13 @@ }, /turf/open/floor/wood, /area/ruin/whitesands/saloon) +"jJ" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/wood/glass{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/whitesands/saloon) "ki" = ( /turf/open/floor/plating, /area/ruin/whitesands/saloon) @@ -409,9 +414,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "kX" = ( @@ -474,9 +477,7 @@ /turf/open/floor/wood, /area/ruin/whitesands/saloon) "nE" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ icon_state = "wood-broken7" @@ -548,7 +549,7 @@ /turf/open/floor/plating/asteroid/whitesands/grass/lit, /area/ruin/whitesands/saloon) "pj" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/chair/stool/bar{ dir = 1 }, @@ -580,7 +581,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood{ icon_state = "wood-broken7" }, @@ -589,9 +590,7 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ruin/whitesands/saloon) "ri" = ( @@ -636,9 +635,7 @@ "sd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/ruin/whitesands/saloon) @@ -680,9 +677,7 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ dir = 8 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ruin/whitesands/saloon) "sU" = ( @@ -692,9 +687,7 @@ /turf/open/floor/wood, /area/ruin/whitesands/saloon) "tf" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood{ icon_state = "wood-broken7" }, @@ -751,9 +744,7 @@ /obj/structure/chair/sofa{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -928,6 +919,14 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/wood, /area/ruin/whitesands/saloon) +"BS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/wood, +/area/ruin/whitesands/saloon) "Ce" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -942,9 +941,7 @@ /area/ruin/whitesands/saloon) "Dd" = ( /obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "Dp" = ( @@ -969,17 +966,17 @@ /turf/open/floor/plating/asteroid/whitesands/lit, /area/ruin/whitesands/saloon) "Dx" = ( -/obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 }, +/obj/machinery/door/airlock/wood/glass{ + name = "Saloon Entry" + }, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "Dz" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "DO" = ( @@ -1006,9 +1003,7 @@ /area/ruin/whitesands/saloon) "Es" = ( /obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/poster/contraband/smoke{ pixel_y = 32 }, @@ -1142,9 +1137,7 @@ /turf/open/floor/wood, /area/ruin/whitesands/saloon) "HW" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "HX" = ( @@ -1335,6 +1328,12 @@ }, /turf/open/floor/wood, /area/ruin/whitesands/saloon) +"Nj" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Saloon Entry" + }, +/turf/open/floor/wood, +/area/ruin/whitesands/saloon) "Nn" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -1418,9 +1417,7 @@ }, /area/ruin/whitesands/saloon) "QL" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "QQ" = ( @@ -1444,9 +1441,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "RB" = ( @@ -1673,10 +1668,12 @@ /turf/open/floor/wood, /area/ruin/whitesands/saloon) "YJ" = ( -/obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, +/obj/machinery/door/airlock/wood/glass{ + dir = 4 + }, /turf/open/floor/wood, /area/ruin/whitesands/saloon) "YM" = ( @@ -2191,7 +2188,7 @@ Yj xs Px mx -aO +Nj eV LA gd @@ -2255,7 +2252,7 @@ rE ga se MX -aO +Nj HW hX sU @@ -2309,7 +2306,7 @@ mx Yo Eq Eq -KO +jJ Eq Eq Dd @@ -2407,7 +2404,7 @@ sd Ce Jb kD -Dx +BS jx jx HX diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_chokepoint.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_chokepoint.dmm index 31831314a92b..27cd203cfe3d 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_chokepoint.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_chokepoint.dmm @@ -55,7 +55,7 @@ /turf/open/floor/plating/asteroid/whitesands/dried, /area/whitesands/surface/outdoors) "k" = ( -/obj/effect/mob_spawn/human/corpse/whitesands/survivor, +/obj/effect/mob_spawn/human/corpse/damaged/whitesands/survivor, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/asteroid/whitesands/lit, /area/whitesands/surface/outdoors) @@ -141,7 +141,7 @@ /turf/closed/mineral/random/whitesands, /area/whitesands/surface/outdoors) "S" = ( -/obj/effect/mob_spawn/human/corpse/whitesands/survivor, +/obj/effect/mob_spawn/human/corpse/damaged/whitesands/survivor, /obj/effect/decal/cleanable/blood{ icon_state = "floor3" }, diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_conveniencestore.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_conveniencestore.dmm index 07cc5031f3eb..bf852004f168 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_conveniencestore.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_conveniencestore.dmm @@ -5,13 +5,15 @@ pixel_x = 2; pixel_y = 4 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "bd" = ( -/obj/machinery/door/airlock/public, +/obj/machinery/door/airlock/public{ + dir = 4 + }, /obj/structure/fans/tiny, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/space/basic, /area/whitesands/surface/outdoors) "by" = ( /obj/item/cigbutt{ @@ -26,7 +28,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "cJ" = ( /obj/item/trash/can{ @@ -34,15 +36,7 @@ pixel_y = -6 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, -/area/whitesands/surface/outdoors) -"dj" = ( -/obj/structure/rack, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "fd" = ( /obj/structure/sign/poster/official/bless_this_spess, @@ -60,22 +54,13 @@ pixel_x = 8; pixel_y = -1 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) -"hP" = ( -/obj/structure/table, -/obj/item/spacecash/bundle/c100{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/spacecash/bundle/c100{ - pixel_x = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, +"kN" = ( +/obj/structure/rack, +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "lu" = ( /obj/structure/sign/poster/contraband/donut_corp, @@ -90,11 +75,11 @@ dir = 8 }, /obj/item/reagent_containers/food/drinks/bottle/sarsaparilla, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "nB" = ( /mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "pd" = ( /obj/item/kitchen/knife{ @@ -102,18 +87,7 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, -/area/whitesands/surface/outdoors) -"po" = ( -/obj/item/cigbutt{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "rk" = ( /obj/item/cigbutt, @@ -123,7 +97,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "sP" = ( /obj/structure/rack, @@ -137,14 +111,14 @@ pixel_x = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "sQ" = ( /obj/item/trash/popcorn{ pixel_x = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "tJ" = ( /obj/structure/rack, @@ -153,7 +127,7 @@ pixel_x = -5; pixel_y = 4 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "ut" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -161,14 +135,27 @@ pixel_x = -5; pixel_y = -2 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "ux" = ( /turf/template_noop, /area/template_noop) "uM" = ( /obj/machinery/vending/snack/random, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, +/area/whitesands/surface/outdoors) +"wd" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/spacecash/bundle/c100{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/spacecash/bundle/c100{ + pixel_x = 1 + }, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "wp" = ( /obj/structure/sign/poster/contraband/energy_swords, @@ -180,14 +167,14 @@ pixel_y = -2 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "xv" = ( /obj/structure/rack, /obj/item/paicard{ pixel_y = 2 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "yQ" = ( /obj/structure/rack, @@ -195,7 +182,7 @@ pixel_x = -1; pixel_y = 4 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "yX" = ( /obj/structure/rack, @@ -204,11 +191,11 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "zP" = ( /obj/machinery/door/airlock, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "BK" = ( /obj/item/trash/can{ @@ -216,18 +203,18 @@ pixel_x = -6; pixel_y = 4 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Cy" = ( /obj/structure/table, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "FT" = ( /turf/closed/wall, /area/whitesands/surface/outdoors) "FX" = ( /obj/machinery/vending/cola/random, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Gr" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -235,7 +222,12 @@ pixel_x = 1; pixel_y = 5 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, +/area/whitesands/surface/outdoors) +"GO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "IJ" = ( /obj/effect/decal/remains/human{ @@ -243,12 +235,12 @@ }, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Kr" = ( /obj/structure/rack, /obj/item/toy/plush/hornet/gay, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "KZ" = ( /obj/structure/sign/poster/contraband/starkist, @@ -260,7 +252,7 @@ pixel_y = 6 }, /obj/item/clothing/mask/gas/clown_hat, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Mu" = ( /obj/structure/grille, @@ -273,31 +265,17 @@ /obj/item/clothing/under/pants/khaki{ pixel_y = 2 }, -/turf/open/floor/material, -/area/whitesands/surface/outdoors) -"Nc" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Qd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/material, -/area/whitesands/surface/outdoors) -"Qq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/crate/bin, -/obj/machinery/light/broken, -/obj/item/toy/plush/among, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Tr" = ( /obj/structure/table, /obj/structure/window, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Uk" = ( /obj/structure/rack, @@ -305,7 +283,7 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "UZ" = ( /obj/structure/table, @@ -317,14 +295,23 @@ pixel_x = -1; pixel_y = 3 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, +/area/whitesands/surface/outdoors) +"VD" = ( +/obj/item/cigbutt{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "We" = ( /obj/item/trash/chips{ pixel_x = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Wp" = ( /obj/structure/sign/poster/contraband/clown, @@ -336,21 +323,21 @@ pixel_x = 4; pixel_y = 6 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Wt" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "WJ" = ( /obj/machinery/door/window/southright, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "WU" = ( /obj/item/trash/pistachios, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Xd" = ( /obj/structure/rack, @@ -358,21 +345,28 @@ pixel_x = 1; pixel_y = 9 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "XR" = ( /obj/structure/rack, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Yd" = ( /obj/effect/decal/cleanable/dirt/dust, /mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Yf" = ( -/turf/open/floor/material, +/turf/open/floor/plasteel/white, +/area/whitesands/surface/outdoors) +"YE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/bin, +/obj/machinery/light/broken/directional/south, +/obj/item/toy/plush/among, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "Zu" = ( /obj/structure/rack, @@ -387,7 +381,7 @@ /obj/item/reagent_containers/food/drinks/waterbottle{ pixel_y = 4 }, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "ZA" = ( /obj/structure/rack, @@ -398,7 +392,7 @@ pixel_x = 5 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/material, +/turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) (1,1,1) = {" @@ -456,7 +450,7 @@ Wt Yf Wt Yf -Nc +GO fo Wp ux @@ -479,7 +473,7 @@ ux (6,1,1) = {" ux lS -dj +kN Wt xv Qd @@ -532,17 +526,17 @@ Cy UZ Yf We -Qq +YE lS ux "} (10,1,1) = {" ux lS -hP +wd pd lS -po +VD rk Tr Wt diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_golemhijack.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_golemhijack.dmm index 5eb0f11b4d75..4be5c85f769b 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_golemhijack.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_golemhijack.dmm @@ -54,7 +54,9 @@ /turf/open/floor/plasteel/dark, /area/whitesands/surface/outdoors) "cW" = ( -/obj/structure/door_assembly/door_assembly_min, +/obj/structure/door_assembly/door_assembly_min{ + dir = 4 + }, /turf/open/floor/plating, /area/whitesands/surface/outdoors) "dz" = ( @@ -575,9 +577,7 @@ /turf/open/floor/mineral/titanium/purple, /area/whitesands/surface/outdoors) "Gs" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/freezer, /area/whitesands/surface/outdoors) diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_medipen_plant.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_medipen_plant.dmm index 31784634a775..5432885c9d4d 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_medipen_plant.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_medipen_plant.dmm @@ -11,9 +11,7 @@ dir = 1 }, /obj/effect/turf_decal/corner/transparent/neutral, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/sign/poster/official/random{ pixel_x = -32 }, @@ -31,7 +29,7 @@ /turf/closed/indestructible/riveted, /area/whitesands/surface/outdoors) "cl" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/whitesands/surface/outdoors) "cy" = ( @@ -97,9 +95,7 @@ }, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/sign/poster/official/random{ pixel_x = 32 }, @@ -132,7 +128,7 @@ /obj/structure/rack, /obj/item/reagent_containers/hypospray/medipen/survival, /obj/effect/turf_decal/box, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/engine, /area/whitesands/surface/outdoors) "ej" = ( @@ -247,9 +243,7 @@ /area/whitesands/surface/outdoors) "gn" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) @@ -321,7 +315,7 @@ "hL" = ( /obj/structure/rack, /obj/effect/turf_decal/box, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/engine, /area/whitesands/surface/outdoors) "hX" = ( @@ -363,7 +357,9 @@ /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "iT" = ( -/obj/machinery/door/airlock/atmos/glass, +/obj/machinery/door/airlock/atmos/glass{ + dir = 4 + }, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 @@ -475,7 +471,9 @@ /turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "mh" = ( -/obj/structure/door_assembly/door_assembly_research, +/obj/structure/door_assembly/door_assembly_research{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ icon_state = "platingdmg3" @@ -543,9 +541,7 @@ /turf/open/floor/plating, /area/whitesands/surface/outdoors) "oD" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/cable{ icon_state = "2-4" }, @@ -565,9 +561,7 @@ /obj/structure/rack, /obj/item/storage/box, /obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/engine, /area/whitesands/surface/outdoors) "pw" = ( @@ -610,9 +604,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "qI" = ( @@ -886,7 +878,9 @@ /turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "yc" = ( -/obj/structure/door_assembly/door_assembly_research, +/obj/structure/door_assembly/door_assembly_research{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating{ icon_state = "platingdmg1" @@ -1011,7 +1005,7 @@ "Dr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/whitesands/surface/outdoors) "Dt" = ( @@ -1058,9 +1052,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/white, /area/whitesands/surface/outdoors) "FM" = ( @@ -1136,7 +1128,7 @@ /turf/open/floor/plating, /area/whitesands/surface/outdoors) "Hw" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 8 }, @@ -1408,7 +1400,7 @@ /turf/open/floor/plating, /area/whitesands/surface/outdoors) "Qr" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/cable{ icon_state = "4-8" }, @@ -1704,9 +1696,7 @@ /obj/structure/rack, /obj/item/reagent_containers/hypospray/medipen/survival, /obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/engine, /area/whitesands/surface/outdoors) "Zx" = ( diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_onlyaspoonful.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_onlyaspoonful.dmm index 6c060ce94566..dfb68c09009e 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_onlyaspoonful.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_onlyaspoonful.dmm @@ -139,9 +139,7 @@ /obj/item/kitchen/spoon/plastic, /obj/item/kitchen/spoon/plastic, /obj/item/kitchen/spoon/plastic, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plastic, /area/ruin/powered) "hs" = ( @@ -336,9 +334,7 @@ "ys" = ( /obj/structure/rack, /obj/item/stack/sheet/plastic/five, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plastic, /area/ruin/powered) "zb" = ( @@ -439,9 +435,7 @@ /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/dirt/dust, /obj/item/clothing/glasses/regular, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/material, /area/ruin/powered) "EC" = ( @@ -504,7 +498,7 @@ /turf/closed/wall/rust, /area/ruin/powered) "Jb" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plastic, /area/ruin/powered) "Jm" = ( @@ -520,9 +514,7 @@ /area/ruin/powered) "Ke" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plastic, /area/ruin/powered) "KY" = ( @@ -584,9 +576,7 @@ /area/ruin/powered) "Oo" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plastic, /area/ruin/powered) "OJ" = ( @@ -724,9 +714,7 @@ /area/ruin/powered) "XL" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plastic, /area/ruin/powered) "Ze" = ( diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_seed_vault.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_seed_vault.dmm index 30b3417cff16..6b103bacbc5b 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_seed_vault.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_seed_vault.dmm @@ -20,16 +20,6 @@ /obj/effect/turf_decal/trimline/opaque/green/filled/line, /turf/open/floor/plasteel/dark, /area/ruin/powered/seedvault) -"af" = ( -/obj/effect/turf_decal/trimline/opaque/green/filled/line, -/obj/structure/closet/crate/hydroponics, -/obj/item/seeds/watermelon, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/whitebeet, -/obj/item/seeds/replicapod, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/seedvault) "ag" = ( /obj/item/storage/toolbox/syndicate, /obj/structure/table/wood, @@ -58,47 +48,13 @@ /obj/effect/turf_decal/trimline/opaque/green/filled/line, /turf/open/floor/plasteel/dark, /area/ruin/powered/seedvault) -"ak" = ( -/obj/effect/mob_spawn/human/seed_vault, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/ruin/powered/seedvault) "al" = ( /turf/open/floor/plasteel/dark, /area/ruin/powered/seedvault) -"am" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/seedvault) -"an" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/seedvault) "ao" = ( /obj/structure/loom, /turf/open/floor/plasteel/dark, /area/ruin/powered/seedvault) -"ap" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/mob_spawn/human/seed_vault, -/turf/open/floor/plasteel/freezer, -/area/ruin/powered/seedvault) -"aq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/mob_spawn/human/seed_vault, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/freezer, -/area/ruin/powered/seedvault) "ar" = ( /obj/structure/closet/crate/hydroponics, /obj/item/clothing/under/rank/civilian/hydroponics, @@ -182,46 +138,6 @@ "aA" = ( /turf/open/floor/vault, /area/ruin/powered/seedvault) -"aB" = ( -/obj/effect/spawner/lootdrop/seed_vault, -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/seed_vault, -/obj/effect/spawner/lootdrop/seed_vault, -/obj/item/vending_refill/hydronutrients, -/turf/open/floor/vault, -/area/ruin/powered/seedvault) -"aC" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/seedvault) -"aD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/seedvault) -"aE" = ( -/obj/structure/closet/crate/hydroponics, -/obj/structure/beebox, -/obj/item/melee/flyswatter, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/queen_bee/bought, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/suit/beekeeper_suit, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/vault, -/area/ruin/powered/seedvault) "aF" = ( /obj/structure/table/wood, /obj/item/lighter, @@ -240,12 +156,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/ruin/powered/seedvault) -"aI" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/vault, -/area/ruin/powered/seedvault) "aJ" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/effect/turf_decal/trimline/opaque/green/line{ @@ -256,16 +166,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/seedvault) -"aK" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/seedvault) "aL" = ( /obj/structure/table/wood, /obj/item/storage/box/disks_plantgene, @@ -283,19 +183,6 @@ "aN" = ( /turf/open/floor/mineral/titanium/blue, /area/ruin/powered/seedvault) -"aO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/opaque/green/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/seedvault) "aQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/freezer, @@ -329,10 +216,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/powered/seedvault) -"aU" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/freezer, -/area/ruin/powered/seedvault) "aV" = ( /obj/effect/turf_decal/trimline/opaque/green/line, /obj/effect/turf_decal/trimline/opaque/green/line{ @@ -368,18 +251,6 @@ }, /turf/open/floor/vault, /area/ruin/powered/seedvault) -"aZ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/seedvault) "ba" = ( /obj/effect/turf_decal/trimline/opaque/green/line{ dir = 4 @@ -394,20 +265,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/blue, /area/ruin/powered/seedvault) -"bc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/powered/seedvault) "bd" = ( /obj/machinery/chem_dispenser/mutagensaltpeter, /obj/effect/turf_decal/trimline/opaque/green/corner, @@ -423,32 +280,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/powered/seedvault) -"bf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/opaque/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 5 - }, -/obj/machinery/biogenerator/vault, -/turf/open/floor/mineral/plastitanium, -/area/ruin/powered/seedvault) -"bg" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/powered/seedvault) "bh" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/trimline/opaque/green/line{ @@ -483,35 +314,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/blue, /area/ruin/powered/seedvault) -"bl" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/powered/seedvault) -"bm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/disposaloutlet, -/obj/structure/flora/ausbushes/fullgrass, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/grass/whitesands, -/area/ruin/powered/seedvault) "bn" = ( /obj/structure/window/spawner/east, /obj/structure/flora/ausbushes/palebush, @@ -538,20 +340,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/powered/seedvault) -"bq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/powered/seedvault) "br" = ( /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/grass/jungle/b, @@ -577,27 +365,6 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/grass/whitesands, /area/ruin/powered/seedvault) -"bv" = ( -/obj/machinery/light, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/green/line, -/turf/open/floor/mineral/plastitanium, -/area/ruin/powered/seedvault) -"bw" = ( -/obj/machinery/light, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/opaque/green/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/green/line, -/turf/open/floor/mineral/plastitanium, -/area/ruin/powered/seedvault) "bx" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/asteroid/whitesands/dried, @@ -640,6 +407,43 @@ }, /turf/open/floor/plasteel/freezer, /area/ruin/powered/seedvault) +"cn" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/vault, +/area/ruin/powered/seedvault) +"dc" = ( +/obj/machinery/light/directional/west, +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/powered/seedvault) +"iJ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/green/line, +/turf/open/floor/mineral/plastitanium, +/area/ruin/powered/seedvault) +"iM" = ( +/obj/machinery/light/directional/south, +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/green/line, +/turf/open/floor/mineral/plastitanium, +/area/ruin/powered/seedvault) "nX" = ( /turf/open/floor/plating/asteroid/whitesands, /area/whitesands/surface/outdoors) @@ -657,48 +461,137 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/freezer, /area/ruin/powered/seedvault) +"qW" = ( +/obj/effect/mob_spawn/human/seed_vault, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/seedvault) "sv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/vault, /area/ruin/powered/seedvault) +"tr" = ( +/obj/effect/turf_decal/trimline/opaque/green/filled/line, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/watermelon, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/whitebeet, +/obj/item/seeds/replicapod, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) +"tu" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/seedvault) +"tK" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/seedvault) "uK" = ( /obj/structure/fans/tiny, /turf/open/floor/plasteel/dark, /area/ruin/powered/seedvault) +"uL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) +"wi" = ( +/obj/machinery/light/directional/east, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) +"xT" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) +"zs" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) "Bb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/ruin/powered/seedvault) +"BM" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) "DA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/mineral/titanium/blue, /area/ruin/powered/seedvault) -"Eu" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, +"Kj" = ( +/obj/effect/spawner/lootdrop/seed_vault, +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/lootdrop/seed_vault, +/obj/effect/spawner/lootdrop/seed_vault, +/obj/item/vending_refill/hydronutrients, +/turf/open/floor/vault, /area/ruin/powered/seedvault) "KF" = ( /obj/machinery/door/airlock/titanium, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/vault, /area/ruin/powered/seedvault) -"LG" = ( +"Mn" = ( +/obj/machinery/light/directional/east, +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/opaque/green/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) +"MX" = ( +/obj/machinery/light/directional/north, +/obj/effect/mob_spawn/human/seed_vault, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/seedvault) +"OD" = ( +/obj/machinery/light/directional/east, +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/powered/seedvault) +"OM" = ( /obj/effect/spawner/lootdrop/seed_vault, /obj/structure/closet/crate/hydroponics, /obj/effect/spawner/lootdrop/seed_vault, /obj/effect/spawner/lootdrop/seed_vault, /turf/open/floor/vault, /area/ruin/powered/seedvault) -"Ou" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, +"Pw" = ( +/obj/machinery/light/directional/north, +/obj/effect/mob_spawn/human/seed_vault, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/freezer, /area/ruin/powered/seedvault) "PH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -706,6 +599,21 @@ }, /turf/open/floor/plasteel/freezer, /area/ruin/powered/seedvault) +"QB" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/powered/seedvault) "QJ" = ( /obj/machinery/plantgenes/seedvault{ pixel_y = 6 @@ -713,6 +621,25 @@ /obj/structure/table/wood, /turf/open/floor/vault, /area/ruin/powered/seedvault) +"Sz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/disposaloutlet, +/obj/structure/flora/ausbushes/fullgrass, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/grass/whitesands, +/area/ruin/powered/seedvault) +"Tl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) "Uz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -723,6 +650,47 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/freezer, /area/ruin/powered/seedvault) +"VA" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/seedvault) +"WA" = ( +/obj/structure/closet/crate/hydroponics, +/obj/structure/beebox, +/obj/item/melee/flyswatter, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/queen_bee/bought, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/suit/beekeeper_suit, +/obj/machinery/light/directional/west, +/turf/open/floor/vault, +/area/ruin/powered/seedvault) +"XL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/opaque/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 5 + }, +/obj/machinery/biogenerator/vault, +/turf/open/floor/mineral/plastitanium, +/area/ruin/powered/seedvault) +"Zq" = ( +/obj/machinery/light/directional/east, +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/green/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/powered/seedvault) (1,1,1) = {" aa @@ -793,7 +761,7 @@ nX (4,1,1) = {" aa ac -ak +qW ah ac ca @@ -815,7 +783,7 @@ aa (5,1,1) = {" aa ac -ap +MX ah as PH @@ -837,13 +805,13 @@ aa (6,1,1) = {" aa ac -ap +MX Vn Bb qQ ah av -Ou +wi aR ab ab @@ -859,20 +827,20 @@ aa (7,1,1) = {" aa ac -aq +Pw ah ac PH -aU +tu ac ac ac ac ac ac -bc -bc -bc +dc +dc +dc ac ac ac @@ -931,9 +899,9 @@ al PH ah al -aC +Tl ac -aZ +uL bb aN bd @@ -941,7 +909,7 @@ ba bo aN aN -bv +iM ac "} (11,1,1) = {" @@ -963,29 +931,29 @@ aW be aN aN -bw +iJ ac "} (12,1,1) = {" ac -af -am +tr +VA al al PH ah al -aD +BM ac -aK +xT bb aN -bf +XL bi bp aN aN -bv +iM ac "} (13,1,1) = {" @@ -1013,7 +981,7 @@ ac (14,1,1) = {" ac ag -an +zs al al PH @@ -1046,9 +1014,9 @@ aA ac ac ac -bg -bl -bq +Zq +QB +OD ac ac ac @@ -1060,11 +1028,11 @@ aj al al al -Eu +tK ac ac ac -aI +cn aA aL ac @@ -1085,12 +1053,12 @@ al PH ac aX -aE +WA aA aA QJ ac -bm +Sz br bt ab @@ -1125,12 +1093,12 @@ aa aa ac ay -aO +Mn ah ac -aB -LG -aB +Kj +OM +Kj ac ac aa diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_starfurycrash.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_starfurycrash.dmm index 6390b9191ae6..4beeb0c0fece 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_starfurycrash.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_starfurycrash.dmm @@ -414,7 +414,9 @@ /turf/open/floor/plasteel/dark, /area/whitesands/surface/outdoors) "yD" = ( -/obj/machinery/door/airlock/engineering, +/obj/machinery/door/airlock/engineering{ + dir = 4 + }, /turf/open/floor/plating, /area/whitesands/surface/outdoors) "zt" = ( @@ -909,6 +911,12 @@ initial_gas_mix = "ws_atmos" }, /area/whitesands/surface/outdoors) +"Zl" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/whitesands/surface/outdoors) "Zy" = ( /obj/structure/frame/machine, /obj/item/stack/cable_coil/cut/blue, @@ -1257,8 +1265,8 @@ jI fM fM fM -yj -yj +Zl +Zl fM fM fM diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_waterplant.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_waterplant.dmm index 09a9004e2313..74eb869f7d8a 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_waterplant.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_waterplant.dmm @@ -360,7 +360,6 @@ dir = 8 }, /obj/machinery/portable_atmospherics/canister/water_vapor, -/obj/effect/turf_decal/number, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) @@ -451,7 +450,9 @@ /turf/open/floor/plating, /area/whitesands/surface/outdoors) "mj" = ( -/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -553,16 +554,15 @@ /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "op" = ( -/obj/machinery/door/airlock/security/glass, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "oq" = ( -/obj/effect/turf_decal/number{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, @@ -634,7 +634,6 @@ /area/whitesands/surface/outdoors) "qi" = ( /obj/machinery/atmospherics/components/binary/volume_pump, -/obj/effect/turf_decal/number, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "qn" = ( @@ -651,7 +650,8 @@ /area/whitesands/surface/outdoors) "qs" = ( /obj/machinery/door/airlock/security/glass{ - name = "Break Room" + name = "Break Room"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 8 @@ -853,7 +853,9 @@ /turf/open/floor/carpet, /area/whitesands/surface/outdoors) "uL" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /obj/structure/fans/tiny, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) @@ -864,7 +866,9 @@ /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "uZ" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 8 + }, /obj/structure/fans/tiny, /turf/open/floor/plating, /area/whitesands/surface/outdoors) @@ -1030,7 +1034,9 @@ /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "zq" = ( -/obj/machinery/door/airlock/engineering, +/obj/machinery/door/airlock/engineering{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -1300,6 +1306,13 @@ /obj/structure/chair, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) +"GL" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/whitesands/surface/outdoors) "Hc" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1310,7 +1323,8 @@ "Hm" = ( /obj/machinery/door/airlock/security/glass{ name = "Cell 2"; - req_access_txt = "2" + req_access_txt = "2"; + dir = 4 }, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) @@ -1402,12 +1416,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/whitesands/surface/outdoors) -"Jg" = ( -/obj/effect/turf_decal/number{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/whitesands/surface/outdoors) "Jv" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1469,7 +1477,9 @@ /area/whitesands/surface/outdoors) "LK" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, /turf/open/floor/plating, /area/whitesands/surface/outdoors) "LM" = ( @@ -1532,9 +1542,6 @@ /turf/template_noop, /area/template_noop) "Nk" = ( -/obj/effect/turf_decal/number{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -1634,7 +1641,9 @@ /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "Pm" = ( -/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 8 }, @@ -1666,14 +1675,14 @@ /obj/machinery/atmospherics/components/trinary/filter/on{ dir = 1 }, -/obj/effect/turf_decal/number, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "Qh" = ( /obj/machinery/door/airlock/security/glass{ name = "Cell 1"; - req_access_txt = "2" + req_access_txt = "2"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1716,7 +1725,8 @@ "QK" = ( /obj/machinery/door/airlock/security/glass{ name = "Cell 3"; - req_access_txt = "2" + req_access_txt = "2"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 8 @@ -1837,6 +1847,12 @@ }, /turf/open/floor/plating, /area/whitesands/surface/outdoors) +"Te" = ( +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/whitesands/surface/outdoors) "Ty" = ( /obj/structure/chair{ dir = 4 @@ -1860,7 +1876,8 @@ /area/whitesands/surface/outdoors) "TG" = ( /obj/machinery/door/airlock/security/glass{ - req_access_txt = "3" + req_access_txt = "3"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 8 @@ -1878,10 +1895,12 @@ /turf/open/floor/engine/vacuum, /area/whitesands/surface/outdoors) "TO" = ( -/obj/machinery/door/airlock/security/glass, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 8 }, +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "Ug" = ( @@ -1954,8 +1973,17 @@ /turf/open/floor/plasteel, /area/whitesands/surface/outdoors) "VP" = ( -/obj/machinery/door/poddoor/shutters, /obj/structure/fans/tiny, +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/whitesands/surface/outdoors) +"VS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 4 + }, /turf/open/floor/plating, /area/whitesands/surface/outdoors) "VT" = ( @@ -2021,7 +2049,9 @@ /turf/open/floor/plating, /area/whitesands/surface/outdoors) "XA" = ( -/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/airlock/security/glass{ + dir = 4 + }, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -2261,7 +2291,7 @@ Va Va Va kG -VP +GL VP VP VP @@ -2379,7 +2409,7 @@ aU MQ oq Nk -Jg +rX SE cl Va @@ -2721,7 +2751,7 @@ op It It It -KB +Te It cl cl @@ -2839,7 +2869,7 @@ It cl It It -LK +VS LK It It diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_youreinsane.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_youreinsane.dmm index 3ec39b4d0f65..f1ab9b3979c3 100644 --- a/_maps/RandomRuins/SandRuins/whitesands_surface_youreinsane.dmm +++ b/_maps/RandomRuins/SandRuins/whitesands_surface_youreinsane.dmm @@ -204,7 +204,8 @@ /obj/machinery/door/airlock/engineering/glass/critical{ heat_proof = 1; name = "Supermatter Chamber"; - req_access_txt = "10" + req_access_txt = "10"; + dir = 4 }, /turf/open/floor/plating{ icon_state = "platingdmg2"; @@ -221,7 +222,8 @@ /obj/machinery/door/airlock/engineering/glass/critical{ heat_proof = 1; name = "Supermatter Chamber"; - req_access_txt = "10" + req_access_txt = "10"; + dir = 4 }, /turf/open/floor/engine, /area/whitesands/surface/outdoors) diff --git a/_maps/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm index c40d90540b53..9be1767e0383 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation.dmm @@ -30,9 +30,7 @@ /area/ruin/space/djstation) "ai" = ( /obj/machinery/telecomms/relay/preset/ruskie, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ruin/space/djstation) "aj" = ( @@ -77,9 +75,7 @@ /area/ruin/space/djstation) "av" = ( /obj/machinery/vending/snack, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -110,7 +106,7 @@ /turf/open/floor/plasteel, /area/ruin/space/djstation) "ay" = ( -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = 32 }, /obj/effect/turf_decal/corner/opaque/white{ @@ -170,7 +166,8 @@ /area/ruin/space/djstation) "aG" = ( /obj/machinery/door/airlock/public/glass{ - name = "Kitchen" + name = "Kitchen"; + dir = 8 }, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -182,8 +179,7 @@ /area/ruin/space/djstation) "aH" = ( /obj/structure/table, -/obj/item/radio/intercom{ - dir = 8; +/obj/item/radio/intercom/directional/east{ freerange = 1; name = "Pirate Radio Listening Channel" }, @@ -207,7 +203,8 @@ /area/ruin/space/djstation) "aJ" = ( /obj/machinery/door/airlock/public/glass{ - name = "Rest Room" + name = "Rest Room"; + dir = 8 }, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -236,7 +233,7 @@ /turf/open/floor/plasteel, /area/ruin/space/djstation) "aN" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -266,9 +263,8 @@ /area/ruin/space/djstation) "aQ" = ( /obj/structure/table, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/east{ broadcasting = 1; - dir = 8; freerange = 1; listening = 0; name = "Pirate Radio Broadcast Channel" @@ -305,7 +301,7 @@ /turf/open/floor/plasteel/grimy, /area/ruin/space/djstation) "aU" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/grimy, /area/ruin/space/djstation) "aV" = ( @@ -323,9 +319,7 @@ /turf/open/floor/plasteel/freezer, /area/ruin/space/djstation) "aY" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -387,7 +381,7 @@ pixel_x = -12; pixel_y = 2 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/freezer, /area/ruin/space/djstation) "bf" = ( diff --git a/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm b/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm index 9d47ebd1b5e5..7371069c7a17 100644 --- a/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm +++ b/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm @@ -355,7 +355,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powered/macspace) "aK" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/item/kitchen/knife/butcher, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -376,7 +376,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powered/macspace) "aM" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -396,7 +396,9 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powered/macspace) "aO" = ( -/obj/machinery/door/airlock/freezer, +/obj/machinery/door/airlock/freezer{ + dir = 4 + }, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -480,9 +482,7 @@ /turf/closed/wall, /area/ruin/space/has_grav/powered/macspace) "aX" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/reagent_dispensers/beerkeg, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/opaque/white{ @@ -518,9 +518,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powered/macspace) "ba" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /obj/item/toy/prize/honk, /obj/effect/turf_decal/corner/opaque/white{ @@ -532,9 +530,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powered/macspace) "bb" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -554,9 +550,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powered/macspace) "bd" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -899,9 +893,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powered/macspace) "bL" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -956,9 +948,7 @@ /turf/open/floor/carpet, /area/ruin/space/has_grav/powered/macspace) "bV" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -1438,7 +1428,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powered/macspace) "cY" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 diff --git a/_maps/RandomRuins/SpaceRuins/astraeus.dmm b/_maps/RandomRuins/SpaceRuins/astraeus.dmm index ae05354d35ae..bee87780aa4b 100644 --- a/_maps/RandomRuins/SpaceRuins/astraeus.dmm +++ b/_maps/RandomRuins/SpaceRuins/astraeus.dmm @@ -29,6 +29,18 @@ }, /turf/open/floor/carpet/airless, /area/ruin/space/has_grav/astraeus/dorms_med) +"aN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + start_charge = 0 + }, +/turf/open/floor/plasteel/dark/airless, +/area/ruin/space/has_grav/astraeus/bridge) "bo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, @@ -67,14 +79,6 @@ /obj/item/stack/tile/plasteel, /turf/template_noop, /area/space/nearstation) -"dd" = ( -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/structure/closet/crate/internals, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/hallway) "dk" = ( /obj/structure/lattice, /obj/item/stack/cable_coil/cut/red{ @@ -112,12 +116,6 @@ /obj/item/stack/tile/plasteel, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/astraeus/hallway) -"dQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/item/stack/rods, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/hallway) "dY" = ( /obj/structure/lattice, /obj/item/shard, @@ -213,13 +211,6 @@ icon_state = "platingdmg2" }, /area/ruin/space/has_grav/astraeus/custodial) -"he" = ( -/obj/machinery/power/apc/auto_name/east{ - start_charge = 0 - }, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/astraeus/custodial) "ho" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -276,6 +267,12 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/munitions) +"hP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/blue/full, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/plasteel/dark/airless, +/area/ruin/space/has_grav/astraeus/bridge) "hU" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 10 @@ -300,16 +297,12 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/astraeus/disposals) -"is" = ( -/obj/structure/table_frame/wood, -/obj/machinery/power/apc/auto_name/east{ - start_charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, +"ii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/item/stack/rods, /turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/dorms_med) +/area/ruin/space/has_grav/astraeus/hallway) "it" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/structure/closet, @@ -367,18 +360,6 @@ /obj/structure/girder/reinforced, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/astraeus/bridge) -"kz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/east{ - start_charge = 0 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/space/has_grav/astraeus/disposals) "kS" = ( /obj/structure/rack, /obj/item/circuitboard/machine/shuttle/heater, @@ -450,9 +431,20 @@ /obj/item/pen, /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/astraeus/bridge) +"mh" = ( +/obj/structure/table_frame/wood, +/obj/machinery/power/apc/auto_name/directional/east{ + start_charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/dorms_med) "ms" = ( /obj/structure/door_assembly/door_assembly_com{ - anchored = 1 + anchored = 1; + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" @@ -502,6 +494,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/munitions) +"oz" = ( +/obj/machinery/vending/cola/blue, +/obj/machinery/light/built/directional/west, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/dorms_med) "oE" = ( /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/dorms_med) @@ -541,13 +538,6 @@ /obj/machinery/door/poddoor/preopen, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/astraeus/bridge) -"pO" = ( -/obj/machinery/power/apc/auto_name/east{ - start_charge = 0 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/munitions) "pT" = ( /obj/item/stack/conveyor, /obj/effect/spawner/lootdrop/maintenance, @@ -588,6 +578,14 @@ /obj/structure/chair/office, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/dorms_med) +"qX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/hallway) "ra" = ( /mob/living/simple_animal/hostile/asteroid/basilisk, /turf/open/floor/plating/asteroid/airless, @@ -625,8 +623,10 @@ icon_state = "platingdmg3" }, /area/ruin/space/has_grav/astraeus/disposals) -"rW" = ( -/obj/machinery/light/small/broken, +"rY" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/internals, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/hallway) "si" = ( @@ -693,24 +693,10 @@ /obj/structure/mopbucket, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/custodial) -"ue" = ( -/obj/structure/table/wood, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/carpet/airless, -/area/ruin/space/has_grav/astraeus/dorms_med) "ul" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/munitions) -"uo" = ( -/obj/machinery/conveyor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/munitions) "ur" = ( /obj/structure/table_frame, /obj/effect/turf_decal/corner/opaque/blue/full, @@ -725,6 +711,11 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/hallway) +"uN" = ( +/obj/structure/table/wood, +/obj/item/spacecash/bundle/c1000, +/turf/open/floor/carpet/airless, +/area/ruin/space/has_grav/astraeus/dorms_med) "vl" = ( /obj/structure/lattice, /obj/item/stack/cable_coil/cut/red{ @@ -741,6 +732,18 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/astraeus/dorms_med) +"vC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/east{ + start_charge = 0 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating/airless{ + icon_state = "platingdmg3" + }, +/area/ruin/space/has_grav/astraeus/disposals) "vF" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -806,7 +809,8 @@ /area/ruin/space/has_grav/astraeus/munitions) "wF" = ( /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + dir = 8 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -887,6 +891,12 @@ /obj/machinery/holopad, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/astraeus/bridge) +"yo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/wt550m9, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/munitions) "yq" = ( /obj/structure/table, /obj/effect/turf_decal/industrial/warning{ @@ -955,7 +965,8 @@ /area/ruin/space/has_grav/astraeus/disposals) "AE" = ( /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + dir = 8 }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/bridge) @@ -980,6 +991,13 @@ /obj/structure/closet/emcloset, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/dorms_med) +"BI" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/munitions) "BM" = ( /obj/machinery/door/airlock/command{ name = "Conference Room" @@ -998,6 +1016,17 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/astraeus/bridge) +"BR" = ( +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/munitions) +"Cb" = ( +/obj/machinery/power/apc/auto_name/directional/east{ + start_charge = 0 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/ruin/space/has_grav/astraeus/custodial) "Cx" = ( /mob/living/simple_animal/hostile/carp, /turf/template_noop, @@ -1025,6 +1054,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/munitions) +"CU" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/hallway) "Dc" = ( /turf/closed/wall, /area/ruin/space/has_grav/astraeus/hallway) @@ -1049,13 +1083,6 @@ /obj/machinery/cell_charger, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/munitions) -"DJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/hallway) "Ee" = ( /obj/item/stack/sheet/plasteel, /turf/template_noop, @@ -1093,14 +1120,6 @@ /obj/item/stack/tile/carpet, /turf/template_noop, /area/template_noop) -"Fm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/wt550m9, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/munitions) "Fp" = ( /obj/effect/decal/remains/human, /turf/open/floor/plasteel/airless, @@ -1202,16 +1221,6 @@ /obj/structure/closet/l3closet/janitor, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/custodial) -"HD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mob_spawn/human/corpse/damaged, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/hallway) "HE" = ( /obj/effect/turf_decal/corner/opaque/blue/full, /obj/structure/frame/computer{ @@ -1238,13 +1247,6 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/dorms_med) -"Iv" = ( -/obj/machinery/vending/cola/blue, -/obj/machinery/light/built{ - dir = 8 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/dorms_med) "Iz" = ( /obj/machinery/door/airlock/command{ name = "Conference Room" @@ -1273,6 +1275,18 @@ /obj/machinery/conveyor, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/munitions) +"IX" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/obj/machinery/light/small/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/hallway) "Jk" = ( /obj/structure/catwalk, /turf/template_noop, @@ -1297,7 +1311,8 @@ /area/ruin/space/has_grav/astraeus/munitions) "Jx" = ( /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + dir = 4 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -1510,6 +1525,13 @@ }, /turf/open/floor/carpet/airless, /area/ruin/space/has_grav/astraeus/dorms_med) +"Pb" = ( +/obj/machinery/power/apc/auto_name/directional/east{ + start_charge = 0 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/munitions) "Pd" = ( /obj/effect/decal/cleanable/vomit/old, /obj/structure/cable{ @@ -1537,28 +1559,6 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/hallway) -"Pp" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/west{ - start_charge = 0 - }, -/turf/open/floor/plasteel/dark/airless, -/area/ruin/space/has_grav/astraeus/bridge) -"PJ" = ( -/obj/machinery/light/small/broken, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/munitions) -"PS" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/opaque/blue/full, -/obj/item/radio/intercom/wideband, -/turf/open/floor/plasteel/dark/airless, -/area/ruin/space/has_grav/astraeus/bridge) "Qw" = ( /obj/item/shard, /turf/template_noop, @@ -1585,6 +1585,10 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/template_noop, /area/space/nearstation) +"Rt" = ( +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/hallway) "RG" = ( /turf/open/floor/plating/airless{ icon_state = "platingdmg3" @@ -1706,28 +1710,6 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/dorms_med) -"Va" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/hallway) -"Vh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/hallway) "Vt" = ( /obj/structure/bed/dogbed/ian, /turf/open/floor/plasteel/airless, @@ -1753,18 +1735,6 @@ /obj/item/pickaxe/silver, /turf/open/floor/plating/asteroid/airless, /area/ruin/unpowered) -"VH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/obj/machinery/power/apc/auto_name/south{ - start_charge = 0 - }, -/obj/item/defibrillator/compact, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/astraeus/hallway) "VT" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -1830,13 +1800,6 @@ /obj/item/stack/tile/wood, /turf/template_noop, /area/template_noop) -"WJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/airless, -/area/ruin/space/has_grav/astraeus/bridge) "WL" = ( /turf/closed/wall, /area/ruin/space/has_grav/astraeus/dorms_med) @@ -1860,7 +1823,8 @@ /area/ruin/unpowered) "Xm" = ( /obj/structure/door_assembly/door_assembly_com{ - anchored = 1 + anchored = 1; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -1870,6 +1834,18 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/dorms_med) +"Xp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/machinery/power/apc/auto_name/directional/south{ + start_charge = 0 + }, +/obj/item/defibrillator/compact, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/hallway) "Xq" = ( /obj/effect/decal/cleanable/dirt, /obj/item/wallframe/firealarm{ @@ -1978,6 +1954,14 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/hallway) +"Zq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/astraeus/hallway) "Zz" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 10 @@ -1994,6 +1978,11 @@ /obj/item/reagent_containers/blood, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/astraeus/hallway) +"ZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/airless, +/area/ruin/space/has_grav/astraeus/bridge) "ZN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -2148,7 +2137,7 @@ XD am QZ Gv -rW +Rt Wl Tg qU @@ -2209,14 +2198,14 @@ ac ac ac es -he +Cb mL tM CE Hs Mk qO -dd +rY uH it Dc @@ -2285,11 +2274,11 @@ XD TA ht nm -uo +BI sR Fx Nd -Fm +yo jT sR ac @@ -2301,7 +2290,7 @@ As Qw ge Is -Iv +oz XD gR ac @@ -2370,7 +2359,7 @@ Dc Dc Xq Gv -VH +Xp Dc Dc WL @@ -2409,10 +2398,10 @@ Tz Gv sk pX -DJ +CU wf MS -ue +uN xb sL Fb @@ -2440,7 +2429,7 @@ xE Rn Ss ac -Va +IX Wd ty Zz @@ -2479,9 +2468,9 @@ Tc xs Dc Dc -HD +qX xw -Vh +Zq Dc Dc Ni @@ -2560,7 +2549,7 @@ VY ac ge BC -is +mh do yc XD @@ -2621,14 +2610,14 @@ bo sR yq bo -PJ +BR xs ho KD VA -Pp +aN XM -WJ +ZD Mw BO Wh @@ -2725,7 +2714,7 @@ ac (20,1,1) = {" QZ dx -dQ +ii TA hM ps @@ -2740,7 +2729,7 @@ gg GT YV TV -PS +hP Jr ur KD @@ -2765,7 +2754,7 @@ am QZ pw ia -pO +Pb xE bo JH @@ -3060,7 +3049,7 @@ ac dk ac fu -kz +vC rw Ac we diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm index 5b73d961ee04..58799b7c71ca 100644 --- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm +++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm @@ -72,9 +72,7 @@ /area/ruin/space/has_grav/derelictoutpost/cargobay) "ap" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) @@ -82,14 +80,9 @@ /turf/closed/wall/mineral/titanium/interior, /area/ruin/space/has_grav/derelictoutpost/dockedship) "ar" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"as" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 1 +/obj/machinery/power/shuttle/engine/electric, +/obj/structure/cable{ + icon_state = "0-2" }, /turf/open/floor/plating, /area/ruin/space/has_grav/derelictoutpost/dockedship) @@ -104,9 +97,7 @@ /area/ruin/space/has_grav/derelictoutpost/cargobay) "av" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "aw" = ( @@ -120,8 +111,9 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/shuttle/engine/heater{ - dir = 1 +/obj/machinery/power/smes/shuttle, +/obj/structure/cable{ + icon_state = "0-1" }, /turf/open/floor/mineral/titanium/yellow, /area/ruin/space/has_grav/derelictoutpost/dockedship) @@ -132,8 +124,9 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/shuttle/engine/heater{ - dir = 1 +/obj/machinery/power/smes/shuttle, +/obj/structure/cable{ + icon_state = "0-1" }, /turf/open/floor/mineral/titanium/yellow, /area/ruin/space/has_grav/derelictoutpost/dockedship) @@ -155,18 +148,25 @@ /area/ruin/unpowered/no_grav) "aD" = ( /obj/machinery/door/poddoor{ - id = "bigderelictship" + id = "bigderelictship"; + dir = 8 }, /turf/open/floor/mineral/titanium/yellow, /area/ruin/space/has_grav/derelictoutpost/dockedship) "aE" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/o2, +/obj/machinery/power/terminal{ + dir = 1 + }, /turf/open/floor/mineral/titanium/yellow, /area/ruin/space/has_grav/derelictoutpost/dockedship) "aF" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/regular, +/obj/machinery/power/terminal{ + dir = 1 + }, /turf/open/floor/mineral/titanium/yellow, /area/ruin/space/has_grav/derelictoutpost/dockedship) "aG" = ( @@ -478,9 +478,7 @@ /turf/closed/wall/r_wall, /area/ruin/space/has_grav/derelictoutpost) "bD" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "bE" = ( @@ -520,9 +518,7 @@ icon_state = "s-casing"; name = "spent bullet casing" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/powerstorage) "bI" = ( @@ -536,9 +532,7 @@ /area/ruin/space/has_grav/derelictoutpost/powerstorage) "bK" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "bL" = ( @@ -621,9 +615,7 @@ icon_state = "trails_1"; name = "dried blood trail" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "bY" = ( @@ -687,9 +679,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "ch" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "ci" = ( @@ -769,7 +759,8 @@ "cr" = ( /obj/machinery/door/airlock/engineering{ name = "Power Storage"; - req_access_txt = "10" + req_access_txt = "10"; + dir = 4 }, /obj/structure/barricade/wooden, /obj/structure/cable{ @@ -835,10 +826,13 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "cy" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /obj/machinery/door/poddoor{ id = "bigderelictcheckpoint"; - name = "Checkpoint Security Doors" + name = "Checkpoint Security Doors"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -931,10 +925,7 @@ /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/derelictoutpost) "cG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "cH" = ( @@ -1024,7 +1015,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "cO" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "cP" = ( @@ -1032,10 +1023,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "cQ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "cR" = ( @@ -1142,7 +1130,7 @@ desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "dd" = ( @@ -1172,7 +1160,7 @@ desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/cable{ icon_state = "1-4" }, @@ -1208,7 +1196,8 @@ /obj/structure/door_assembly/door_assembly_mai{ density = 0; desc = "A pried-open airlock. Scratch marks mark the sidings of the door."; - name = "pried-open airlock" + name = "pried-open airlock"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -1299,9 +1288,7 @@ /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/derelictoutpost) "dp" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "dq" = ( @@ -1366,10 +1353,7 @@ /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/derelictoutpost) "dw" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "dx" = ( @@ -1641,18 +1625,14 @@ /area/ruin/space/has_grav/derelictoutpost/cargostorage) "dU" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "dW" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "dZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "ee" = ( @@ -1780,7 +1760,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "eG" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "eI" = ( @@ -1798,7 +1778,8 @@ /obj/structure/door_assembly/door_assembly_mai{ density = 0; desc = "A pried-open airlock. Scratch marks mark the sidings of the door."; - name = "pried-open airlock" + name = "pried-open airlock"; + dir = 4 }, /obj/effect/decal/cleanable/blood/old{ dir = 4; @@ -1849,6 +1830,16 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/derelictoutpost) +"fK" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/storage/toolbox/electrical, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/high, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin/space/has_grav/derelictoutpost/dockedship) "iB" = ( /obj/structure/closet/crate{ icon_state = "crateopen" @@ -1877,9 +1868,7 @@ /area/ruin/space/has_grav/derelictoutpost) "kC" = ( /obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -1994,7 +1983,8 @@ /obj/machinery/door/airlock/security/glass{ id_tag = "innerbrig"; name = "Security Checkpoint"; - req_access_txt = "63" + req_access_txt = "63"; + dir = 8 }, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 @@ -2062,12 +2052,18 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "EZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) +"FV" = ( +/obj/structure/closet/crate/engineering, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin/space/has_grav/derelictoutpost/dockedship) "HN" = ( /obj/machinery/door/poddoor{ id = "bigderelictshipdock" @@ -2186,7 +2182,7 @@ icon_state = "crateopen" }, /obj/item/paicard, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) @@ -2197,9 +2193,7 @@ /obj/item/target/clown, /obj/item/target/alien, /obj/item/target, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) @@ -2642,7 +2636,7 @@ ae ag ae am -as +ar ay aF aP @@ -2716,7 +2710,7 @@ ae am ar ax -aH +FV aH aV bg @@ -2750,9 +2744,9 @@ ae ag ae am -as +ar ay -aI +fK aI aW bh diff --git a/_maps/RandomRuins/SpaceRuins/corporate_mining.dmm b/_maps/RandomRuins/SpaceRuins/corporate_mining.dmm index 3bfc02bd80ed..cf1e1689f1ea 100644 --- a/_maps/RandomRuins/SpaceRuins/corporate_mining.dmm +++ b/_maps/RandomRuins/SpaceRuins/corporate_mining.dmm @@ -81,9 +81,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/corporatemine/crewquarters) "cX" = ( @@ -149,7 +147,8 @@ /area/ruin/space/has_grav/corporatemine/hall) "eV" = ( /obj/machinery/door/airlock/alarmlock{ - name = "Cargo" + name = "Cargo"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -161,7 +160,8 @@ /area/ruin/space/has_grav/corporatemine/hall) "fa" = ( /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -225,9 +225,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/corporatemine/hall) "gf" = ( @@ -237,7 +235,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/ruin/space/has_grav/corporatemine/crewquarters) "gj" = ( @@ -300,17 +298,13 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/corporatemine/hall) "hF" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/corporatemine/crewquarters) "iu" = ( @@ -352,9 +346,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/corporatemine/hall) "je" = ( @@ -369,7 +361,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/corporatemine/hall) "jl" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -388,7 +380,7 @@ /turf/open/floor/plating/asteroid/airless, /area/ruin/space) "jH" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers{ dir = 4 }, @@ -407,7 +399,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/corporatemine/hall) "jN" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -527,10 +519,7 @@ /obj/structure/closet/crate, /obj/item/stack/ore/gold, /obj/item/stack/ore/gold, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/industrial/outline, /turf/open/floor/plasteel/tech/grid, /area/ruin/space/has_grav/corporatemine/hall) @@ -633,9 +622,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/layer2{ dir = 4 }, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/space/has_grav/corporatemine) @@ -692,7 +679,8 @@ /area/ruin/space/has_grav/corporatemine/hall) "qu" = ( /obj/machinery/door/airlock/wood/glass{ - name = "Corporate's Office" + name = "Corporate's Office"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -821,10 +809,7 @@ /turf/open/floor/plating/asteroid/airless, /area/ruin/space) "sd" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 }, @@ -917,13 +902,8 @@ /obj/effect/decal/cleanable/oil/slippery, /obj/item/trash/can/food/peaches/maint, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/corporatemine/bridge) "vW" = ( @@ -933,9 +913,7 @@ /obj/effect/turf_decal/spline/fancy/opaque/lightgrey{ dir = 8 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/corporatemine/crewquarters) "wa" = ( @@ -1007,9 +985,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/spline/fancy/opaque/lightgrey{ dir = 4 }, @@ -1057,9 +1033,7 @@ /area/ruin/space) "yT" = ( /obj/structure/closet/crate/engineering, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ruin/space/has_grav/corporatemine/hall) "yX" = ( @@ -1116,9 +1090,7 @@ "zy" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -1167,9 +1139,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/corporatemine/crewquarters) "Aw" = ( @@ -1374,7 +1344,8 @@ /area/ruin/space/has_grav/corporatemine/hall) "Dz" = ( /obj/machinery/door/airlock/engineering{ - name = "Solar Control" + name = "Solar Control"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -1392,9 +1363,7 @@ /turf/open/floor/wood, /area/ruin/space/has_grav/corporatemine/crewquarters) "DW" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/corporatemine) "Ek" = ( @@ -1469,9 +1438,7 @@ /obj/machinery/shower{ pixel_y = 16 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/ruin/space/has_grav/corporatemine/crewquarters) @@ -1510,7 +1477,8 @@ /area/ruin/space) "Gc" = ( /obj/machinery/door/airlock/grunge{ - name = "Bathroom" + name = "Bathroom"; + dir = 8 }, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/corporatemine/crewquarters) @@ -1535,7 +1503,8 @@ "GV" = ( /obj/effect/decal/cleanable/oil/slippery, /obj/machinery/door/airlock/alarmlock{ - name = "Cargo" + name = "Cargo"; + dir = 8 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -1562,9 +1531,9 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/corporatemine/hall) "Ht" = ( @@ -1719,10 +1688,7 @@ /area/ruin/space/has_grav/corporatemine/crewquarters) "Lp" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -1735,9 +1701,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/corporatemine/bridge) "LF" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid/airless, /area/ruin/space) "LQ" = ( @@ -1748,9 +1712,7 @@ /obj/effect/turf_decal/spline/fancy/opaque/lightgrey{ dir = 4 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/corporatemine/crewquarters) "LY" = ( @@ -1778,9 +1740,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/structure/cable{ icon_state = "1-2" }, @@ -1808,18 +1768,14 @@ /area/ruin/space/has_grav/corporatemine) "Nb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/corporatemine/hall) "Nx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers{ dir = 5 }, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating, /area/ruin/space/has_grav/corporatemine/hall) "NH" = ( @@ -1912,18 +1868,14 @@ /obj/structure/railing{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/corporatemine/hall) "PK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/layer4{ dir = 8 }, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/corporatemine) @@ -1943,10 +1895,8 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/corporatemine/crewquarters) "Qu" = ( @@ -2002,10 +1952,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, @@ -2082,9 +2029,7 @@ /area/ruin/space/has_grav/corporatemine/hall) "SM" = ( /obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/spline/fancy/opaque/lightgrey{ dir = 5 }, @@ -2343,7 +2288,7 @@ /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/corporatemine/hall) "Zp" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/table, /turf/open/floor/plasteel, diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm index b8eeb4e9beb0..f595e88070b5 100644 --- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm +++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm @@ -33,23 +33,9 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"ag" = ( -/obj/machinery/porta_turret{ - dir = 8; - installation = /obj/item/gun/energy/lasercannon; - set_obj_flags = "EMAGGED" - }, -/turf/open/floor/engine, -/area/awaymission/BMPship/Aft) "ah" = ( /turf/open/floor/engine, /area/awaymission/BMPship/Aft) -"ai" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/BMPship/Aft) "aj" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 4 @@ -74,10 +60,6 @@ }, /turf/open/floor/engine, /area/awaymission/BMPship/Aft) -"ao" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/awaymission/BMPship/Aft) "ap" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/awaymission/BMPship/Midship) @@ -174,50 +156,15 @@ }, /turf/open/floor/plating, /area/awaymission/BMPship/Aft) -"aF" = ( -/obj/structure/table, -/obj/item/storage/box, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/BMPship/Aft) "aG" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 }, /turf/open/floor/plating, /area/awaymission/BMPship/Aft) -"aH" = ( -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/button/door{ - id = "packerMine"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "aI" = ( /turf/closed/wall/mineral/titanium/overspace, /area/awaymission/BMPship/Fore) -"aJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "packerMine"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plating/asteroid/airless, -/area/awaymission/BMPship/Midship) "aL" = ( /obj/structure/cable{ icon_state = "1-2" @@ -350,12 +297,6 @@ "bm" = ( /turf/open/floor/wood, /area/awaymission/BMPship/Fore) -"bn" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/BMPship/Fore) "bo" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -366,7 +307,9 @@ /turf/open/floor/plating, /area/awaymission/BMPship/Fore) "bq" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /turf/open/floor/plating, /area/awaymission/BMPship/Fore) "bs" = ( @@ -396,24 +339,12 @@ }, /turf/open/floor/plating, /area/awaymission/BMPship/Fore) -"bw" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/warning{ - dir = 2 - }, -/turf/open/floor/plating, -/area/awaymission/BMPship/Fore) "bx" = ( /obj/effect/turf_decal/industrial/warning{ dir = 6 }, /turf/open/floor/plating, /area/awaymission/BMPship/Fore) -"by" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating/airless, -/area/awaymission/BMPship/Midship) "bA" = ( /obj/machinery/sleeper{ dir = 1 @@ -424,10 +355,6 @@ /obj/machinery/sleep_console, /turf/open/floor/plating/airless, /area/awaymission/BMPship/Midship) -"bC" = ( -/obj/machinery/light, -/turf/open/floor/plating/airless, -/area/awaymission/BMPship/Midship) "bD" = ( /obj/structure/cable{ icon_state = "1-4" @@ -473,13 +400,6 @@ }, /turf/open/floor/plating, /area/awaymission/BMPship/Aft) -"bN" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/warning{ - dir = 2 - }, -/turf/open/floor/plating, -/area/awaymission/BMPship/Aft) "bO" = ( /obj/structure/kitchenspike, /obj/effect/turf_decal/industrial/warning{ @@ -560,16 +480,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"bY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "bZ" = ( /obj/machinery/hydroponics, /obj/effect/turf_decal/corner/opaque/green{ @@ -592,16 +502,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"cb" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/obj/structure/salvageable/seed, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "cc" = ( /obj/machinery/vending/hydronutrients, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -680,28 +580,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"ci" = ( -/obj/machinery/processor, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "cj" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/beer, @@ -720,17 +598,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"cl" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "cm" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -817,12 +684,6 @@ "cy" = ( /turf/open/floor/plasteel/white, /area/awaymission/BMPship/Aft) -"cz" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/BMPship/Aft) "cA" = ( /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/plasteel/white, @@ -1063,6 +924,10 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) +"dh" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/airless, +/area/awaymission/BMPship/Fore) "di" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1115,36 +980,30 @@ }, /turf/open/floor/plating, /area/awaymission/BMPship/Aft) -"dp" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/light/small{ +"dq" = ( +/obj/item/multitool, +/obj/machinery/power/terminal{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) -"dq" = ( -/obj/item/multitool, /turf/open/floor/engine, /area/awaymission/BMPship/Aft) "dr" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/structure/window/reinforced{ +/obj/machinery/power/smes/shuttle{ dir = 8 }, /turf/open/floor/engine/airless, /area/awaymission/BMPship/Aft) "ds" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 +/obj/machinery/power/shuttle/engine/electric{ + dir = 8 }, -/turf/template_noop, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine/airless, /area/awaymission/BMPship/Aft) "dt" = ( /obj/structure/table, @@ -1155,25 +1014,6 @@ /obj/structure/chair/stool, /turf/open/floor/carpet, /area/awaymission/BMPship/Fore) -"dv" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/awaymission/BMPship/Fore) -"dw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "dx" = ( /obj/structure/cable{ icon_state = "2-4" @@ -1204,34 +1044,9 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"dA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "dB" = ( /turf/closed/wall/r_wall, /area/awaymission/BMPship/Midship) -"dC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/BMPship/Aft) -"dD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) "dE" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1499,19 +1314,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"en" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "eo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1628,16 +1430,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"eC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "eD" = ( /obj/structure/window/reinforced{ dir = 8 @@ -1673,13 +1465,6 @@ }, /turf/open/floor/plating, /area/awaymission/BMPship/Fore) -"eI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/BMPship/Midship) "eJ" = ( /obj/machinery/door/window{ base_state = "right"; @@ -1688,14 +1473,6 @@ }, /turf/open/floor/plating, /area/awaymission/BMPship/Midship) -"eK" = ( -/obj/machinery/light, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "eL" = ( /obj/effect/gibspawner/generic, /obj/effect/turf_decal/corner/transparent/bar, @@ -1749,24 +1526,25 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Aft) "eS" = ( /obj/effect/decal/cleanable/cobweb, -/obj/machinery/power/port_gen/pacman/super, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, /turf/open/floor/engine, /area/awaymission/BMPship/Aft) "eT" = ( /obj/structure/closet, /turf/open/floor/carpet, /area/awaymission/BMPship/Fore) -"eU" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet, -/turf/open/floor/carpet, -/area/awaymission/BMPship/Fore) "eV" = ( /obj/item/wrench, /turf/open/floor/plating, @@ -1898,19 +1676,14 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating, /area/awaymission/BMPship/Aft) -"fr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) "fs" = ( /obj/item/stack/sheet/mineral/uranium{ amount = 50 }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/engine, /area/awaymission/BMPship/Aft) "ft" = ( @@ -2003,6 +1776,9 @@ /area/awaymission/BMPship/Aft) "fG" = ( /obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plating, /area/awaymission/BMPship/Aft) "fH" = ( @@ -2010,6 +1786,9 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-8" + }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Aft) "fI" = ( @@ -2091,14 +1870,6 @@ icon_state = "platingdmg1" }, /area/awaymission/BMPship/Fore) -"fV" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Midship) "fW" = ( /turf/open/floor/plasteel{ icon_state = "platingdmg3" @@ -2149,12 +1920,6 @@ /obj/machinery/door/airlock/titanium, /turf/open/floor/plating, /area/awaymission/BMPship/Midship) -"gf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) "gg" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel, @@ -2181,32 +1946,12 @@ }, /turf/open/floor/plating/airless, /area/awaymission/BMPship/Fore) -"gl" = ( -/obj/machinery/porta_turret{ - dir = 8; - installation = /obj/item/gun/energy/lasercannon; - set_obj_flags = "EMAGGED" - }, -/turf/open/floor/engine, -/area/awaymission/BMPship/Fore) -"gm" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/engine, -/area/awaymission/BMPship/Fore) "gn" = ( /obj/structure/cable, /turf/open/floor/plating/airless{ icon_state = "platingdmg3" }, /area/awaymission/BMPship/Fore) -"go" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/awaymission/BMPship/Fore) "gp" = ( /turf/open/floor/plating/asteroid/airless, /area/awaymission/BMPship/Fore) @@ -2214,12 +1959,6 @@ /obj/structure/rack, /turf/open/floor/plating/airless, /area/awaymission/BMPship/Fore) -"gr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/airless, -/area/awaymission/BMPship/Fore) "gs" = ( /turf/open/floor/plating/asteroid/airless, /area/awaymission/BMPship/Midship) @@ -2357,211 +2096,533 @@ }, /turf/open/floor/plating/airless, /area/awaymission/BMPship/Midship) -"gV" = ( -/obj/structure/cable{ - icon_state = "4-8" +"gV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/airless, +/area/awaymission/BMPship/Midship) +"gW" = ( +/obj/machinery/door/airlock/titanium, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/awaymission/BMPship/Midship) +"gX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"gY" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"gZ" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/template_noop, +/area/template_noop) +"ha" = ( +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/awaymission/BMPship/Midship) +"hb" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"hc" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"hd" = ( +/obj/machinery/door/airlock/titanium, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"he" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"hg" = ( +/turf/open/floor/plating/airless{ + icon_state = "platingdmg3" + }, +/area/awaymission/BMPship/Midship) +"hh" = ( +/obj/item/clothing/suit/caution, +/turf/open/floor/plating/airless, +/area/awaymission/BMPship/Midship) +"hi" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating/airless, +/area/awaymission/BMPship/Midship) +"hj" = ( +/obj/structure/closet/crate, +/obj/item/spacecash/bundle/c10, +/obj/item/spacecash/bundle/c200, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"hk" = ( +/obj/structure/closet/crate, +/obj/item/spacecash/bundle/c10, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"hl" = ( +/obj/structure/sink{ + dir = 2 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"hn" = ( +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plating/asteroid/airless, +/area/awaymission/BMPship) +"ho" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/end{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/BMPship/Aft) +"hq" = ( +/obj/item/storage/box/matches, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/turf/open/floor/plating, +/area/awaymission/BMPship/Aft) +"hr" = ( +/obj/item/poster/random_contraband, +/turf/open/floor/plating, +/area/awaymission/BMPship/Aft) +"hs" = ( +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/plating, +/area/awaymission/BMPship/Aft) +"ht" = ( +/turf/closed/wall/mineral/titanium/interior, +/area/awaymission/BMPship/Aft) +"hu" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/end, +/turf/open/floor/engine, +/area/awaymission/BMPship/Aft) +"hv" = ( +/turf/closed/mineral/diamond, +/area/awaymission/BMPship) +"hw" = ( +/turf/closed/mineral/bananium, +/area/awaymission/BMPship) +"hE" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/awaymission/BMPship/Fore) +"iJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/awaymission/BMPship/Midship) +"jl" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet, +/turf/open/floor/carpet, +/area/awaymission/BMPship/Fore) +"pe" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"pJ" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"qv" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating/airless, +/area/awaymission/BMPship/Midship) +"qU" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"qY" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/structure/salvageable/seed, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"sk" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"sB" = ( +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/button/door{ + id = "packerMine"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"ui" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"vh" = ( +/turf/template_noop, +/area/space/nearstation) +"wh" = ( +/turf/template_noop, +/area/awaymission/BMPship) +"wq" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/awaymission/BMPship/Fore) +"Ae" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"AL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/smes/shuttle{ + dir = 8 + }, +/turf/open/floor/engine/airless, +/area/awaymission/BMPship/Aft) +"AX" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"Bm" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine, +/area/awaymission/BMPship/Aft) +"BZ" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"Ca" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Aft) +"CP" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/industrial/warning{ + dir = 2 + }, +/turf/open/floor/plating, +/area/awaymission/BMPship/Aft) +"Dq" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/white, +/area/awaymission/BMPship/Aft) +"DX" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/BMPship/Aft) +"ED" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/awaymission/BMPship/Aft) +"EJ" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"EQ" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/awaymission/BMPship/Midship) +"Fl" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 }, -/turf/open/floor/plating/airless, +/turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) -"gW" = ( +"Go" = ( /obj/machinery/door/airlock/titanium, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plating, -/area/awaymission/BMPship/Midship) -"gX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) -"gY" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, /area/awaymission/BMPship/Aft) -"gZ" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/template_noop, -/area/template_noop) -"ha" = ( -/turf/open/floor/plating/airless{ - icon_state = "panelscorched" +"Hy" = ( +/obj/machinery/door/poddoor/shutters{ + id = "packerMine" }, +/turf/open/floor/plating/airless, /area/awaymission/BMPship/Midship) -"hb" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) -"hc" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) -"hd" = ( -/obj/machinery/door/airlock/titanium, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +"HP" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Aft) -"he" = ( -/obj/structure/mirror{ - pixel_y = 28 +"JI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, /turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) -"hf" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ +/area/awaymission/BMPship/Midship) +"Kq" = ( +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"Lr" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Aft) -"hg" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/awaymission/BMPship/Midship) -"hh" = ( -/obj/item/clothing/suit/caution, -/turf/open/floor/plating/airless, -/area/awaymission/BMPship/Midship) -"hi" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating/airless, +"Mx" = ( +/turf/closed/mineral/random, /area/awaymission/BMPship/Midship) -"hj" = ( -/obj/structure/closet/crate, -/obj/item/spacecash/bundle/c10, -/obj/item/spacecash/bundle/c200, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) -"hk" = ( -/obj/structure/closet/crate, -/obj/item/spacecash/bundle/c10, -/turf/open/floor/plasteel, -/area/awaymission/BMPship/Aft) -"hl" = ( -/obj/structure/sink{ - dir = 2 - }, -/obj/effect/turf_decal/corner/opaque/white{ +"MV" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, /turf/open/floor/plasteel, +/area/awaymission/BMPship/Midship) +"Op" = ( +/obj/machinery/porta_turret{ + dir = 8; + installation = /obj/item/gun/energy/lasercannon; + set_obj_flags = "EMAGGED" + }, +/turf/open/floor/engine, /area/awaymission/BMPship/Aft) -"hn" = ( -/obj/item/clothing/gloves/color/fyellow, +"OQ" = ( +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid/airless, -/area/awaymission/BMPship) -"ho" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ +/area/awaymission/BMPship/Fore) +"Pb" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine, +/area/awaymission/BMPship/Fore) +"Qe" = ( +/obj/structure/table, +/obj/item/storage/box, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, +/turf/open/floor/plating, +/area/awaymission/BMPship/Aft) +"Rp" = ( +/obj/machinery/light/small/directional/south, /turf/open/floor/engine, /area/awaymission/BMPship/Aft) -"hp" = ( -/obj/machinery/light/small{ - dir = 1 +"RG" = ( +/obj/machinery/porta_turret{ + dir = 8; + installation = /obj/item/gun/energy/lasercannon; + set_obj_flags = "EMAGGED" }, /turf/open/floor/engine, +/area/awaymission/BMPship/Fore) +"SL" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/showroomfloor, /area/awaymission/BMPship/Aft) -"hq" = ( -/obj/item/storage/box/matches, -/obj/item/storage/fancy/cigarettes/dromedaryco, -/turf/open/floor/plating, +"SN" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, /area/awaymission/BMPship/Aft) -"hr" = ( -/obj/item/poster/random_contraband, +"SS" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/industrial/warning{ + dir = 2 + }, /turf/open/floor/plating, -/area/awaymission/BMPship/Aft) -"hs" = ( -/obj/item/reagent_containers/food/drinks/beer, +/area/awaymission/BMPship/Fore) +"Uc" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/awaymission/BMPship/Fore) +"WI" = ( +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/awaymission/BMPship/Aft) -"ht" = ( -/turf/closed/wall/mineral/titanium/interior, -/area/awaymission/BMPship/Aft) -"hu" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end, -/turf/open/floor/engine, -/area/awaymission/BMPship/Aft) -"hv" = ( -/turf/closed/mineral/diamond, -/area/awaymission/BMPship) -"hw" = ( -/turf/closed/mineral/bananium, -/area/awaymission/BMPship) -"hE" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/awaymission/BMPship/Fore) -"vh" = ( -/turf/template_noop, -/area/space/nearstation) -"wh" = ( -/turf/template_noop, -/area/awaymission/BMPship) -"EQ" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/awaymission/BMPship/Midship) -"Hy" = ( -/obj/machinery/door/poddoor/shutters{ - id = "packerMine" +"Xc" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 }, +/turf/open/floor/carpet, +/area/awaymission/BMPship/Fore) +"Xi" = ( +/obj/machinery/light/directional/south, /turf/open/floor/plating/airless, /area/awaymission/BMPship/Midship) -"Mx" = ( -/turf/closed/mineral/random, -/area/awaymission/BMPship/Midship) -"QM" = ( -/obj/machinery/light/small{ - dir = 1 +"Xp" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/button/door{ + id = "packerMine"; + pixel_x = 0; + pixel_y = 25 }, +/turf/open/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Midship) +"YE" = ( +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/airless{ icon_state = "platingdmg1" }, /area/awaymission/BMPship/Midship) -"Xc" = ( -/obj/structure/frame/computer{ - anchored = 1; +"ZA" = ( +/obj/machinery/processor, +/obj/machinery/light/directional/north, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/carpet, -/area/awaymission/BMPship/Fore) -"Zb" = ( -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, -/obj/machinery/light/small, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, /turf/open/floor/plasteel, /area/awaymission/BMPship/Midship) +"ZB" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/awaymission/BMPship/Aft) (1,1,1) = {" aa @@ -3154,9 +3215,9 @@ fw fu fT cG -gl +RG gG -gl +RG cG gb gb @@ -3187,7 +3248,7 @@ aa aa cG aS -bn +Uc bm fc bV @@ -3205,7 +3266,7 @@ fx fK fU cG -gm +Pb gG gG cG @@ -3296,12 +3357,12 @@ bV bV cI db -dv +wq dI db ex bV -eU +jl aT fz fM @@ -3358,7 +3419,7 @@ aT aT aT aT -go +dh fI fv cG @@ -3398,12 +3459,12 @@ bX ce ce ce -dw +MV dy ce ce ce -dw +MV ce ce ce @@ -3443,9 +3504,9 @@ aa cG aV bp -bw +SS aq -bY +Fl cp ce ce @@ -3458,7 +3519,7 @@ ce ce ce ce -fV +BZ aq gq gp @@ -3555,14 +3616,14 @@ dy dB eh eh -eI +iJ eh ej dB ce ce aq -gr +OQ gI fv gK @@ -3598,7 +3659,7 @@ aX bp bx aq -cb +qY cq cJ dd @@ -3802,7 +3863,7 @@ aa aa aa aq -bY +Fl ce ce ce @@ -3912,7 +3973,7 @@ aq dN dz eA -eK +pe aq aq cK @@ -4019,7 +4080,7 @@ dz dz dz fN -fV +BZ fm gs gs @@ -4106,18 +4167,18 @@ aq hg at hg -by +qv aq -ci +ZA ct cO dy -dA +EJ dP el ce ce -dA +EJ fi fB dy @@ -4172,9 +4233,9 @@ dB fj dB dy -aH +sB fm -aJ +Xp at gs gL @@ -4319,7 +4380,7 @@ dy dB dP dB -eC +AX ce dB fk @@ -4376,9 +4437,9 @@ dB fk dB dy -Zb +Kq fm -QM +YE at at at @@ -4463,9 +4524,9 @@ ay aL bc at -bC +Xi aq -cl +sk ce cP dy @@ -4529,7 +4590,7 @@ dz dT dz dK -Zb +Kq fm gx at @@ -4624,7 +4685,7 @@ aq aq aq aq -en +JI ce dy eX @@ -4710,9 +4771,9 @@ aa aa aa ht -ag +Op ah -ag +Op ac aC al @@ -4741,9 +4802,9 @@ gX cE hk ht -ag +Op ah -ag +Op ac aa aa @@ -4763,14 +4824,14 @@ aa ht ah ah -ao +Rp ac aD al al al bE -bN +CP ac cw cw @@ -4792,7 +4853,7 @@ gX hb cE ht -hp +Bm ah ah ac @@ -4863,11 +4924,11 @@ aa aa aa ht -ai +WI al al ac -aF +Qe al al al @@ -4887,7 +4948,7 @@ fo fD cw ac -gf +SN cE cE gX @@ -4896,7 +4957,7 @@ cE ht hq al -ai +WI ac aa aa @@ -4925,7 +4986,7 @@ al bG bM ac -cz +Dq cS ac cw @@ -5030,12 +5091,12 @@ ac cB cU ac -dC +SL cw cw cw cw -dC +SL cw fF fQ @@ -5127,22 +5188,22 @@ al al al dm -bN +CP ac cV cV cV -dD +ui dY et eG eP -dD +ui cV cV cV ac -gf +SN gX cE ht @@ -5248,7 +5309,7 @@ gj gD gP ht -hf +Ae ht ae aa @@ -5292,7 +5353,7 @@ fR eQ al fq -cE +pJ ht ht ht @@ -5386,14 +5447,14 @@ aa aa ac cX -dp -eu +HP +Ca ec eu eu eR -cX -fr +qU +Lr fH ht aa @@ -5438,12 +5499,12 @@ aa ac ht ht -ak +Go ht ht ac ht -ak +Go ht ht ht @@ -5489,12 +5550,12 @@ aa ae ht dq -ah -ah +ED +DX ht ht eS -ah +ZB fs ht ae @@ -5539,9 +5600,9 @@ aa aa aa ht -dr -dr -dr +AL +AL +AL ht ht dr @@ -5589,16 +5650,16 @@ aa aa aa aa -ae +ht ds ds ds -ae -ae +ht +ht ds ds ds -ae +ht aa aa aa diff --git a/_maps/RandomRuins/SpaceRuins/cryocontainment.dmm b/_maps/RandomRuins/SpaceRuins/cryocontainment.dmm index 37b533e6fa51..ea81b157168d 100644 --- a/_maps/RandomRuins/SpaceRuins/cryocontainment.dmm +++ b/_maps/RandomRuins/SpaceRuins/cryocontainment.dmm @@ -61,9 +61,12 @@ /turf/closed/wall/r_wall, /area/ruin/unpowered) "dt" = ( -/obj/machinery/door/airlock/security, +/obj/machinery/door/airlock/security{ + dir = 4 + }, /obj/machinery/door/poddoor{ - id = "cryocontainmentlockdown" + id = "cryocontainmentlockdown"; + dir = 4 }, /obj/effect/decal/cleanable/blood/footprints{ dir = 8 @@ -160,9 +163,7 @@ /area/ruin/unpowered) "ha" = ( /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/white/airless, /area/ruin/unpowered) "hw" = ( @@ -173,7 +174,7 @@ /area/ruin/unpowered) "ih" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/obj/machinery/light/built, +/obj/machinery/light/built/directional/south, /obj/item/light/tube/broken, /obj/structure/cable{ icon_state = "1-8" @@ -268,9 +269,12 @@ /turf/open/floor/engine/airless, /area/ruin/unpowered) "qf" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /obj/machinery/door/poddoor{ - id = "cryocontainmentlockdown" + id = "cryocontainmentlockdown"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -316,9 +320,12 @@ /turf/open/floor/plasteel/white/airless, /area/ruin/unpowered) "tm" = ( -/obj/structure/door_assembly/door_assembly_research, +/obj/structure/door_assembly/door_assembly_research{ + dir = 4 + }, /obj/machinery/door/poddoor{ - id = "cryocontainmentlockdown" + id = "cryocontainmentlockdown"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -363,9 +370,7 @@ "ve" = ( /obj/structure/table/greyscale, /obj/item/storage/fancy/cigarettes/cigpack_carp, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/layer2{ dir = 8 }, @@ -380,9 +385,7 @@ /turf/open/space, /area/space) "ye" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/chair/greyscale{ dir = 8 }, @@ -471,9 +474,7 @@ /area/ruin/unpowered) "Fk" = ( /obj/machinery/smartfridge/chemistry, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/white/airless, /area/ruin/unpowered) "Fq" = ( @@ -511,9 +512,7 @@ }, /area/ruin/unpowered) "Hn" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/engine/airless, /area/ruin/unpowered) "Hy" = ( @@ -531,10 +530,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/airless, /area/ruin/unpowered) -"IX" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) "Ji" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, @@ -588,9 +583,7 @@ /obj/machinery/atmospherics/components/binary/pump{ dir = 8 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/white/airless, /area/ruin/unpowered) "NM" = ( @@ -670,7 +663,7 @@ /turf/open/floor/plating/airless, /area/ruin/unpowered) "Sk" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, @@ -743,8 +736,7 @@ /turf/open/floor/plating/airless, /area/ruin/unpowered) "Xn" = ( -/obj/machinery/light/broken{ - dir = 8; +/obj/machinery/light/broken/directional/west{ icon_state = "tube-broken" }, /obj/item/ammo_casing/spent{ @@ -780,7 +772,7 @@ /turf/open/floor/plating/airless, /area/ruin/unpowered) "Ye" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/structure/cable{ icon_state = "4-8" }, @@ -819,7 +811,7 @@ KY KY KY KY -IX +jq KY KY KY @@ -843,7 +835,7 @@ KY KY KY KY -IX +jq KY KY "} @@ -860,7 +852,7 @@ KY KY KY KY -IX +jq KY KY KY @@ -882,7 +874,7 @@ KY KY Ro jq -IX +jq Bl KY KY @@ -920,7 +912,7 @@ KY KY KY KY -IX +jq bp xB KY @@ -943,7 +935,7 @@ Tr Cq GV Cq -IX +jq KZ KY "} @@ -1016,7 +1008,7 @@ KY KY KY KY -IX +jq KY KY KY @@ -1083,7 +1075,7 @@ un OH Ye Cq -IX +jq ts KY "} @@ -1091,10 +1083,10 @@ KY KZ KY KY -IX +jq KY KY -IX +jq KY cy Gj @@ -1111,7 +1103,7 @@ KY ts KY KY -IX +jq KY KY cy @@ -1129,7 +1121,7 @@ KY "} (17,1,1) = {" ts -IX +jq cy Cq Cq @@ -1143,7 +1135,7 @@ qk OH TG Cq -IX +jq KZ KY "} @@ -1189,7 +1181,7 @@ KY "} (20,1,1) = {" ts -IX +jq cy Cq Hn @@ -1203,7 +1195,7 @@ Rj eT km cy -IX +jq KZ KY "} @@ -1249,7 +1241,7 @@ Pg "} (23,1,1) = {" ts -IX +jq Cq Cq Jj @@ -1263,7 +1255,7 @@ kH TU oD Cq -IX +jq KZ KY "} @@ -1309,11 +1301,11 @@ KY "} (26,1,1) = {" KZ -IX -IX -IX -IX -IX +jq +jq +jq +jq +jq cy cy Cq @@ -1323,7 +1315,7 @@ Cq NM qf cy -IX +jq ts KY "} @@ -1335,7 +1327,7 @@ KY KY KY KY -IX +jq KY KY KY diff --git a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm index bc74e265f350..07f23cae71c8 100644 --- a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm +++ b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm @@ -159,9 +159,7 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) "fB" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav) "fF" = ( @@ -202,9 +200,7 @@ pixel_x = -8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/effect/turf_decal/corner/opaque/mauve/border{ dir = 8 }, @@ -344,9 +340,7 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) "lu" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav) @@ -358,7 +352,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav) "lY" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plating/rust, /area/ruin/space/has_grav) "mo" = ( @@ -381,9 +375,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/green/border{ dir = 8 }, @@ -394,9 +386,7 @@ /turf/open/floor/carpet/blue, /area/ruin/space/has_grav) "nl" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/mauve/border{ dir = 8 }, @@ -431,9 +421,7 @@ /area/ruin/space/has_grav) "oa" = ( /obj/machinery/computer/operating, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) "oi" = ( @@ -506,9 +494,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav) "ql" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) "qp" = ( @@ -778,7 +764,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav) "wt" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav) "wC" = ( @@ -795,9 +781,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav) "wJ" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/mauve/diagonal, /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel, @@ -1088,9 +1072,7 @@ /obj/effect/turf_decal/trimline/opaque/purple/line{ dir = 8 }, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) "Dt" = ( @@ -1204,9 +1186,7 @@ /area/ruin/space/has_grav) "FB" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/storage/box/donkpockets/donkpocketpizza, /turf/open/floor/plasteel, /area/ruin/space/has_grav) @@ -1415,9 +1395,7 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) "Ky" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/effect/turf_decal/corner/opaque/mauve/diagonal, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, @@ -1459,9 +1437,7 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) "LJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav) "LZ" = ( @@ -1469,9 +1445,7 @@ /turf/open/floor/plating/rust, /area/ruin/space/has_grav) "Mf" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav) "Ml" = ( @@ -1560,7 +1534,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav) "PL" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, @@ -1717,9 +1691,7 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) "Sg" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav) "Si" = ( @@ -1751,9 +1723,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green/border{ dir = 4 }, @@ -1781,9 +1751,7 @@ /area/ruin/space/has_grav) "Tc" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav) "Ty" = ( @@ -1808,7 +1776,7 @@ /turf/open/floor/plating/rust, /area/ruin/space/has_grav) "TL" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav) @@ -1874,9 +1842,7 @@ /area/ruin/space/has_grav) "Vd" = ( /obj/structure/table, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/item/ammo_box/magazine/m10mm, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav) @@ -1933,7 +1899,7 @@ /area/ruin/space/has_grav) "Wx" = ( /obj/structure/table, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/item/clothing/under/rank/rnd/research_director/turtleneck, /turf/open/floor/carpet/blue, /area/ruin/space/has_grav) diff --git a/_maps/RandomRuins/SpaceRuins/excavator_DK.dmm b/_maps/RandomRuins/SpaceRuins/excavator_DK.dmm index 0395d9546dd0..6c89bd07b19d 100644 --- a/_maps/RandomRuins/SpaceRuins/excavator_DK.dmm +++ b/_maps/RandomRuins/SpaceRuins/excavator_DK.dmm @@ -28,7 +28,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict) "gk" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel, /area/ruin/space/derelict) "gr" = ( @@ -94,7 +94,7 @@ /turf/open/space, /area/ruin/space/derelict) "nU" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/item/stack/tile/plasteel, /turf/open/floor/plating, /area/ruin/space/derelict) @@ -166,7 +166,9 @@ /turf/open/floor/plating, /area/ruin/space/derelict) "Au" = ( -/obj/machinery/door/airlock/engineering, +/obj/machinery/door/airlock/engineering{ + dir = 8 + }, /turf/open/floor/plasteel, /area/ruin/space/derelict) "AP" = ( @@ -193,7 +195,7 @@ /turf/open/floor/plating, /area/ruin/space/derelict) "EN" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/structure/table, /turf/open/floor/plasteel, /area/ruin/space/derelict) @@ -232,7 +234,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict) "Jd" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/structure/closet/crate/large, /turf/open/floor/plasteel, /area/ruin/space/derelict) @@ -280,7 +282,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict) "Pq" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plasteel, /area/ruin/space/derelict) @@ -341,7 +343,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict) "XP" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/structure/bed, /obj/item/bedsheet/random, /turf/open/floor/plasteel, diff --git a/_maps/RandomRuins/SpaceRuins/fueldepot.dmm b/_maps/RandomRuins/SpaceRuins/fueldepot.dmm index 193b1ede98f6..fda3feeed453 100644 --- a/_maps/RandomRuins/SpaceRuins/fueldepot.dmm +++ b/_maps/RandomRuins/SpaceRuins/fueldepot.dmm @@ -51,9 +51,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 10 }, -/obj/machinery/light/small{ - pixel_x = -12 - }, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium, /area/ruin/unpowered) @@ -89,7 +87,9 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/door_assembly/door_assembly_mhatch, +/obj/structure/door_assembly/door_assembly_mhatch{ + dir = 4 + }, /turf/open/floor/plating, /area/ruin/unpowered) "dN" = ( @@ -107,7 +107,9 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/door_assembly/door_assembly_mhatch, +/obj/structure/door_assembly/door_assembly_mhatch{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/pod/dark, /area/ruin/unpowered) @@ -134,12 +136,13 @@ /obj/effect/turf_decal/industrial/warning{ dir = 6 }, +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/wall{ name = "armory locker"; - pixel_x = 32 + pixel_x = 28; + dir = 8 }, -/obj/structure/table_frame, -/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium, /area/ruin/unpowered) "fP" = ( @@ -205,13 +208,10 @@ /obj/effect/turf_decal/industrial/warning{ dir = 5 }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 12 - }, /obj/structure/closet/wall{ name = "armory locker"; - pixel_x = 32 + pixel_x = 28; + dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, /obj/item/gun/ballistic/shotgun/lethal, @@ -296,10 +296,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/greenglow, /obj/effect/decal/cleanable/dirt/dust, @@ -322,9 +319,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt/dust, /obj/item/stack/cable_coil/cut/red, /turf/open/floor/pod/light, @@ -524,7 +519,9 @@ /turf/open/floor/pod/light, /area/ruin/unpowered) "st" = ( -/obj/structure/door_assembly/door_assembly_grunge, +/obj/structure/door_assembly/door_assembly_grunge{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/orange{ dir = 8 @@ -610,15 +607,12 @@ /obj/effect/turf_decal/industrial/warning/cee{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 12 - }, +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/wall{ name = "suit locker"; - pixel_x = -32 + pixel_x = -28; + dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium, /area/ruin/unpowered) "vs" = ( @@ -640,15 +634,13 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/unpowered) "vJ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/components/binary/pump/layer2, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/unpowered) "vR" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/oil/streak, /obj/effect/decal/cleanable/dirt/dust, /obj/item/stack/cable_coil/cut/red, @@ -764,9 +756,7 @@ /area/ruin/unpowered) "zt" = ( /obj/effect/decal/cleanable/oil/streak, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/pod/light, /area/ruin/unpowered) @@ -801,13 +791,15 @@ icon_state = "6-8" }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north, /turf/open/floor/pod/light, /area/ruin/unpowered) "zY" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ id = "pirateshutters"; - name = "Blast Shutters" + name = "Blast Shutters"; + dir = 4 }, /obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, @@ -882,7 +874,8 @@ /area/ruin/unpowered) "CZ" = ( /obj/machinery/door/airlock/hatch{ - name = "External Access Hatch" + name = "External Access Hatch"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -971,7 +964,9 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/structure/door_assembly/door_assembly_mhatch, +/obj/structure/door_assembly/door_assembly_mhatch{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating{ broken = 1; @@ -1045,9 +1040,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium, /area/ruin/unpowered) @@ -1213,7 +1206,9 @@ /turf/open/floor/pod/light, /area/ruin/unpowered) "Pa" = ( -/obj/structure/door_assembly/door_assembly_hatch, +/obj/structure/door_assembly/door_assembly_hatch{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating{ broken = 1; @@ -1277,13 +1272,14 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/structure/closet/wall{ - name = "armory locker"; - pixel_x = 32 - }, /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt/dust, /obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/structure/closet/wall{ + name = "armory locker"; + pixel_x = 28; + dir = 8 + }, /turf/open/floor/mineral/plastitanium, /area/ruin/unpowered) "Rt" = ( @@ -1323,7 +1319,9 @@ /obj/machinery/atmospherics/pipe/simple/orange{ dir = 8 }, -/obj/structure/door_assembly/door_assembly_mhatch, +/obj/structure/door_assembly/door_assembly_mhatch{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/ruin/unpowered) "Sw" = ( @@ -1415,7 +1413,8 @@ }, /obj/structure/closet/wall{ name = "suit locker"; - pixel_x = -32 + pixel_x = -28; + dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium, @@ -1470,6 +1469,7 @@ icon_state = "4-6" }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north, /turf/open/floor/pod/light, /area/ruin/unpowered) "WA" = ( diff --git a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm b/_maps/RandomRuins/SpaceRuins/hellfactory.dmm index 41c72a9756cb..7ac9ff16fff2 100644 --- a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm +++ b/_maps/RandomRuins/SpaceRuins/hellfactory.dmm @@ -97,13 +97,6 @@ /obj/machinery/computer/security/wooden_tv, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/hellfactoryoffice) -"aq" = ( -/obj/item/pressure_plate/hologrid{ - name = "bossman's hologrid"; - reward = /obj/item/spacecash/bundle/c10000 - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hellfactoryoffice) "ar" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/five, @@ -285,10 +278,6 @@ "aW" = ( /turf/closed/wall/r_wall/rust, /area/ruin/space/has_grav/hellfactory) -"aY" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall, -/area/ruin/space/has_grav/hellfactory) "ba" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor/auto, @@ -315,21 +304,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) -"bf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/chair/plastic{ - pixel_y = 4 - }, -/obj/item/chair/plastic{ - pixel_y = 8 - }, -/obj/item/chair/plastic{ - pixel_y = 12 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/hellfactory) "bg" = ( /obj/machinery/modular_computer/console/preset/civilian, /turf/open/floor/plasteel, @@ -340,12 +314,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) -"bi" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/hellfactory) "bj" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -382,10 +350,6 @@ /obj/structure/chair/plastic, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) -"bq" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/rust, -/area/ruin/space/has_grav/hellfactory) "bs" = ( /obj/machinery/conveyor/auto, /obj/structure/window/reinforced{ @@ -497,24 +461,10 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) -"bK" = ( -/obj/machinery/light, -/obj/structure/rack, -/obj/item/book/manual/random, -/obj/item/poster/random_contraband, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/hellfactory) "bL" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) -"bM" = ( -/obj/structure/grille/broken, -/obj/item/pressure_plate/hologrid{ - reward = /obj/item/spacecash/bundle/c500 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/hellfactory) "bN" = ( /obj/structure/ore_box, /obj/machinery/conveyor/auto, @@ -599,22 +549,12 @@ /obj/structure/sign/warning/chemdiamond, /turf/closed/wall, /area/ruin/space/has_grav/hellfactory) -"bY" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/hellfactory) "ca" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) -"cb" = ( -/obj/machinery/light/small, -/obj/structure/curtain, -/turf/open/floor/holofloor/wood, -/area/ruin/space/has_grav/hellfactory) "cc" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -652,19 +592,6 @@ /obj/item/stack/ore/glass, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) -"ch" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/plumbing/tank, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/hellfactory) -"ci" = ( -/obj/machinery/light/small, -/obj/effect/decal/remains/human, -/obj/structure/curtain, -/turf/open/floor/holofloor/wood, -/area/ruin/space/has_grav/hellfactory) "cj" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/cotton/cloth/five, @@ -674,12 +601,6 @@ /obj/machinery/plumbing/tank, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) -"cl" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/hellfactory) "cn" = ( /obj/machinery/plumbing/output{ dir = 8 @@ -690,20 +611,6 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) -"ct" = ( -/obj/machinery/light/built, -/obj/structure/marker_beacon{ - icon_state = "markerburgundy-on" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/hellfactory) -"cz" = ( -/obj/machinery/light/broken, -/obj/structure/marker_beacon{ - icon_state = "markerburgundy-on" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/hellfactory) "cA" = ( /obj/item/trash/raisins, /turf/open/floor/plating, @@ -790,6 +697,23 @@ /obj/structure/window, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) +"cY" = ( +/obj/machinery/light/directional/north, +/obj/item/chair/plastic{ + pixel_y = 4 + }, +/obj/item/chair/plastic{ + pixel_y = 8 + }, +/obj/item/chair/plastic{ + pixel_y = 12 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/hellfactory) +"dg" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ruin/space/has_grav/hellfactory) "fI" = ( /obj/structure/ore_box, /obj/effect/turf_decal/box, @@ -801,6 +725,10 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) +"hd" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/closed/wall/r_wall/rust, +/area/ruin/space/has_grav/hellfactory) "hv" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plastic, @@ -818,6 +746,16 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) +"ko" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/hellfactory) "lq" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/opaque/black{ @@ -828,6 +766,13 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) +"lC" = ( +/obj/machinery/light/broken/directional/south, +/obj/structure/marker_beacon{ + icon_state = "markerburgundy-on" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/hellfactory) "lL" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/floor, @@ -840,6 +785,13 @@ }, /turf/closed/wall/r_wall/rust, /area/ruin/space/has_grav/hellfactory) +"nn" = ( +/obj/structure/grille/broken, +/obj/item/pressure_plate/hologrid{ + reward = /obj/item/spacecash/bundle/c500 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/hellfactory) "nF" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/box, @@ -888,14 +840,15 @@ }, /turf/closed/wall/r_wall, /area/ruin/space/has_grav/hellfactory) -"tN" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hellfactoryoffice) "xd" = ( /obj/effect/turf_decal/box, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) +"xy" = ( +/obj/machinery/light/directional/west, +/obj/machinery/plumbing/tank, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/hellfactory) "xJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -908,6 +861,19 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/holofloor/wood, /area/ruin/space/has_grav/hellfactory) +"yk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/hellfactory) "yM" = ( /obj/structure/closet/crate/trashcart, /obj/item/stack/sheet/mineral/plasma, @@ -919,6 +885,13 @@ }, /turf/closed/wall/r_wall/rust, /area/ruin/space/has_grav/hellfactory) +"zj" = ( +/obj/item/pressure_plate/hologrid{ + name = "bossman's hologrid"; + reward = /obj/item/spacecash/bundle/c10000 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/hellfactoryoffice) "zK" = ( /obj/structure/catwalk, /obj/structure/marker_beacon{ @@ -926,6 +899,12 @@ }, /turf/open/space, /area/ruin/space/has_grav/hellfactory) +"zW" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/remains/human, +/obj/structure/curtain, +/turf/open/floor/holofloor/wood, +/area/ruin/space/has_grav/hellfactory) "AL" = ( /obj/structure/fluff/broken_flooring, /obj/effect/turf_decal/industrial/warning/corner{ @@ -967,19 +946,9 @@ }, /turf/closed/wall/r_wall/rust, /area/ruin/space/has_grav/hellfactory) -"Dt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 2 - }, -/turf/open/floor/plasteel, +"Fn" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) "Fs" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -1002,18 +971,6 @@ /obj/item/keycard/entry, /turf/open/space, /area/ruin/space/has_grav/hellfactory) -"GY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/hellfactory) "Ia" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/box, @@ -1022,6 +979,10 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) +"IP" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ruin/space/has_grav/hellfactory) "Jv" = ( /obj/structure/table/reinforced, /obj/item/trash/candle, @@ -1030,6 +991,13 @@ }, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/hellfactoryoffice) +"KI" = ( +/obj/machinery/light/directional/south, +/obj/structure/rack, +/obj/item/book/manual/random, +/obj/item/poster/random_contraband, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/hellfactory) "Ld" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, @@ -1059,6 +1027,13 @@ /obj/item/pressure_plate/hologrid, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) +"Nv" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer1, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light/directional/east, +/turf/open/floor/plastic, +/area/ruin/space/has_grav/hellfactory) "Nx" = ( /obj/item/stack/tile/plasteel, /obj/effect/turf_decal/industrial/warning, @@ -1084,15 +1059,6 @@ /obj/structure/catwalk, /turf/open/space, /area/ruin/space/has_grav/hellfactory) -"OJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer1, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plastic, -/area/ruin/space/has_grav/hellfactory) "Pg" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -1108,10 +1074,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) -"PO" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ruin/space/has_grav/hellfactory) "QK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/box/corners, @@ -1151,12 +1113,38 @@ /obj/structure/sign/warning/vacuum, /turf/closed/wall, /area/ruin/space/has_grav/hellfactory) +"Xt" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/curtain, +/turf/open/floor/holofloor/wood, +/area/ruin/space/has_grav/hellfactory) "XS" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/hellfactoryoffice) +"XX" = ( +/obj/machinery/light/built/directional/south, +/obj/structure/marker_beacon{ + icon_state = "markerburgundy-on" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/hellfactory) +"YR" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/closed/wall, +/area/ruin/space/has_grav/hellfactory) +"Za" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/hellfactoryoffice) +"ZX" = ( +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/hellfactory) (1,1,1) = {" aa @@ -1257,7 +1245,7 @@ bG bN bT cd -ch +xy ck ck Dk @@ -1326,7 +1314,7 @@ aa aW ag ax -OJ +Nv aO aV bc @@ -1368,7 +1356,7 @@ aA aA bL aA -ct +XX cE aW zK @@ -1390,7 +1378,7 @@ bx Pg by by -bY +ZX by by by @@ -1410,7 +1398,7 @@ ao ao aF ah -bf +cY aA bp cV @@ -1435,7 +1423,7 @@ ah al ao aG -tN +Za ah bg aA @@ -1466,7 +1454,7 @@ ao ah ac ac -bq +hd by by by @@ -1501,7 +1489,7 @@ by xd by xd -cl +IP QK AL cJ @@ -1523,14 +1511,14 @@ yY pb by by -bK +KI aL ca aL ca aL by -cz +lC cE ac zK @@ -1543,7 +1531,7 @@ ah ap ao aK -tN +Za ah aA bn @@ -1552,9 +1540,9 @@ by Wh Fs bQ -cb +Xt bQ -ci +zW aL kf Ct @@ -1567,7 +1555,7 @@ aa aa aa ah -aq +zj ao ao ao @@ -1599,7 +1587,7 @@ aE aP aP ah -bi +Fn PA ng NY @@ -1633,7 +1621,7 @@ bz Mv PA bR -PO +dg ab as aL @@ -1679,13 +1667,13 @@ ab bL PA PA -aY +YR aA PA ab ab ab -bM +nn ab ab rC @@ -1711,7 +1699,7 @@ bL PA PA PA -Dt +yk PA ab PA @@ -1733,7 +1721,7 @@ at lq aL lq -GY +ko PA PA aL @@ -1746,7 +1734,7 @@ ab as aL by -cl +IP cO ab aa diff --git a/_maps/RandomRuins/SpaceRuins/lab4071.dmm b/_maps/RandomRuins/SpaceRuins/lab4071.dmm index 8ae7304f05d8..f4a103e544ed 100644 --- a/_maps/RandomRuins/SpaceRuins/lab4071.dmm +++ b/_maps/RandomRuins/SpaceRuins/lab4071.dmm @@ -23,6 +23,18 @@ /obj/effect/decal/remains/human, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/crazylab/outside) +"aN" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/button/door{ + dir = 8; + id = 32; + name = "Rec Room Shutters"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/crazylab/gamble) "aT" = ( /mob/living/simple_animal/hostile/carp, /obj/effect/decal/cleanable/dirt, @@ -31,6 +43,19 @@ "aV" = ( /turf/closed/wall/mineral/titanium, /area/ruin/space/has_grav/crazylab/outside) +"aX" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = 128; + name = "EVA Shutters"; + pixel_y = 5 + }, +/obj/effect/turf_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/airlock) "bc" = ( /obj/machinery/door/airlock/public, /obj/structure/fans/tiny, @@ -58,6 +83,11 @@ /mob/living/simple_animal/hostile/carp, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/crazylab/outside) +"bB" = ( +/obj/machinery/light/broken/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/material, +/area/ruin/space/has_grav/crazylab/crew) "bQ" = ( /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/crazylab/outside) @@ -68,6 +98,15 @@ /obj/structure/sign/poster/retro/smile, /turf/closed/wall/mineral/titanium, /area/ruin/space/has_grav/crazylab/watchpost) +"bV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/crazylab/bar) "cd" = ( /obj/machinery/power/smes, /obj/structure/cable{ @@ -84,14 +123,6 @@ /obj/item/stack/sheet/mineral/plasma/fifty, /turf/open/floor/mineral/titanium, /area/ruin/space/has_grav/crazylab/watchpost) -"ch" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/ruin/space/has_grav/crazylab/watchpost) "ck" = ( /turf/closed/wall/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) @@ -130,15 +161,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/crazylab/outside) +"cE" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = 98; + dir = 4 + }, +/turf/open/space, +/area/ruin/space/has_grav/crazylab/chem) "cQ" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/mineral/titanium, /area/ruin/space/has_grav/crazylab/outside) -"cR" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/titanium, -/area/ruin/space/has_grav/crazylab/watchpost) "dd" = ( /mob/living/simple_animal/hostile/nanotrasen/ranged, /turf/open/floor/mineral/titanium, @@ -158,6 +193,11 @@ /obj/item/gun/energy/laser, /turf/open/floor/mineral/titanium, /area/ruin/space/has_grav/crazylab/watchpost) +"dy" = ( +/obj/effect/turf_decal/trimline/transparent/neutral/line, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/crew) "dG" = ( /obj/structure/sign/poster/retro/nanotrasen_logo_70s, /turf/closed/wall/mineral/titanium, @@ -279,14 +319,6 @@ /obj/item/pen/red, /turf/open/floor/mineral/titanium, /area/ruin/space/has_grav/crazylab/watchpost) -"fq" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/computer/camera_advanced{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/ruin/space/has_grav/crazylab/watchpost) "fv" = ( /obj/structure/table/reinforced, /obj/item/circuitboard/machine/chem_heater{ @@ -299,6 +331,14 @@ }, /turf/open/floor/mineral/titanium, /area/ruin/space/has_grav/crazylab/watchpost) +"fG" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/crazylab/crew) "fI" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid/advanced{ @@ -349,21 +389,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/material, /area/ruin/space/has_grav/crazylab/crew) -"gt" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/material, -/area/ruin/space/has_grav/crazylab/crew) -"gv" = ( -/obj/structure/toilet, -/obj/item/soap/syndie, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/material, -/area/ruin/space/has_grav/crazylab/crew) "gK" = ( /obj/structure/sign/poster/contraband/xenofauna_parasite, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -425,6 +450,12 @@ }, /turf/open/space, /area/ruin/space/has_grav/crazylab/chem) +"hW" = ( +/obj/structure/toilet, +/obj/item/soap/syndie, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/material, +/area/ruin/space/has_grav/crazylab/crew) "if" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, @@ -458,21 +489,12 @@ /obj/machinery/computer/arcade, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/gamble) -"ij" = ( -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/gamble) "il" = ( /obj/effect/turf_decal/techfloor{ dir = 1 }, /obj/machinery/vending/cigarette/syndicate, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/gamble) "is" = ( @@ -499,6 +521,16 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/material, /area/ruin/space/has_grav/crazylab/crew) +"iY" = ( +/obj/structure/table/glass, +/obj/item/paper_bin/carbon{ + pixel_y = 3 + }, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/space/has_grav/crazylab/chem) "iZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -515,15 +547,28 @@ /turf/open/floor/material, /area/ruin/space/has_grav/crazylab/crew) "jl" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /turf/open/floor/material, /area/ruin/space/has_grav/crazylab/crew) "jo" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/material, /area/ruin/space/has_grav/crazylab/crew) -"jq" = ( -/obj/machinery/light, +"jB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/crazylab/crew) +"jG" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/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; @@ -537,17 +582,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/crew) -"jB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/crew) -"jG" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/crew) "jO" = ( /obj/structure/cable{ icon_state = "4-8" @@ -555,21 +589,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/crew) -"jR" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/crew) -"jX" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/obj/machinery/light/broken, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/crew) "kg" = ( /obj/structure/table/glass, /obj/item/stock_parts/micro_laser{ @@ -589,15 +608,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ruin/space/has_grav/crazylab/chem) -"ks" = ( -/obj/structure/table/glass, -/obj/item/storage/bag/chemistry, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/space/has_grav/crazylab/chem) "kx" = ( /obj/structure/table/glass, /obj/item/paper_bin/carbon{ @@ -660,17 +670,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/crew) -"mb" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/space/has_grav/crazylab/chem) -"mc" = ( -/obj/structure/closet/secure_closet/chemical/heisenberg, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/space/has_grav/crazylab/chem) "me" = ( /obj/structure/table/glass, /obj/item/hand_labeler{ @@ -708,7 +707,8 @@ /obj/structure/grille, /obj/structure/grille, /obj/machinery/door/poddoor{ - id = 98 + id = 98; + dir = 4 }, /turf/open/space, /area/ruin/space/has_grav/crazylab/chem) @@ -719,6 +719,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/gamble) +"mE" = ( +/obj/structure/table/glass, +/obj/item/storage/bag/chemistry, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/space/has_grav/crazylab/chem) "mT" = ( /obj/structure/chair/wood, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -756,7 +762,9 @@ /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/gamble) "nm" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 8 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -800,24 +808,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) -"nC" = ( -/obj/effect/turf_decal/trimline/transparent/neutral/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/crew) "nI" = ( /obj/effect/turf_decal/trimline/transparent/neutral/line{ dir = 1 @@ -882,6 +872,23 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) +"ok" = ( +/obj/effect/turf_decal/trimline/transparent/neutral/line, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/broken/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/airlock) "ol" = ( /obj/effect/turf_decal/trimline/transparent/neutral/line{ dir = 1 @@ -932,7 +939,9 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) "or" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -1016,6 +1025,23 @@ }, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/crazylab/chem) +"oX" = ( +/obj/structure/table/wood/reinforced, +/obj/item/storage/box/ingredients/wildcard{ + pixel_y = 13 + }, +/obj/item/storage/box/ingredients/wildcard{ + pixel_x = -8 + }, +/obj/item/storage/box/ingredients/wildcard{ + pixel_x = 8 + }, +/obj/machinery/light/directional/north, +/obj/machinery/camera/all{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/white, +/area/ruin/space/has_grav/crazylab/bar) "oY" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 4 @@ -1031,6 +1057,10 @@ }, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/crazylab/chem) +"pb" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ruin/space/has_grav/crazylab/armory) "px" = ( /obj/structure/chair/wood{ dir = 4 @@ -1077,7 +1107,9 @@ /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/gamble) "pR" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, @@ -1099,6 +1131,15 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) +"qg" = ( +/obj/structure/rack, +/obj/item/melee/baseball_bat/ablative, +/obj/item/kitchen/knife/combat{ + pixel_y = 9 + }, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/crazylab/armory) "qi" = ( /obj/effect/turf_decal/trimline/transparent/neutral/line, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1135,6 +1176,14 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) +"qw" = ( +/obj/machinery/disposal/bin, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/space/has_grav/crazylab/chem) "qy" = ( /obj/effect/turf_decal/trimline/transparent/neutral/corner{ dir = 8 @@ -1158,11 +1207,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) -"rt" = ( -/obj/effect/turf_decal/trimline/transparent/neutral/line, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/crew) "rS" = ( /obj/effect/turf_decal/trimline/transparent/neutral/line, /obj/structure/cable{ @@ -1187,7 +1231,9 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) "rY" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 8 + }, /obj/machinery/door/firedoor/heavy, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/chem) @@ -1201,6 +1247,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/crazylab/chem) +"sr" = ( +/obj/structure/grille, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = 32; + dir = 8 + }, +/turf/open/space, +/area/ruin/space/has_grav/crazylab/gamble) "sx" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 6 @@ -1278,16 +1333,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/crazylab/outside) -"tj" = ( -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/vending/snack/green, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/gamble) "tn" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck/kotahi{ @@ -1331,9 +1376,23 @@ }, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/gamble) +"ui" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium, +/area/ruin/space/has_grav/crazylab/watchpost) "uo" = ( /turf/closed/wall/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/bar) +"us" = ( +/mob/living/simple_animal/hostile/poison/giant_spider/nurse, +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/hydro) "ut" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -1355,6 +1414,26 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/crew) +"uO" = ( +/obj/structure/table/glass, +/obj/item/stock_parts/micro_laser{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/stock_parts/manipulator{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 8 + }, +/obj/item/stock_parts/capacitor, +/obj/item/lighter{ + pixel_x = -7 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/space/has_grav/crazylab/chem) "uQ" = ( /obj/machinery/vending/cola/shamblers, /obj/effect/turf_decal/trimline/transparent/neutral/line, @@ -1387,16 +1466,6 @@ /obj/structure/sign/warning/chemdiamond, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/crazylab/chem) -"vJ" = ( -/obj/structure/closet/crate/radiation{ - opened = 1 - }, -/obj/item/stack/sheet/mineral/plasma/fifty, -/obj/item/stack/sheet/mineral/silver/fifty, -/obj/machinery/light/broken, -/obj/item/stack/sheet/mineral/uranium/twenty, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/space/has_grav/crazylab/chem) "vK" = ( /obj/structure/table/glass, /obj/item/stack/cable_coil/red{ @@ -1459,6 +1528,23 @@ /obj/structure/fluff/fokoff_sign, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/crazylab/outside) +"we" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/ruin/space/has_grav/crazylab/bomb) +"wj" = ( +/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/effect/turf_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/airlock) "wm" = ( /obj/effect/turf_decal/techfloor{ dir = 8 @@ -1492,20 +1578,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/gamble) -"wY" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 8; - id = 32; - name = "Rec Room Shutters"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/gamble) "xe" = ( /obj/machinery/processor, /turf/open/floor/plasteel/mono/white, @@ -1592,6 +1664,13 @@ }, /turf/open/space, /area/ruin/space/has_grav/crazylab/bar) +"ym" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/armory) "yu" = ( /obj/structure/closet/crate{ opened = 1 @@ -1650,17 +1729,6 @@ /obj/machinery/jukebox, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/gamble) -"zg" = ( -/obj/structure/table/wood/reinforced, -/obj/item/storage/bag/tray, -/obj/item/kitchen/knife, -/obj/item/kitchen/rollingpin, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/mono/white, -/area/ruin/space/has_grav/crazylab/bar) "zh" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1675,6 +1743,35 @@ }, /turf/open/floor/carpet/red, /area/ruin/space/has_grav/crazylab/bar) +"zn" = ( +/obj/structure/spider/cocoon, +/obj/structure/spider/stickyweb, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/hydro) +"zq" = ( +/obj/structure/table/wood/reinforced, +/obj/item/storage/bag/tray, +/obj/item/kitchen/knife, +/obj/item/kitchen/rollingpin, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/mono/white, +/area/ruin/space/has_grav/crazylab/bar) +"zs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/broken/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/crazylab/bar) +"zu" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plating/asteroid/snow/temperatre, +/area/ruin/space/has_grav/crazylab/bar) "zw" = ( /obj/structure/chair/stool/bar{ dir = 8 @@ -1684,17 +1781,11 @@ }, /turf/open/floor/carpet/red, /area/ruin/space/has_grav/crazylab/bar) -"zy" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/bar) +"zB" = ( +/obj/structure/closet/secure_closet/chemical/heisenberg, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/space/has_grav/crazylab/chem) "zC" = ( /obj/structure/flora/rock/icy, /turf/open/floor/plating/asteroid/snow/temperatre, @@ -1702,19 +1793,6 @@ "zF" = ( /turf/open/floor/plating/asteroid/snow/temperatre, /area/ruin/space/has_grav/crazylab/bar) -"zG" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/head/hardhat, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - dir = 9 - }, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/engi) "zJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1803,29 +1881,6 @@ /obj/structure/sign/poster/contraband/eat, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/crazylab/gamble) -"AL" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/space/has_grav/crazylab/bar) -"AR" = ( -/obj/structure/table/wood/reinforced, -/obj/item/storage/box/ingredients/wildcard{ - pixel_y = 13 - }, -/obj/item/storage/box/ingredients/wildcard{ - pixel_x = -8 - }, -/obj/item/storage/box/ingredients/wildcard{ - pixel_x = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/all{ - dir = 1 - }, -/turf/open/floor/plasteel/mono/white, -/area/ruin/space/has_grav/crazylab/bar) "AT" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/reagent_containers/food/condiment/enzyme, @@ -1863,6 +1918,12 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/mono/white, /area/ruin/space/has_grav/crazylab/bar) +"Bb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/airlock) "Bg" = ( /obj/structure/table/wood/reinforced, /turf/open/floor/carpet/red, @@ -1907,15 +1968,40 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/engi) +"BA" = ( +/obj/effect/turf_decal/trimline/transparent/neutral/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, /turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/engi) +/area/ruin/space/has_grav/crazylab/crew) "BC" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/engi) +"BJ" = ( +/obj/structure/grille, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = 32; + dir = 4 + }, +/turf/open/space, +/area/ruin/space/has_grav/crazylab/gamble) "BL" = ( /obj/structure/table/reinforced, /obj/item/wrench, @@ -1934,25 +2020,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/engi) -"BR" = ( -/obj/structure/closet/crate/radiation, -/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stack/sheet/mineral/uranium/fifty, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/engi) -"BS" = ( -/obj/machinery/disposal/bin, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/space/has_grav/crazylab/chem) "BW" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 8 @@ -1995,6 +2062,15 @@ /obj/effect/decal/remains/human, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/crazylab/outside) +"Cj" = ( +/obj/structure/closet/crate/radiation, +/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/item/stack/sheet/mineral/uranium/fifty, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/engi) "Ck" = ( /obj/effect/turf_decal/number/four, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -2033,6 +2109,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/mono/white, /area/ruin/space/has_grav/crazylab/bar) "CW" = ( @@ -2138,6 +2215,7 @@ /area/ruin/space/has_grav/crazylab/engi) "Ew" = ( /obj/machinery/autolathe, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ruin/space/has_grav/crazylab/chem) "EG" = ( @@ -2170,17 +2248,14 @@ }, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/crazylab/chem) -"Fh" = ( -/obj/structure/table/glass, -/obj/item/paper_bin/carbon{ - pixel_y = 3 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - pixel_x = 25 +"Fg" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, -/area/ruin/space/has_grav/crazylab/chem) +/obj/machinery/vending/snack/green, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/crazylab/gamble) "Fo" = ( /obj/effect/turf_decal/number/zero, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -2238,10 +2313,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/bar) -"FV" = ( -/obj/machinery/light, -/turf/open/floor/plating/asteroid/snow/temperatre, -/area/ruin/space/has_grav/crazylab/bar) "Ga" = ( /obj/machinery/power/port_gen/pacman/super, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ @@ -2351,6 +2422,14 @@ "GV" = ( /turf/open/space, /area/template_noop) +"GX" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/computer/camera_advanced{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/space/has_grav/crazylab/watchpost) "Hc" = ( /obj/structure/chair/stool/bar{ dir = 1 @@ -2364,6 +2443,12 @@ }, /turf/open/floor/carpet/red, /area/ruin/space/has_grav/crazylab/bar) +"Hi" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/light/small/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/hydro) "Hq" = ( /obj/structure/chair/stool/bar{ dir = 1 @@ -2403,10 +2488,6 @@ "HL" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/crazylab/armory) -"Ic" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/space/has_grav/crazylab/armory) "Ie" = ( /obj/effect/turf_decal/number/four, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -2481,14 +2562,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/bar) -"IU" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/crazylab/bar) "Jj" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -2530,7 +2603,9 @@ /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/crazylab/bar) "JA" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, @@ -2554,13 +2629,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/crazylab/armory) -"Kb" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/armory) "Ke" = ( /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/crazylab/armory) @@ -2569,9 +2637,17 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/armory) "Kj" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/armory) +"Kn" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light/small/directional/north, +/turf/open/floor/mineral/titanium, +/area/ruin/space/has_grav/crazylab/watchpost) "Ks" = ( /obj/effect/turf_decal/trimline/transparent/neutral/line{ dir = 9 @@ -2579,16 +2655,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/airlock) -"Kt" = ( -/obj/effect/turf_decal/trimline/transparent/neutral/line{ - dir = 1 - }, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/footprints, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/airlock) "Kz" = ( /obj/effect/turf_decal/trimline/transparent/neutral/line{ dir = 1 @@ -2738,7 +2804,9 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/crazylab/armory) "Ll" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -2845,23 +2913,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/airlock) -"LM" = ( -/obj/effect/turf_decal/trimline/transparent/neutral/line, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light/broken, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/airlock) "LP" = ( /obj/effect/turf_decal/trimline/transparent/neutral/line{ dir = 6 @@ -2920,13 +2971,16 @@ /obj/structure/flora/grass/brown, /turf/open/floor/plating/grass, /area/ruin/space/has_grav/crazylab/bar) -"ML" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/machinery/light{ - dir = 4 +"MM" = ( +/obj/structure/closet/crate/radiation{ + opened = 1 }, -/turf/open/floor/plating/grass, -/area/ruin/space/has_grav/crazylab/bar) +/obj/item/stack/sheet/mineral/plasma/fifty, +/obj/item/stack/sheet/mineral/silver/fifty, +/obj/machinery/light/broken/directional/south, +/obj/item/stack/sheet/mineral/uranium/twenty, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/space/has_grav/crazylab/chem) "MV" = ( /obj/structure/closet/secure_closet/security{ req_access = null @@ -3090,17 +3144,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/armory) -"Pt" = ( -/obj/structure/rack, -/obj/item/melee/baseball_bat/ablative, -/obj/item/kitchen/knife/combat{ - pixel_y = 9 - }, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ruin/space/has_grav/crazylab/armory) "Px" = ( /obj/structure/sign/poster/contraband/syndicate_recruitment, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -3109,16 +3152,11 @@ /obj/structure/sign/poster/contraband/red_rum, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/crazylab/airlock) -"PJ" = ( -/obj/machinery/suit_storage_unit/independent/mining/eva, -/obj/effect/turf_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/airlock) +"PS" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/grass, +/area/ruin/space/has_grav/crazylab/bar) "PT" = ( /obj/effect/turf_decal/industrial/warning/dust{ dir = 1 @@ -3129,6 +3167,33 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/airlock) +"Qc" = ( +/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/effect/turf_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/airlock) +"Qf" = ( +/obj/effect/turf_decal/trimline/transparent/neutral/line{ + dir = 1 + }, +/obj/machinery/light/broken/directional/north, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/airlock) +"Qg" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/head/hardhat, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ + dir = 9 + }, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/engi) "Qk" = ( /obj/effect/turf_decal/industrial/warning/dust{ dir = 1 @@ -3151,7 +3216,8 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, /obj/machinery/door/poddoor{ - id = 128 + id = 128; + dir = 4 }, /turf/open/space, /area/ruin/space/has_grav/crazylab/airlock) @@ -3172,17 +3238,6 @@ /obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/bar) -"QF" = ( -/obj/structure/rack, -/obj/item/melee/baseball_bat/ablative, -/obj/item/kitchen/knife/combat{ - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ruin/space/has_grav/crazylab/armory) "QJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3216,17 +3271,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/armory) -"Rg" = ( -/obj/machinery/suit_storage_unit/independent/mining/eva, -/obj/effect/turf_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/airlock) "Rj" = ( /obj/effect/turf_decal/industrial/warning/dust/corner{ dir = 8 @@ -3249,19 +3293,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/airlock) -"Ry" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = 128; - name = "EVA Shutters"; - pixel_y = 5 - }, -/obj/effect/turf_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/machinery/light/small/broken, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/airlock) "RQ" = ( /obj/machinery/light/floor, /obj/structure/lattice/catwalk, @@ -3292,11 +3323,15 @@ /obj/structure/spider/stickyweb, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/hydro) -"Sn" = ( -/obj/structure/salvageable/seed, -/obj/structure/spider/stickyweb, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/hydro) +"So" = ( +/obj/structure/rack, +/obj/item/melee/baseball_bat/ablative, +/obj/item/kitchen/knife/combat{ + pixel_y = 6 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/crazylab/armory) "Sp" = ( /obj/structure/table/reinforced, /obj/structure/spider/stickyweb, @@ -3341,6 +3376,14 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/airlock) +"Th" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/crazylab/gamble) "TA" = ( /obj/effect/turf_decal/industrial/warning/dust{ dir = 6 @@ -3353,12 +3396,11 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/airlock) -"TC" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/ruin/space/has_grav/crazylab/bomb) +"TE" = ( +/obj/structure/salvageable/seed, +/obj/structure/spider/stickyweb, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/crazylab/hydro) "TJ" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/crazylab/bar) @@ -3372,14 +3414,6 @@ /obj/structure/sign/poster/contraband/rip_badger, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/crazylab/hydro) -"Ua" = ( -/obj/structure/spider/cocoon, -/obj/structure/spider/stickyweb, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/hydro) "Uy" = ( /obj/structure/spider/stickyweb, /obj/effect/decal/cleanable/blood/gibs/core, @@ -3522,15 +3556,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/hydro) -"Wx" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/nurse, -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" +"WC" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/hydro) +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/crazylab/crew) "WD" = ( /obj/effect/decal/cleanable/blood/gibs/up, /obj/structure/cable{ @@ -3538,14 +3570,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/crazylab/hydro) -"WG" = ( -/obj/structure/spider/stickyweb, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/crazylab/hydro) "WH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -3754,7 +3778,7 @@ ao au bc bR -cR +ui bh bh at @@ -3831,7 +3855,7 @@ at bh cd dh -fq +GX bh at at @@ -3905,7 +3929,7 @@ GV GV at bh -ch +Kn dr fI bh @@ -4252,7 +4276,7 @@ GV GV ao ao -fK +BJ fK fY fY @@ -4289,10 +4313,10 @@ GV GV ao ao -fK +sr fK ih -tj +Fg wm yI fY @@ -4326,7 +4350,7 @@ GV GV ao ao -fK +BJ fK ih mu @@ -4363,7 +4387,7 @@ GV GV GV ao -fK +BJ fK ih mu @@ -4440,7 +4464,7 @@ GV GV at fY -ij +Th kB mV pE @@ -4483,9 +4507,9 @@ kJ ng pG tF -wY +aN fY -AL +TJ CO FE GU @@ -4523,11 +4547,11 @@ pJ ug fY TJ -AR +oX CW Bg Hc -IU +zs TJ Mz uo @@ -4560,7 +4584,7 @@ nm pR fY TJ -zg +zq AT CY Bg @@ -4571,7 +4595,7 @@ MB OX QB Sm -Ua +zn Vr Fr Se @@ -4608,7 +4632,7 @@ yl MG Pd QB -Sn +TE Uy Uy Vr @@ -4643,7 +4667,7 @@ FK HG Jt TJ -ML +PS uo TJ Sp @@ -4705,14 +4729,14 @@ GV ao cn dJ -gt +bB jb dI -nC +BA qt uu xq -zy +bV Bo Bo FU @@ -4721,11 +4745,11 @@ JA TJ MV Pe -QF +So NO HL Fr -Wx +us XO Yw at @@ -4781,7 +4805,7 @@ GV ao ao dI -gv +hW jo lc ob @@ -4791,7 +4815,7 @@ TJ zC Bt zF -FV +zu TJ JZ KY @@ -4801,7 +4825,7 @@ QO SJ UN Fr -WG +Hi Fr Fr at @@ -4831,7 +4855,7 @@ Bw Dn uo HL -Kb +ym Lb NA Pk @@ -4858,7 +4882,7 @@ ao ck dI dO -jq +jL lA od ra @@ -4868,7 +4892,7 @@ TJ TJ TJ TJ -Ic +pb Ke Lc NC @@ -4902,7 +4926,7 @@ oe rh ck xH -zG +Qg By Dp vi @@ -4910,7 +4934,7 @@ HL Kg Li NO -Pt +qg Rd MV HL @@ -4937,7 +4961,7 @@ gV jG lN ol -rt +dy vi xO zJ @@ -5010,7 +5034,7 @@ ao dI eA hg -jR +fG dI oo rW @@ -5021,7 +5045,7 @@ BL DN Go Im -Kt +Qf Lw NU Ok @@ -5048,7 +5072,7 @@ ao dI dI hl -jX +WC dI or rY @@ -5093,15 +5117,15 @@ sd vD yk zX -BR +Cj Ef vi Ok KB LB Ok -PJ -Rg +Qc +wj Ok Ok VM @@ -5125,10 +5149,10 @@ at at hy hy -mc +zB oJ sx -vJ +MM hy Ad hy @@ -5161,17 +5185,17 @@ GV GV GV at -hE -kg +hy +uO me oQ sC vK yu Ae -BS +qw Ew -mb +hy Ok KF LE @@ -5200,7 +5224,7 @@ GV GV at hy -ks +mE mi oW sH @@ -5212,10 +5236,10 @@ EG Gv Iv KJ -LM +ok Ok Qn -Ry +aX Ok Ok VM @@ -5275,7 +5299,7 @@ GV GV GV ao -hV +cE hV mm me @@ -5314,7 +5338,7 @@ GV GV ao ao -hV +cE hV kg td @@ -5322,11 +5346,11 @@ kx mm kg td -Fh +iY hy Ok -Ok -LQ +at +Bb ao ao GV @@ -5354,11 +5378,11 @@ GV ao ao mt -hV -hV -hV -hV -hV +cE +cE +cE +cE +cE vD hy hy @@ -5900,7 +5924,7 @@ GV GV GV Mb -TC +we RQ ao TM diff --git a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm index c36a60961c79..72845edbf97d 100644 --- a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm +++ b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm @@ -117,7 +117,8 @@ "D" = ( /obj/machinery/door/poddoor{ id = "mechaship1"; - name = "Cargo Bay Door" + name = "Cargo Bay Door"; + dir = 4 }, /turf/open/floor/mineral/titanium/yellow/airless, /area/ruin/space/has_grav/powered/mechtransport) diff --git a/_maps/RandomRuins/SpaceRuins/ntfacility.dmm b/_maps/RandomRuins/SpaceRuins/ntfacility.dmm index 2e1d441d7f00..81022ed00fd6 100644 --- a/_maps/RandomRuins/SpaceRuins/ntfacility.dmm +++ b/_maps/RandomRuins/SpaceRuins/ntfacility.dmm @@ -30,6 +30,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered) +"bd" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating, +/area/ruin/powered) "bx" = ( /obj/machinery/computer/operating, /obj/effect/decal/cleanable/dirt/dust, @@ -62,10 +69,13 @@ /turf/open/floor/plasteel, /area/ruin/powered) "cc" = ( -/obj/machinery/door/airlock/research, +/obj/machinery/door/airlock/research{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/poddoor/shutters{ - id = "rd4" + id = "rd4"; + dir = 8 }, /turf/open/floor/plasteel/dark, /area/ruin/powered) @@ -73,6 +83,15 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/ruin/powered) +"cl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "rd1"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ruin/powered) "cy" = ( /obj/item/crowbar/power, /obj/effect/decal/cleanable/blood/tracks{ @@ -111,7 +130,8 @@ "dj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters{ - id = "celock" + id = "celock"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/powered) @@ -129,10 +149,12 @@ "dS" = ( /obj/machinery/door/airlock/command/glass{ id_tag = list(103); - name = "Chief Engineer's Office" + name = "Chief Engineer's Office"; + dir = 4 }, /obj/machinery/door/poddoor/shutters{ - id = "celock" + id = "celock"; + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -155,6 +177,12 @@ /obj/machinery/door/airlock/maintenance_hatch, /turf/open/floor/plating, /area/ruin/powered) +"eJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "eP" = ( /obj/effect/gibspawner/human, /obj/item/bodypart/head, @@ -171,11 +199,12 @@ /turf/open/floor/carpet/royalblue, /area/ruin/powered) "eX" = ( -/obj/machinery/door/poddoor{ - id = "medical_lock_medlock" - }, /obj/effect/turf_decal/industrial/warning/cee, /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "medical_lock_medlock"; + dir = 8 + }, /turf/open/floor/plasteel/white, /area/ruin/powered) "fd" = ( @@ -216,9 +245,12 @@ /turf/open/floor/plasteel/dark, /area/ruin/powered) "fq" = ( -/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/airlock/medical/glass{ + dir = 4 + }, /obj/machinery/door/poddoor/shutters{ - id = "medical_lock_lobby" + id = "medical_lock_lobby"; + dir = 8 }, /turf/open/floor/plasteel/white, /area/ruin/powered) @@ -263,12 +295,8 @@ /turf/open/floor/plasteel/white, /area/ruin/powered) "gk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "rd4" - }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, +/turf/closed/wall/r_wall/rust, /area/ruin/powered) "gE" = ( /obj/structure/table, @@ -284,6 +312,25 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered) +"gL" = ( +/obj/item/shard{ + icon_state = "tiny" + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rd3"; + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rd3"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/powered) "gP" = ( /obj/item/shard{ icon_state = "tiny" @@ -292,11 +339,12 @@ /obj/item/shard{ icon_state = "small" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rd3" - }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rd3"; + dir = 8 + }, /turf/open/floor/plating, /area/ruin/powered) "gY" = ( @@ -305,15 +353,26 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ruin/powered) +"hi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "celock"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ruin/powered) "hk" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 8 + }, /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, /turf/open/floor/plating, /area/ruin/powered) "hC" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/door/poddoor/preopen, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -352,7 +411,9 @@ /turf/open/floor/carpet/blue, /area/ruin/powered) "it" = ( -/obj/machinery/door/poddoor/preopen, +/obj/machinery/door/poddoor/preopen{ + dir = 4 + }, /obj/effect/spawner/lootdrop/maintenance/five, /obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt/dust, @@ -366,6 +427,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/powered) +"ix" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor/shutters{ + id = "rd4"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/powered) "iA" = ( /obj/machinery/atmospherics/components/unary/portables_connector, /obj/effect/decal/cleanable/dirt/dust, @@ -378,14 +448,29 @@ /obj/machinery/door/window, /turf/open/floor/carpet/blue, /area/ruin/powered) +"iR" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor/preopen{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "jq" = ( /obj/structure/table/wood/reinforced, /obj/item/cigbutt/cigarbutt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/royalblue, /area/ruin/powered) +"jx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/powered) "jA" = ( -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, /obj/structure/fans/tiny, /turf/open/floor/plating, /area/ruin/powered) @@ -448,18 +533,36 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/blue, /area/ruin/powered) +"kT" = ( +/obj/machinery/door/poddoor/ert{ + id = "c"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "kX" = ( /obj/effect/gibspawner/human, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered) +"le" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "medical_lock_lobby"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/powered) "lu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/powered) "lL" = ( -/obj/machinery/door/airlock/engineering/glass/critical, +/obj/machinery/door/airlock/engineering/glass/critical{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/plating, /area/ruin/powered) "lR" = ( @@ -490,12 +593,9 @@ /obj/item/shard{ icon_state = "tiny" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rd3" - }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/closed/wall/r_wall/rust, /area/ruin/powered) "ng" = ( /obj/effect/gibspawner/human, @@ -533,10 +633,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/powered) -"oP" = ( -/obj/machinery/light/small{ - dir = 1 +"oN" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ruin/powered) +"oP" = ( +/obj/machinery/light/small/directional/north, /obj/machinery/door/poddoor/preopen, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -556,6 +661,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/powered) +"pI" = ( +/obj/machinery/door/poddoor/preopen{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/five, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault, +/area/ruin/powered) "pM" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/powered) @@ -576,10 +691,10 @@ /turf/open/floor/plasteel/white, /area/ruin/powered) "qm" = ( -/obj/machinery/light/small{ +/obj/machinery/light/small/directional/east, +/obj/machinery/door/poddoor/preopen{ dir = 4 }, -/obj/machinery/door/poddoor/preopen, /obj/effect/decal/cleanable/blood/splatter, /obj/structure/sign/poster/retro/nanotrasen_logo_70s{ pixel_x = 32 @@ -589,11 +704,21 @@ /turf/open/floor/vault, /area/ruin/powered) "qs" = ( -/obj/machinery/door/airlock/research, +/obj/machinery/door/airlock/research{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/poddoor/shutters{ - id = "rd1" + id = "rd1"; + dir = 4 }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered) +"qU" = ( /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor/preopen{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/ruin/powered) "qW" = ( @@ -606,13 +731,16 @@ /turf/closed/wall/mineral/titanium, /area/ruin/powered) "rO" = ( -/obj/machinery/door/airlock/research, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rd3" +/obj/machinery/door/airlock/research{ + dir = 8 }, +/obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rd3"; + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/ruin/powered) "rS" = ( @@ -623,7 +751,9 @@ /turf/open/floor/engine, /area/ruin/powered) "rX" = ( -/obj/machinery/door/poddoor, +/obj/machinery/door/poddoor{ + dir = 8 + }, /turf/open/floor/plating/airless, /area/ruin/powered) "rY" = ( @@ -648,6 +778,14 @@ }, /turf/open/floor/plasteel, /area/ruin/powered) +"sn" = ( +/obj/machinery/door/poddoor/preopen{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault, +/area/ruin/powered) "so" = ( /obj/machinery/computer/card{ dir = 8 @@ -666,9 +804,18 @@ /turf/open/floor/plating, /area/ruin/powered) "tv" = ( -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, /turf/open/floor/mineral/titanium/blue, /area/ruin/powered) +"tF" = ( +/obj/machinery/door/poddoor/preopen{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ruin/powered) "tQ" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 @@ -679,7 +826,9 @@ /turf/open/floor/plasteel/white, /area/ruin/powered) "tW" = ( -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, @@ -700,22 +849,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered) -"uq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "rd1" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ruin/powered) "uF" = ( /obj/structure/table/optable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered) "uG" = ( -/obj/machinery/door/airlock/engineering/glass/critical, +/obj/machinery/door/airlock/engineering/glass/critical{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine, /area/ruin/powered) @@ -786,12 +928,21 @@ /turf/open/floor/engine, /area/ruin/powered) "xf" = ( -/obj/machinery/door/poddoor/preopen, +/obj/machinery/door/poddoor/preopen{ + dir = 8 + }, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, /turf/open/floor/vault, /area/ruin/powered) +"xx" = ( +/obj/machinery/door/poddoor/ert{ + id = "b"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "xO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -859,11 +1010,14 @@ /turf/open/floor/carpet/blue, /area/ruin/powered) "zn" = ( -/obj/machinery/door/airlock/research, -/obj/machinery/door/poddoor/shutters{ - id = "rd2" +/obj/machinery/door/airlock/research{ + dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor/shutters{ + id = "rd2"; + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/ruin/powered) "zx" = ( @@ -904,6 +1058,19 @@ /obj/effect/spawner/structure/window/reinforced/shutters, /turf/open/floor/plating, /area/ruin/powered) +"AI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/closed/wall/r_wall, +/area/ruin/powered) +"AQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor/shutters{ + id = "rd1"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "AR" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -1013,6 +1180,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/royalblue, /area/ruin/powered) +"DK" = ( +/obj/machinery/door/poddoor/ert{ + id = "a"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "DU" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 1 @@ -1025,7 +1199,8 @@ "DW" = ( /obj/machinery/door/airlock/vault, /obj/machinery/door/poddoor{ - id = "medical_lock_medlock" + id = "medical_lock_medlock"; + dir = 4 }, /obj/effect/turf_decal/corner/opaque/black{ dir = 1 @@ -1140,11 +1315,12 @@ /turf/open/floor/plasteel/dark, /area/ruin/powered) "FQ" = ( -/obj/machinery/door/poddoor/preopen, -/obj/machinery/light/small{ - brightness = 3; +/obj/machinery/door/poddoor/preopen{ dir = 8 }, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, /obj/structure/sign/poster/retro/nanotrasen_logo_70s{ pixel_x = -32 }, @@ -1165,7 +1341,9 @@ /turf/open/floor/plasteel, /area/ruin/powered) "Gf" = ( -/obj/machinery/door/poddoor/preopen, +/obj/machinery/door/poddoor/preopen{ + dir = 8 + }, /turf/open/floor/plating/airless, /area/ruin/powered) "Gx" = ( @@ -1224,7 +1402,8 @@ /area/ruin/powered) "Hf" = ( /obj/machinery/door/poddoor{ - id = "medical_lock_medlock" + id = "medical_lock_medlock"; + dir = 8 }, /obj/effect/turf_decal/industrial/warning/cee{ dir = 1 @@ -1246,7 +1425,8 @@ /area/ruin/powered) "Ib" = ( /obj/machinery/door/poddoor/shutters{ - id = "medical_lock_lobby" + id = "medical_lock_lobby"; + dir = 8 }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -1272,9 +1452,6 @@ /turf/open/floor/vault, /area/ruin/powered) "IH" = ( -/obj/machinery/door/poddoor{ - id = "medical_lock_medlock" - }, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, @@ -1282,6 +1459,10 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "medical_lock_medlock"; + dir = 8 + }, /turf/open/floor/plasteel/white, /area/ruin/powered) "IM" = ( @@ -1503,10 +1684,20 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ruin/powered) +"Mb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor/shutters{ + id = "rd2"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/powered) "Mk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters{ - id = "celock" + id = "celock"; + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -1519,6 +1710,20 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered) +"Mx" = ( +/obj/machinery/door/poddoor/preopen{ + dir = 4 + }, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/obj/structure/sign/poster/retro/nanotrasen_logo_70s{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault, +/area/ruin/powered) "ML" = ( /obj/machinery/door/poddoor/preopen, /obj/structure/closet/crate, @@ -1541,7 +1746,9 @@ /turf/open/floor/engine, /area/ruin/powered) "NM" = ( -/obj/machinery/door/poddoor, +/obj/machinery/door/poddoor{ + dir = 8 + }, /turf/open/floor/plasteel/airless, /area/ruin/powered) "NU" = ( @@ -1606,7 +1813,9 @@ /turf/open/floor/vault, /area/ruin/powered) "PC" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, @@ -1664,10 +1873,10 @@ /turf/open/floor/plating, /area/ruin/powered) "Rs" = ( -/obj/machinery/light/small{ +/obj/machinery/light/small/directional/east, +/obj/machinery/door/poddoor/preopen{ dir = 4 }, -/obj/machinery/door/poddoor/preopen, /obj/structure/sign/poster/retro/nanotrasen_logo_70s{ pixel_x = 32 }, @@ -1713,6 +1922,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/powered) +"Tf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "rd2"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ruin/powered) "Tr" = ( /obj/machinery/computer/crew{ dir = 1 @@ -1841,7 +2059,8 @@ /obj/item/shard, /obj/effect/gibspawner/human, /obj/machinery/door/poddoor/shutters/preopen{ - id = "rd3" + id = "rd3"; + dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -1916,10 +2135,12 @@ "XC" = ( /obj/machinery/door/airlock/command/glass{ id_tag = list(103); - name = "Captain's Office" + name = "Captain's Office"; + dir = 4 }, /obj/machinery/door/poddoor/shutters{ - id = "captain_lock" + id = "captain_lock"; + dir = 4 }, /turf/open/floor/carpet/blue, /area/ruin/powered) @@ -2141,7 +2362,7 @@ FI FI FI EH -Ib +le fq fq Ib @@ -2555,7 +2776,7 @@ Dp Vj EH An -yC +DK An EH EH @@ -2596,7 +2817,7 @@ Vj If If Vj -vb +xx An If If @@ -2625,7 +2846,7 @@ EH Vj EH Vj -Mk +hi dS Mk dj @@ -2637,7 +2858,7 @@ If An An An -YM +kT An An An @@ -2677,10 +2898,10 @@ Vj If An ML -FQ +Mx xf FQ -ML +pI An If Vj @@ -2712,8 +2933,8 @@ dV dV dV EH -lR -Hx +iR +qU Vj An An @@ -2725,8 +2946,8 @@ hC An An An -lR -Hx +iR +qU EH TB dv @@ -2794,8 +3015,8 @@ dV dV Xc EH -lR -Hx +tF +qU An Vj An @@ -2807,8 +3028,8 @@ hC An Vj An -Hx -lR +qU +iR EH TB TB @@ -2842,7 +3063,7 @@ If An it qm -yQ +sn Rs Rw An @@ -2883,7 +3104,7 @@ If An An An -YM +kT An An An @@ -2924,7 +3145,7 @@ Vj If If Vj -vb +xx An If If @@ -2939,7 +3160,7 @@ XC EH Vj Vj -eD +jx EH FI FI @@ -2965,7 +3186,7 @@ Vk EH Vj An -yC +DK Vj Vj EH @@ -3158,7 +3379,7 @@ Vj Vj EH EH -eD +bd Vj EH wx @@ -3181,7 +3402,7 @@ EH Vj Vj EH -eD +eJ EH EH WU @@ -3246,18 +3467,18 @@ WU Vj If Vj -gg -gg +AQ +AQ qs -gg -uq +cl +gk LI LI IV nc Wl rO -Ea +gL gP EH Dp @@ -3410,19 +3631,19 @@ Vj Dp If EH -Zt -Zt +Mb +Tf zn -Zt -Zt +Mb +AI LI LI LI gk -BO +ix cc -BO -BO +ix +ix EH FI FI @@ -3446,7 +3667,7 @@ FI Vj Dp EH -po +oN EH Dp If diff --git a/_maps/RandomRuins/SpaceRuins/nuclear_dump.dmm b/_maps/RandomRuins/SpaceRuins/nuclear_dump.dmm index 17b45ffb729d..662ff3567d3d 100644 --- a/_maps/RandomRuins/SpaceRuins/nuclear_dump.dmm +++ b/_maps/RandomRuins/SpaceRuins/nuclear_dump.dmm @@ -79,15 +79,11 @@ /turf/closed/wall/r_wall, /area/ruin/space/has_grav/nucleardump/supermatter) "kB" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/nucleardump) "kN" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/nucleardump) "kP" = ( @@ -168,6 +164,12 @@ /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, @@ -223,7 +225,9 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/nucleardump) "uo" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, @@ -254,16 +258,14 @@ /obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 4 }, -/obj/machinery/light/small/broken, +/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{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/nucleardump) "yw" = ( @@ -300,15 +302,11 @@ /area/ruin/space/has_grav/nucleardump) "Bl" = ( /mob/living/simple_animal/hostile/hivebot/range, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/nucleardump) "BW" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/vault, /area/ruin/space/has_grav/nucleardump/supermatter) "BX" = ( @@ -431,9 +429,7 @@ /turf/open/floor/engine/air, /area/ruin/space/has_grav/nucleardump/supermatter) "Oq" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/nucleardump) "OF" = ( @@ -472,13 +468,11 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/nucleardump) "Ra" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/engine/air, /area/ruin/space/has_grav/nucleardump/supermatter) "Ry" = ( -/obj/machinery/light/built, +/obj/machinery/light/built/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/nucleardump) "RC" = ( @@ -528,9 +522,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/engine/air, /area/ruin/space/has_grav/nucleardump/supermatter) "VE" = ( @@ -538,7 +530,9 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/nucleardump) "VK" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, @@ -984,7 +978,7 @@ fi Vb fi fi -Zh +pf fi fi fi diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm index c3f5e9c75943..321daa633782 100644 --- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm @@ -184,37 +184,6 @@ /obj/effect/decal/cleanable/xenoblood/xgibs/up, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"aC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/alien/weeds/node, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) -"aD" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/alien/weeds, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) -"aE" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/alien/weeds, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) -"aF" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/alien/weeds, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) "aG" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation) @@ -322,22 +291,6 @@ /obj/item/bodypart/chest, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"aV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/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/comm) "aW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -345,24 +298,6 @@ /obj/item/megaphone, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/comm) -"aX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/comm) "aY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -418,24 +353,6 @@ /mob/living/simple_animal/hostile/alien, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"bj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/comm) "bk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/blue{ @@ -729,28 +646,12 @@ /obj/structure/alien/weeds, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/ancientstation/deltaai) -"bS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "bT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"bU" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/shreds, -/obj/structure/alien/weeds/node, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) "bV" = ( /obj/structure/alien/weeds, /obj/effect/decal/cleanable/blood/gibs/old, @@ -823,26 +724,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/mining) -"cg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/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) -"ch" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/alien/weeds, -/obj/effect/gibspawner/human, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) "ci" = ( /obj/structure/window/reinforced{ dir = 4 @@ -863,14 +744,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/comm) -"ck" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/alien/weeds, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) "cl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -1003,15 +876,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/mining) -"cA" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/alien/weeds, -/mob/living/simple_animal/hostile/alien, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/ancientstation/deltaai) "cB" = ( /obj/effect/decal/cleanable/robot_debris, /obj/structure/alien/weeds, @@ -1026,31 +890,6 @@ "cD" = ( /turf/closed/mineral/random, /area/ruin/unpowered) -"cE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"cF" = ( -/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/brown{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/mining) "cG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1151,23 +990,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"cW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"cX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "cY" = ( /obj/structure/alien/weeds, /mob/living/simple_animal/hostile/alien/queen, @@ -1308,12 +1130,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"dn" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) "do" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/green{ @@ -1343,41 +1159,12 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) -"ds" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "dt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"du" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "dv" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/sec) @@ -1391,23 +1178,6 @@ "dy" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/rnd) -"dz" = ( -/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{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/mining) "dA" = ( /obj/item/stack/rods, /turf/open/floor/plating/airless, @@ -1419,17 +1189,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/mining) -"dC" = ( -/turf/closed/mineral/random, -/area/ruin/unpowered) -"dD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/mining) "dE" = ( /obj/machinery/mineral/processing_unit_console, /turf/closed/wall, @@ -1438,22 +1197,6 @@ /obj/structure/lattice, /turf/template_noop, /area/space/nearstation) -"dG" = ( -/obj/machinery/door/airlock/command{ - name = "Beta Station Access" - }, -/obj/machinery/door/poddoor{ - 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) "dH" = ( /obj/effect/decal/cleanable/oil, /turf/closed/wall/r_wall, @@ -1511,21 +1254,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"dO" = ( -/obj/machinery/door/airlock/highsecurity, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood/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 = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltaai) "dP" = ( /obj/effect/spawner/structure/window/hollow/reinforced, /turf/open/floor/plating, @@ -1647,40 +1375,9 @@ "ee" = ( /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) -"ef" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/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/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) "eg" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/betacorridor) -"eh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation) "ei" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/machinery/door/firedoor/border_only{ @@ -1826,14 +1523,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"eA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) "eB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1843,14 +1532,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"eC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/rnd) "eD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/purple{ @@ -1862,13 +1543,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) -"eE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/rnd) "eF" = ( /obj/machinery/computer/rdconsole/core, /obj/effect/decal/cleanable/dirt, @@ -1901,21 +1575,7 @@ "eJ" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/sec) -"eK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - 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/engi) -"eL" = ( +"eL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -1931,23 +1591,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"eN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "eO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2005,17 +1648,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"eU" = ( -/obj/machinery/door/airlock/command, -/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/betacorridor) "eV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -2030,31 +1662,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"eX" = ( -/obj/machinery/door/airlock/command{ - name = "Beta Station Access" - }, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/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 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "eY" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/rnd) @@ -2137,52 +1744,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"fi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) -"fj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/turf_decal/corner/opaque/green, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) -"fk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"fl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Delta Station Access" - }, -/obj/machinery/door/poddoor{ - 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) "fm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2191,22 +1752,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"fn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/command{ - name = "Charlie Station Access"; - req_access_txt = "200" - }, -/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) "fo" = ( /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) @@ -2229,18 +1774,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"fs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "ft" = ( /obj/item/kirbyplants{ icon_state = "plant-25" @@ -2266,22 +1799,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) -"fw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/rnd) -"fx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "fy" = ( /obj/machinery/mineral/processing_unit{ dir = 1 @@ -2340,30 +1857,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"fG" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/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) -"fH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "fI" = ( /obj/machinery/power/apc{ name = "Beta Station Mining Equipment APC "; @@ -2380,18 +1873,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/mining) -"fJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/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) "fK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2454,17 +1935,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation) -"fS" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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) "fT" = ( /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 @@ -2482,16 +1952,6 @@ "fV" = ( /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"fW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/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) "fX" = ( /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 @@ -2549,24 +2009,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"gd" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/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 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "ge" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2591,58 +2033,9 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/mining) -"gh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/spawner/lootdrop/minor/beret_or_rabbitears, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation) "gi" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/medbay) -"gj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/green{ - 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) -"gk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/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) -"gl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "gm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2667,21 +2060,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"go" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/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) "gp" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -2727,22 +2105,7 @@ "gu" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/medbay) -"gv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"gw" = ( +"gw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2773,39 +2136,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"gy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command, -/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 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) -"gz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/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) "gA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -2844,38 +2174,9 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"gD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "gE" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) -"gF" = ( -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/broken{ - dir = 8; - icon_state = "bulb-broken" - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/ancientstation/medbay) "gG" = ( /obj/machinery/rnd/production/protolathe, /obj/effect/decal/cleanable/dirt, @@ -2965,30 +2266,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) -"gR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/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/rnd) -"gS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "gT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3174,20 +2451,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"ho" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics" - }, -/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) "hp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red{ @@ -3244,19 +2507,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"hu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/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) "hv" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -3330,24 +2580,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"hB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/mob/living/simple_animal/hostile/alien/drone, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"hC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/rnd) "hD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -3419,34 +2651,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"hI" = ( -/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/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) -"hJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/betacorridor) "hK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/rad_collector, @@ -3469,22 +2673,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"hO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "hP" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/welding{ @@ -3561,19 +2749,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"hW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "hX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -3724,17 +2899,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"in" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/broken_bottle, -/obj/item/soap/nanotrasen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) "io" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -3813,27 +2977,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"iu" = ( -/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 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "iv" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3882,30 +3025,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/betacorridor) -"iz" = ( -/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/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "iA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -3929,21 +3048,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) -"iC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) "iD" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -3984,21 +3088,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"iH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) "iI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -4068,22 +3157,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"iN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light/small{ - 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) "iO" = ( /obj/machinery/hydroponics/soil, /obj/structure/cable{ @@ -4159,31 +3232,8 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) -"iU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/green, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 4 - }, -/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 = "0-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) -"iV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"iV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/border_only, @@ -4218,18 +3268,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/kitchen) -"jb" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - 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) "jc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4239,14 +3277,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"jd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "je" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4271,17 +3301,6 @@ /obj/machinery/recharge_station, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"jh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "ji" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4344,22 +3363,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"jp" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/machinery/door/poddoor{ - 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/engi) "jq" = ( /obj/structure/table, /obj/item/tank/internals/oxygen, @@ -4378,20 +3381,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"jr" = ( -/obj/machinery/door/airlock/security, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/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/sec) "js" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red{ @@ -4435,52 +3424,9 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"jx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/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) -"jy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"jz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "jA" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/ancientstation/proto) -"jB" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/paper/fluff/ruins/oldstation, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "jC" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/betastorage) @@ -4514,12 +3460,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"jH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "jI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4574,20 +3514,6 @@ /obj/item/solar_assembly, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) -"jN" = ( -/obj/machinery/door/poddoor{ - id = "proto" - }, -/obj/machinery/door/window/eastleft, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"jO" = ( -/obj/machinery/light/small/broken{ - dir = 1; - icon_state = "bulb-broken" - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/atmo) "jP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4618,39 +3544,6 @@ /obj/structure/sign/poster/solgov/nanomichi_ad, /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/medbay) -"jV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - 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) -"jW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/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) "jX" = ( /turf/open/floor/plating/airless{ icon_state = "platingdmg2" @@ -4684,25 +3577,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"kb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - 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) "kc" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, @@ -4712,27 +3586,6 @@ /obj/item/clothing/suit/space/hardsuit/ancient, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) -"ke" = ( -/obj/machinery/door/poddoor{ - id = "proto" - }, -/obj/machinery/door/window/westright, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"kf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4764,23 +3617,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) -"kj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"kk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kl" = ( /obj/structure/table/reinforced, /obj/machinery/the_singularitygen, @@ -4862,23 +3698,6 @@ /obj/structure/closet/crate/bin, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/comm) -"kt" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper/fluff/ruins/oldstation/protosuit, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"ku" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "proto" - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning{ @@ -4897,23 +3716,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) -"ky" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/poddoor{ - id = "proto" - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"kz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/paper/fluff/ruins/oldstation/protosing, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kA" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible, /turf/open/floor/plasteel, @@ -4981,44 +3783,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"kI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/engi) -"kJ" = ( -/obj/effect/spawner/structure/window/hollow/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/engi) "kK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -5046,17 +3810,6 @@ /obj/structure/sign/poster/official/work_for_a_future, /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation) -"kN" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/flashlight/glowstick, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "kO" = ( /obj/effect/turf_decal/industrial/warning{ dir = 9 @@ -5085,14 +3838,6 @@ "kQ" = ( /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/atmo) -"kR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper/fluff/ruins/oldstation/protohealth, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "kS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair, @@ -5121,34 +3866,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"kU" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/paper/fluff/ruins/oldstation/protogun, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"kV" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation) "kW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ @@ -5166,20 +3883,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"kY" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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/plating, -/area/ruin/space/has_grav/ancientstation) "kZ" = ( /obj/structure/table/reinforced, /obj/item/healthanalyzer{ @@ -5276,25 +3979,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/proto) -"lk" = ( -/obj/effect/spawner/structure/window/hollow/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/sec) "ll" = ( /turf/closed/mineral/uranium, /area/ruin/unpowered) @@ -5422,18 +4106,6 @@ "lA" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"lB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"lC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "lD" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5482,29 +4154,6 @@ /obj/item/clothing/head/helmet/space/nasavoid/old, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"lK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/engi) -"lL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/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) "lM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -5520,20 +4169,6 @@ /obj/structure/girder, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"lO" = ( -/obj/machinery/door/poddoor{ - id = "proto" - }, -/obj/machinery/door/window/eastright, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) -"lP" = ( -/obj/machinery/door/poddoor{ - id = "proto" - }, -/obj/machinery/door/window/westleft, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation/proto) "lQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -5552,33 +4187,6 @@ /obj/item/solar_assembly, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) -"lR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"lS" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/ancientstation/medbay) "lT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5625,20 +4233,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"lY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch, -/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) "lZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5676,14 +4270,6 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"me" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "mf" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/airless, @@ -5714,19 +4300,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"mi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - 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) "mj" = ( /obj/structure/grille, /turf/open/floor/plating/airless, @@ -5747,12 +4320,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"mm" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) "mn" = ( /obj/effect/turf_decal/corner/opaque/white{ dir = 4 @@ -5797,15 +4364,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"ms" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/xenoblood/xgibs/up, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "mt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -5843,28 +4401,6 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/ancientstation/medbay) -"mw" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Bay" - }, -/obj/effect/decal/cleanable/dirt, -/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" - }, -/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/medbay) "mx" = ( /obj/structure/grille/broken, /turf/open/floor/plating/airless, @@ -5966,30 +4502,6 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/ancientstation/medbay) -"mJ" = ( -/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{ - dir = 8; - 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) "mK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6193,26 +4705,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"nh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/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) -"nj" = ( -/turf/closed/mineral/plasma, -/area/ruin/unpowered) "nk" = ( /turf/closed/mineral/plasma, /area/ruin/space/has_grav/ancientstation/atmo) @@ -6242,33 +4734,6 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"nn" = ( -/obj/machinery/light/small, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"no" = ( -/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{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-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) "np" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, @@ -6292,14 +4757,6 @@ /obj/item/stack/rods, /turf/template_noop, /area/space/nearstation) -"ns" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/old, -/obj/structure/closet, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "nt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -6324,40 +4781,7 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"nv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"nw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) -"nx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) -"ny" = ( +"ny" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 4 @@ -6370,27 +4794,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"nz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/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) "nA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/trinary/mixer/airmix{ @@ -6413,47 +4816,10 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"nC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/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" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/engi) "nD" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"nE" = ( -/turf/closed/wall/rust, -/area/ruin/space/has_grav/ancientstation/betastorage) -"nF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 1; - icon_state = "tracks" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/mob/living/simple_animal/hostile/alien, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "nG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -6518,18 +4884,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"nM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/engi) "nN" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/hostile/alien/drone, @@ -6574,39 +4928,11 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) -"nR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - name = "Dining Area" - }, -/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) "nS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"nT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "nU" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/mineral/uranium{ @@ -6629,17 +4955,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/hydroponics) -"nW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/old, -/obj/structure/closet, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "nX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6663,20 +4978,6 @@ /mob/living/simple_animal/hostile/carp, /turf/template_noop, /area/space/nearstation) -"oa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "ob" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6782,15 +5083,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) -"ok" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "ol" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6801,15 +5093,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"om" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) "on" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal{ @@ -6862,14 +5145,6 @@ icon_state = "platingdmg1" }, /area/ruin/space/has_grav/ancientstation/betastorage) -"os" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "ot" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -6897,15 +5172,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/atmo) -"ow" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) "ox" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -6914,21 +5180,6 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) -"oy" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemical Storage"; - req_access_txt = "200" - }, -/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 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) "oz" = ( /obj/item/stack/rods, /obj/machinery/door/firedoor/border_only/closed{ @@ -7015,28 +5266,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"oK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"oL" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Station Atmospherics" - }, -/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) "oM" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -7137,10 +5366,6 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"oW" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) "oX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7200,29 +5425,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"pc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Delta Station Access" - }, -/obj/machinery/door/poddoor{ - id = "ancient" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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) "pd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/glass, @@ -7506,27 +5708,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"pF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - 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) "pG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7537,8 +5718,7 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"pH" = ( -/obj/machinery/door/airlock/science, +"pI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -7550,20 +5730,13 @@ /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) -"pI" = ( +"pJ" = ( /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 }, @@ -7572,94 +5745,32 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"pJ" = ( +"pL" = ( /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" + icon_state = "2-8" }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"pK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +"pM" = ( /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) -"pL" = ( -/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 = "2-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"pM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/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) -"pN" = ( -/obj/machinery/door/airlock/science, -/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/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) -"pO" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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/deltacorridor) "pP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/visible{ @@ -7674,28 +5785,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"pQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Station Atmospherics" - }, -/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/atmo) "pR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -7719,38 +5808,6 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/atmo) -"pT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) -"pU" = ( -/obj/machinery/door/airlock/engineering{ - name = "Backup Generator Room" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/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/engi) "pV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7771,35 +5828,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"pX" = ( -/obj/machinery/door/airlock/science, -/obj/effect/decal/cleanable/dirt, -/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/deltacorridor) -"pY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/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) "pZ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance_hatch, @@ -8013,21 +6041,6 @@ /obj/structure/grille/broken, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) -"qw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/shard{ - icon_state = "small" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light/broken{ - dir = 8; - icon_state = "tube-broken" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/betacorridor) "qx" = ( /obj/structure/girder, /turf/open/floor/plating/airless, @@ -8036,19 +6049,6 @@ /obj/structure/grille, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) -"qz" = ( -/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{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/ruin/space/has_grav/ancientstation/atmo) "qA" = ( /obj/effect/decal/cleanable/glass, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8082,19 +6082,6 @@ }, /turf/closed/wall, /area/ruin/space/has_grav/ancientstation/atmo) -"qG" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/glass, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/space/has_grav/ancientstation/betacorridor) "qH" = ( /obj/item/stack/rods, /turf/open/floor/plating/airless{ @@ -8151,23 +6138,6 @@ /mob/living/simple_animal/hostile/alien, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"qP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/ancientstation/betastorage) "qQ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8214,7 +6184,21 @@ /mob/living/simple_animal/hostile/alien, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) -"qW" = ( +"ra" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 1 + }, +/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/atmo) +"rd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 @@ -8222,12 +6206,73 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) +"rv" = ( +/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 = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"rB" = ( +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"rE" = ( +/obj/machinery/door/airlock/science{ + pixel_y = 0; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/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) +"sa" = ( +/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/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/engi) +"sk" = ( +/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) "sy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8251,43 +6296,127 @@ /obj/structure/particle_accelerator/particle_emitter/center, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"tn" = ( +"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/structure/chair, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/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) +"tn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair, +/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" = ( +"to" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ +/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 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 8 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) +/area/ruin/space/has_grav/ancientstation/engi) +"tL" = ( +/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/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) "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) -"up" = ( -/obj/machinery/light/small{ - dir = 8 +"ud" = ( +/obj/item/shard{ + icon_state = "medium" }, -/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) +/obj/effect/decal/cleanable/glass, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating/airless{ + 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" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltaai) "uT" = ( /turf/open/floor/engine/n2, /area/ruin/space/has_grav/ancientstation/atmo) @@ -8296,6 +6425,20 @@ /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" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/engi) "vu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -8311,6 +6454,80 @@ }, /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" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/kitchen) +"vO" = ( +/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) +"vP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/corner/opaque/green, +/obj/effect/turf_decal/corner/opaque/green{ + dir = 4 + }, +/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 = "0-8" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"wc" = ( +/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, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"wx" = ( +/obj/machinery/door/window/eastleft, +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) "wz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -8323,269 +6540,306 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"wJ" = ( +/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) "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) -"xl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation) -"yk" = ( +"wM" = ( +/obj/machinery/door/airlock/science{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/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) -"zm" = ( -/obj/machinery/door/window/brigdoor{ - dir = 8; - icon_state = "rightsecure"; - name = "Plasma Canister Storage" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/atmo) -"zG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/bin, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) -"zH" = ( +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"wX" = ( +/obj/machinery/door/airlock/science{ + dir = 4 + }, /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 = 6 + 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/engi) -"Aa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"xc" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"Ab" = ( +"xk" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/effect/turf_decal/corner/opaque/yellow{ +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) -"AF" = ( -/obj/effect/spawner/lootdrop/maintenance, +/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) -"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, +"xl" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, /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) -"Cr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"xG" = ( +/obj/machinery/door/airlock/engineering{ + name = "Backup Generator Room"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/effect/turf_decal/corner/opaque/white{ +/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{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/kitchen) -"Dm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) -"Dp" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/ancientstation/medbay) +"xP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 8 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) -"Dw" = ( +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"ya" = ( +/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) +"yk" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation) +"yx" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) -"DB" = ( +/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/atmospherics/components/unary/vent_scrubber/on{ +/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) -"DJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) -"DT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +"yM" = ( +/obj/machinery/door/airlock/science{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/industrial/warning{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) -"EP" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/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 +/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/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/broken/directional/west{ + icon_state = "tube-broken" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/kitchen) -"EV" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, +/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/atmo) -"FH" = ( -/obj/structure/window/reinforced{ - dir = 4 +/area/ruin/space/has_grav/ancientstation) +"zm" = ( +/obj/machinery/door/window/brigdoor{ + dir = 8; + icon_state = "rightsecure"; + name = "Plasma Canister Storage" }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - icon_state = "connector_map-3" +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/ancientstation/atmo) -"GG" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"GP" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) -"Hn" = ( -/turf/open/floor/engine/o2, /area/ruin/space/has_grav/ancientstation/atmo) -"HA" = ( +"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 = 8 + dir = 1 }, -/obj/effect/turf_decal/corner/opaque/yellow, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/atmo) -"It" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 }, -/obj/structure/mirror{ - name = "dusty mirror"; - pixel_x = 26 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/ancientstation) -"Iw" = ( +/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/all_access{ - dir = 8; - pixel_x = 25 - }, +/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) -"IM" = ( +"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, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) -"IV" = ( +/area/ruin/space/has_grav/ancientstation) +"zF" = ( /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/effect/decal/cleanable/blood/tracks{ - dir = 4; - icon_state = "tracks" - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"Jo" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/turf_decal/industrial/warning{ +/area/ruin/space/has_grav/ancientstation) +"zG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) +"zH" = ( +/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/engi) +"Aa" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/showcase/machinery/oldpod, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) -"JT" = ( -/obj/effect/decal/cleanable/dirt, +"Ab" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"Ku" = ( +/area/ruin/space/has_grav/ancientstation/atmo) +"Ae" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/particle_accelerator/control_box, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"KF" = ( +/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/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Station Atmospherics"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"Ax" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -8593,39 +6847,153 @@ dir = 8; icon_state = "inje_map-2" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/engine/n2, /area/ruin/space/has_grav/ancientstation/atmo) -"Lh" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine/o2, -/area/ruin/space/has_grav/ancientstation/atmo) -"Ll" = ( +"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 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/particle_accelerator/particle_emitter/right, +/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/betacorridor) +"AQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"Ln" = ( +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/yellow{ +/obj/machinery/airalarm/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/betacorridor) +"Bl" = ( +/obj/machinery/light/small/broken/directional/north{ + icon_state = "bulb-broken" + }, +/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/atmospherics/pipe/simple/scrubbers/visible, +/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) +"Bs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, /area/ruin/space/has_grav/ancientstation/atmo) -"LO" = ( +"BH" = ( +/obj/structure/particle_accelerator/particle_emitter/left, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Cr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/kitchen) +"Cu" = ( +/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) +"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/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass{ + name = "Dining Area"; + dir = 4 }, -/obj/machinery/light{ +/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" = ( +/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) +"Dm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/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 }, @@ -8637,22 +7005,114 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"LY" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - volume_rate = 200 +"Dp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 8 }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/ancientstation/atmo) -"Mt" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end, -/turf/open/floor/plating, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"MG" = ( +"Dw" = ( +/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/sec) +"DB" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"DJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) +"DO" = ( +/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) +"DT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/warning{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"DX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"EB" = ( +/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/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/broken/directional/west{ + icon_state = "bulb-broken" + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + 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/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"EP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -8661,109 +7121,1043 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/kitchen) -"NQ" = ( +"EV" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/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 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_n2_out"; - internal_pressure_bound = 5066; - name = "Nitrogen Out" +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + icon_state = "connector_map-3" }, -/turf/open/floor/engine/o2, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/ancientstation/atmo) -"OA" = ( +"FJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, +/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{ + 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, +/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/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/engi) +"Gs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + dir = 8 + }, +/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) +"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{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"Hn" = ( +/turf/open/floor/engine/o2, +/area/ruin/space/has_grav/ancientstation/atmo) +"HA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 + }, +/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{ + 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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/kitchen) +"It" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + name = "dusty mirror"; + pixel_x = 26 + }, +/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, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"IV" = ( +/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/effect/decal/cleanable/blood/tracks{ + dir = 4; + icon_state = "tracks" + }, +/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 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/showcase/machinery/oldpod, +/obj/effect/decal/cleanable/dirt, +/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 + }, +/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{ + 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 + }, +/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" = ( +/obj/machinery/door/airlock/command{ + name = "Beta Station Access" + }, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 4 + }, +/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 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"Lg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/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 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation) +"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, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Ln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/atmo) +"LF" = ( +/obj/effect/decal/cleanable/dirt, +/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/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 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) +"LY" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + volume_rate = 200 + }, +/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 + }, +/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"; + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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) +"Mt" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/end, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/atmo) +"ME" = ( +/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/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"MG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/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{ + 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{ + 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/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, +/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" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/corner/opaque/green{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/green{ + 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/effect/decal/cleanable/dirt, +/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) +"NQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1442; + id_tag = "syndie_lavaland_n2_out"; + internal_pressure_bound = 5066; + name = "Nitrogen Out" + }, +/turf/open/floor/engine/o2, +/area/ruin/space/has_grav/ancientstation/atmo) +"Om" = ( +/obj/machinery/door/window/eastright, +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 + }, +/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) +"OA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/rnd) -"OC" = ( +/area/ruin/space/has_grav/ancientstation/rnd) +"OC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation) +"OE" = ( +/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 + }, +/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/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/kitchen) +"OU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"OV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"Pg" = ( +/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{ + id = "ancient"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"Pk" = ( +/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/plating, +/area/ruin/space/has_grav/ancientstation) +"Pn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"Po" = ( +/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) +"Px" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/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, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/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" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/restroom{ + pixel_y = 32 + }, +/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" = ( +/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) +"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{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/mining) +"Qp" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/westright, +/obj/machinery/shower{ + dir = 8 + }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation) -"OU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +"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/hydroponics) -"OV" = ( +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"QH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) -"Pn" = ( +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"QM" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -26 +/obj/effect/decal/cleanable/dirt, +/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 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/sec) -"Po" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/area/ruin/space/has_grav/ancientstation/hydroponics) +"QT" = ( +/obj/machinery/airalarm/directional/east, /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) -"Px" = ( +"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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/engi) +"Ra" = ( +/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) +"Re" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"PC" = ( +"Ri" = ( /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/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/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/comm) -"PV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-25" +/area/ruin/space/has_grav/ancientstation) +"Rn" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Station Atmospherics"; + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/departments/restroom{ - pixel_y = 32 +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation) -"Qp" = ( +/area/ruin/space/has_grav/ancientstation/atmo) +"Rx" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/westright, -/obj/machinery/shower{ +/obj/structure/chair{ + dir = 1 + }, +/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/white, -/area/ruin/space/has_grav/ancientstation) -"QQ" = ( +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/comm) +"RL" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/ancientstation/hydroponics) -"Re" = ( +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"RO" = ( /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) @@ -8790,6 +8184,16 @@ /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, @@ -8798,6 +8202,16 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) +"Sp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) "Su" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch{ @@ -8836,12 +8250,42 @@ /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" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/command{ + name = "Charlie Station Access"; + req_access_txt = "200"; + dir = 4 + }, +/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) "TL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer{ @@ -8854,6 +8298,38 @@ }, /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/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) +"TZ" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Bay"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/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" + }, +/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/medbay) "Ug" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -8864,6 +8340,43 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) +"UL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/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" + }, +/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) "UV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8879,27 +8392,75 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) -"Ve" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) -"Vm" = ( +"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) +"VH" = ( +/obj/structure/sign/poster/retro/nanotrasen_logo_80s, +/turf/closed/wall, +/area/ruin/space/has_grav/ancientstation/comm) +"VI" = ( +/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" = ( +/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/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" + }, +/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{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/atmo) -"VH" = ( -/obj/structure/sign/poster/retro/nanotrasen_logo_80s, -/turf/closed/wall, -/area/ruin/space/has_grav/ancientstation/comm) "Wp" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -8907,6 +8468,22 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/atmo) +"WG" = ( +/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/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/sec) +"WP" = ( +/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) "WT" = ( /obj/structure/window/reinforced{ dir = 8 @@ -8924,6 +8501,52 @@ }, /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" + }, +/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) +"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, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation) "Xh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8935,16 +8558,67 @@ }, /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) "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" = ( +/obj/effect/decal/cleanable/dirt, +/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/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, +/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" = ( +/obj/machinery/door/airlock/science{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/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) "Yh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8978,6 +8652,60 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) +"YB" = ( +/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/door/firedoor/border_only{ + dir = 4 + }, +/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, +/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, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) +"YR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/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" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/deltacorridor) +"Zd" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "proto"; + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/ancientstation/proto) "Ze" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine/n2, @@ -8989,6 +8717,78 @@ /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 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) +"Zs" = ( +/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/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{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + id = "ancient"; + dir = 8 + }, +/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{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/ancientstation/rnd) (1,1,1) = {" aa @@ -9067,8 +8867,8 @@ gK aa aa cD -br -br +lh +lh cD oC kQ @@ -9106,27 +8906,27 @@ ee et ee gi -gF -lS +EH +xL mq mF -mJ +Im gu gK aa cD cD lh -fU -br +lh +lh nk nl nt kK Ln ny -pT -LO +ra +Dn nB nK EV @@ -9149,7 +8949,7 @@ aa aa aa cD -br +fU dX ec ez @@ -9163,15 +8963,15 @@ mN mQ sY dF -dC -dC -dC -nj -nj +cD +cD +cD +lh +lh nk nm pP -pY +Wm qe Ab nA @@ -9201,7 +9001,7 @@ de dx ec eg -eA +GJ eT gu hm @@ -9215,11 +9015,11 @@ gK dF gK gK -dw -dw +lh +lh nk -oL -pQ +Rn +Ae mH mH kX @@ -9255,7 +9055,7 @@ gt gi jU mg -mw +TZ mg gu mW @@ -9267,7 +9067,7 @@ qy qD qD kQ -jO +Bl pR gf mH @@ -9311,7 +9111,7 @@ nq nG ox oY -qw +yZ qA qE qH @@ -9320,11 +9120,11 @@ oM pS pf kQ -qz +Zs NQ zm WT -KF +Ax kQ cD lh @@ -9350,8 +9150,8 @@ de ec eT gx -hJ -jh +Mg +PQ eT eT mM @@ -9362,7 +9162,7 @@ oA pq ee qB -qG +ud qJ oz pd @@ -9395,10 +9195,10 @@ aa cD az fU -cD +fU ec -eU -gy +AP +tg ec jC jQ @@ -9406,7 +9206,7 @@ jQ jQ jQ jQ -qP +MR jC jC qx @@ -9420,7 +9220,7 @@ kQ kQ Bs Lh -Vm +Wn pv Ze mH @@ -9442,9 +9242,9 @@ aa aa aa aa -dw -dw -dw +lh +lh +lh ec eT gN @@ -9454,7 +9254,7 @@ jR md mS mX -nw +XF or oB qv @@ -9492,7 +9292,7 @@ aa aa aa aa -dC +cD gK eg eT @@ -9549,12 +9349,12 @@ hd eg jJ lz -mm +MT mT mf nD -ow -oW +MT +HV jQ dF dF @@ -9593,7 +9393,7 @@ dF aa gK eg -fi +EB hd eg jC @@ -9601,7 +9401,7 @@ lN jC jC nc -nE +jC jQ jC jQ @@ -9642,7 +9442,7 @@ dF aa gK eg -dn +KL hn eg gK @@ -9834,8 +9634,8 @@ aa gK bI cf -cF -dz +Qk +Bo fA ce eW @@ -10031,7 +9831,7 @@ aM cc cy cI -dD +QM ga dj eT @@ -10133,7 +9933,7 @@ fy gg ce eT -hI +Bi eg gK aa @@ -10141,7 +9941,7 @@ aa aa gK fB -jV +Gs fB gK aa @@ -10279,7 +10079,7 @@ aa aa gK eg -fi +EB hd ec gK @@ -10288,7 +10088,7 @@ eI eI fb fD -kb +Gq gV hk eI @@ -10334,13 +10134,13 @@ ec gK eI bv -eK +QV id ji kg mr mZ -kI +zq nO eI gK @@ -10444,7 +10244,7 @@ sy hv eI oS -nM +Li gH eI gK @@ -10530,13 +10330,13 @@ eg lJ ju en -eN -lK +Xo +vk el kH my nb -nC +sa nP oc ix @@ -10573,17 +10373,17 @@ aT aG aG aG -dG -eX +Qc +KQ aG eI eI dl dl eI -jp -kJ -jp +tK +Ig +tK gX eI eI @@ -10591,7 +10391,7 @@ dl eI eI iX -pU +xG eI aG aT @@ -10625,9 +10425,9 @@ aG fm fc gp -gv +to jF -fk +TW mt ij ne @@ -10636,8 +10436,8 @@ jF nd mt pu -fk -gv +TW +to gp jF px @@ -10679,9 +10479,9 @@ UV UV eP is -fH +Sh oJ -tz +Xg is UV UV @@ -10725,15 +10525,15 @@ cn cQ ey dP -ho +VI dP cQ ey -kV +Lg gI gY hR -nR +Da hR gI gI @@ -10764,19 +10564,19 @@ as as bl aP -aV +Rx aP -bj +UL ak ak dN fh cQ -ef +ME dQ dQ eQ -gj +Nf ey oO gI @@ -10784,15 +10584,15 @@ hr ht ht ht -nz +vK gI oX dS aG aT -nW +Vd gZ -kN +sk kD mz aT @@ -10818,7 +10618,7 @@ ba bk bs by -gl +Ji cn cR do @@ -10836,15 +10636,15 @@ tn iI iY cn -lC +xc aG -lR +ZV bN bN bN pi pk -ns +ND aG dw cD @@ -10878,7 +10678,7 @@ dp ey oO gI -hu +OF ht EP ly @@ -10923,7 +10723,7 @@ dp gE ep eR -fj +OW ey oO gY @@ -11021,11 +10821,11 @@ dp gE er mD -iC +Ov cQ oQ gY -nh +UP hV pM ht @@ -11074,7 +10874,7 @@ iO ey oQ gY -no +Xc ht MG ht @@ -11112,7 +10912,7 @@ aQ bm bM VH -bS +EY fQ cT dr @@ -11130,7 +10930,7 @@ tn iM ja cn -jH +MV aT ph bN @@ -11138,7 +10938,7 @@ bN bN bN bN -ns +ND aG gK aa @@ -11156,7 +10956,7 @@ as as fP aR -aX +OE aR bn ak @@ -11164,11 +10964,11 @@ ak dS dS ey -ds +De dR dQ mL -iU +vP ey oQ gY @@ -11176,7 +10976,7 @@ hy ly ly ly -iN +Ir gY oZ pV @@ -11184,7 +10984,7 @@ aG aT qU bN -jB +zB kF jP aG @@ -11215,15 +11015,15 @@ cq ey cQ dP -ho +VI dP cQ cQ -kY +Pk gI gI hR -nR +Da hR gY gY @@ -11253,11 +11053,11 @@ aa gK gK aT -gh +DO OC sC SP -eh +Py dg cq cq @@ -11267,15 +11067,15 @@ dt dt dt iV -fJ +WZ oT -up +Ii np mb mb ml Po -jb +HZ hN cq qb @@ -11311,19 +11111,19 @@ aG PV bN cV -du +zb bN -fx +zF bN jc Sn ld cq nu -me +Ex cq bN -om +QT cV pa bW @@ -11358,23 +11158,23 @@ aT aT aT bX -fl +Ri bX eJ eJ eJ dv fp -jr -lk -jr +Pg +ZO +Pg eJ eJ eJ eJ eJ hM -pc +Mr bX aG aG @@ -11408,21 +11208,21 @@ az cK cK bN -cW +Nz eJ gL hp -hO +rv hp js lm ha Pn -hW +rB hz -iz +tL eJ -cW +Nz pa bN aG @@ -11609,11 +11409,11 @@ gK eJ ex eV -fs +WG fO lv fO -iH +LI hX im eJ @@ -11955,7 +11755,7 @@ gK bD he lV -nn +vb bE gK dF @@ -11996,7 +11796,7 @@ gK bE Re cx -cX +xP bE gK gK @@ -12010,7 +11810,7 @@ gK dF gK bD -lB +Fn pE lw bE @@ -12044,7 +11844,7 @@ aa gK bE ct -fn +YB cb bE bE @@ -12052,7 +11852,7 @@ bD bD bD bD -lY +xk bE bE bE @@ -12060,7 +11860,7 @@ bE bE bE cb -pF +Ts cb bD gK @@ -12095,19 +11895,19 @@ gK bE ft fE -gz -gS -gD +RO +UM +WP hQ -jd +QH jv ma Re -jd +QH nH -ms -ok -gz +FT +QC +RO Re pE od @@ -12191,8 +11991,8 @@ ac gK gK bE -fG -gd +rE +FR eY eY eY @@ -12207,8 +12007,8 @@ dy eY dy dy -pH -fG +wM +yM jA jA jA @@ -12244,15 +12044,15 @@ Re ge eY di -eE -hC +FD +Jd dZ -gR +Wc eb hf zG hY -in +vO iD iP eY @@ -12260,9 +12060,9 @@ pI Re jA kd -kt +ya jA -kR +te kZ jA gK @@ -12279,11 +12079,11 @@ gK ac ad ae -aC +YH ae ae ae -bU +Mo cM jD ac @@ -12308,11 +12108,11 @@ eY pJ lw jA -jN -ku +wx +Zd jA -ku -lO +Zd +Om jA dF aa @@ -12339,7 +12139,7 @@ ac df bE Re -gk +IH eY gW fa @@ -12354,12 +12154,12 @@ mk ls mn dy -pK +YR Re jA -kf +Cu kv -qW +rd kv kv jA @@ -12410,7 +12210,7 @@ qf lF kw lF -cE +Cz jA dF aa @@ -12426,14 +12226,14 @@ gK ac ae aj -aD +Gp be ah bG -cg +Na cO dI -dO +uD dm dW fL @@ -12496,7 +12296,7 @@ jL oh mR hi -lL +YN ir lT hi @@ -12524,11 +12324,11 @@ gK ac af ah -aE +vw bg ae ag -ch +JI ao bh ac @@ -12546,18 +12346,18 @@ eB eY eY eY -oy +Zm dy dy dy ST Re jA -kj +FJ lF lF kw -cE +Cz jA dF aa @@ -12584,7 +12384,7 @@ ac gK bE oq -fW +PR dy dZ fu @@ -12596,13 +12396,13 @@ dy hF lM OA -nx +ZY iQ eY -oa -nT +DX +xt jA -kk +wJ lG qV kx @@ -12651,11 +12451,11 @@ dy IV Re jA -ke -ky +Tg +Sp jA -ky -lP +Sp +Ma jA dF aa @@ -12685,15 +12485,15 @@ Re dc dy eD -fw -eC +Qi +XE dZ -jW +Qd eb dy hH hZ -iu +LS iG iS dy @@ -12701,9 +12501,9 @@ Yr Re jA kl -kz +Qz jA -kU +JW lc jA gK @@ -12730,8 +12530,8 @@ ag ac gK bE -fG -go +Ya +MQ dy eY dy @@ -12746,8 +12546,8 @@ dy dy dy eY -pN -pX +wX +yA jA jA jA @@ -12769,11 +12569,11 @@ gK ac ah ae -aD +Gp bh ae ag -ck +EI ae bg ac @@ -12830,19 +12630,19 @@ gK bE ou Re -jx -jy -hB +EN +wd +LF ib -oK +AQ DB oN lw -nv +RL nL Se -Iw -nF +zz +Xz nY Yh od @@ -12867,17 +12667,17 @@ gK gK ac ap -aF +WY bV ae bQ -cA +Ra dd ac gK bE bE -fS +KD bD bD bE @@ -12885,7 +12685,7 @@ bE bD bD bD -mi +HL bE bE bE @@ -12893,7 +12693,7 @@ bE bE bE bD -pO +Ko bE bE gK @@ -12975,7 +12775,7 @@ dK gK bE he -os +wc jf AF qO @@ -12991,7 +12791,7 @@ Ll Sf bE jg -jz +MP yx bE dF diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/RandomRuins/SpaceRuins/onehalf.dmm index 4c913547e6f9..eee4c8e16817 100644 --- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm +++ b/_maps/RandomRuins/SpaceRuins/onehalf.dmm @@ -154,29 +154,12 @@ }, /turf/open/space/basic, /area/space/nearstation) -"aB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ruin/space/has_grav/onehalf) "aC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/airless{ icon_state = "wood-broken6" }, /area/ruin/space/has_grav/onehalf) -"aD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/onehalf) "aE" = ( /obj/structure/disposalpipe/trunk, /turf/open/floor/plating/airless, @@ -481,7 +464,9 @@ /obj/machinery/door/firedoor/border_only/closed{ dir = 8 }, -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) "bo" = ( @@ -501,7 +486,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -510,16 +497,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) -"bs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/onehalf) "bt" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 1 @@ -591,7 +568,9 @@ /obj/machinery/door/firedoor/border_only/closed{ dir = 8 }, -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) "bD" = ( @@ -600,13 +579,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) -"bE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/onehalf) "bF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -689,6 +661,14 @@ "bU" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/onehalf) +"bV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/onehalf) "bW" = ( /turf/open/floor/plating/airless{ icon_state = "platingdmg1" @@ -709,11 +689,12 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf) "bZ" = ( +/obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "bridge_onehalf"; - name = "Bridge Blast Door" + name = "Bridge Blast Door"; + dir = 4 }, -/obj/structure/grille, /obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/onehalf) @@ -732,13 +713,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) -"cd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/frame/computer, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/onehalf) "ce" = ( /obj/structure/frame/computer, /turf/open/floor/plasteel, @@ -755,17 +729,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) -"cg" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/table/reinforced, -/obj/item/spacecash/bundle/c500{ - pixel_y = 8 - }, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/onehalf) "ch" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -787,12 +750,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge_onehalf"; - name = "Bridge Blast Door" + name = "Bridge Blast Door"; + dir = 4 }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/onehalf) "cl" = ( @@ -841,12 +805,13 @@ /obj/structure/cable{ icon_state = "0-8" }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge_onehalf"; - name = "Bridge Blast Door" + name = "Bridge Blast Door"; + dir = 4 }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/onehalf) "cr" = ( @@ -882,22 +847,18 @@ /obj/item/stack/tile/plasteel, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) -"cy" = ( -/obj/machinery/light/small, -/obj/effect/rune/blood_boil, -/turf/open/floor/plasteel/cult, -/area/ruin/space/has_grav/onehalf) "cz" = ( /obj/structure/cable, /obj/structure/cable{ icon_state = "0-2" }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge_onehalf"; - name = "Bridge Blast Door" + name = "Bridge Blast Door"; + dir = 4 }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/onehalf) "cA" = ( @@ -922,7 +883,8 @@ "cC" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge_onehalf"; - name = "Bridge Blast Door" + name = "Bridge Blast Door"; + dir = 4 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -934,7 +896,8 @@ dir = 4 }, /obj/machinery/door/airlock/command/glass{ - name = "Bridge" + name = "Bridge"; + dir = 4 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) @@ -987,13 +950,6 @@ icon_state = "platingdmg2" }, /area/ruin/space/has_grav/onehalf) -"cM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/sovietsoda, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/onehalf) "cN" = ( /obj/item/reagent_containers/food/drinks/sillycup, /turf/open/space/basic, @@ -1030,12 +986,13 @@ icon_state = "0-4" }, /obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge_onehalf"; - name = "Bridge Blast Door" + name = "Bridge Blast Door"; + dir = 4 }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/onehalf) "cW" = ( @@ -1070,12 +1027,6 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) -"db" = ( -/obj/machinery/light, -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/onehalf) "dc" = ( /obj/structure/grille/broken, /obj/structure/cable{ @@ -1138,13 +1089,6 @@ "dh" = ( /turf/open/space/basic, /area/template_noop) -"di" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/plasteel/cult/airless, -/area/ruin/space/has_grav/onehalf) "dj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1321,6 +1265,11 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) +"kH" = ( +/obj/machinery/light/directional/north, +/obj/structure/frame/computer, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/onehalf) "lA" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 @@ -1467,6 +1416,13 @@ /mob/living/simple_animal/hostile/construct/proteon/hostile, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) +"qC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/onehalf) "rd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood, @@ -1539,6 +1495,16 @@ /obj/item/storage/toolbox/syndicate, /turf/open/floor/plasteel/cult/airless, /area/ruin/space/has_grav/onehalf) +"tX" = ( +/obj/machinery/light/directional/east, +/obj/structure/table, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/tech, +/area/ruin/space/has_grav/onehalf) "tY" = ( /obj/effect/turf_decal/solarpanel, /obj/machinery/power/solar, @@ -1550,6 +1516,11 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) +"un" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair, +/turf/open/floor/plasteel/cult/airless, +/area/ruin/space/has_grav/onehalf) "uZ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1613,11 +1584,11 @@ icon_state = "wood-broken4" }, /area/ruin/space/has_grav/onehalf) -"xR" = ( +"xS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/light, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) @@ -1648,26 +1619,11 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/airless, /area/ruin/space/has_grav/onehalf) -"zd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/airless, -/area/ruin/space/has_grav/onehalf) "zh" = ( /obj/structure/disposalpipe/trunk, /obj/item/stack/ore/diamond, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf) -"zP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/space/has_grav/onehalf) "zQ" = ( /obj/effect/turf_decal/solarpanel, /obj/machinery/power/solar, @@ -1701,6 +1657,13 @@ }, /turf/open/floor/plasteel/cult/airless, /area/ruin/space/has_grav/onehalf) +"AE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/airless, +/area/ruin/space/has_grav/onehalf) "AH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1713,6 +1676,16 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) +"BA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge_onehalf"; + name = "Bridge Blast Door"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/onehalf) "BD" = ( /obj/item/stack/sheet/runed_metal, /turf/open/floor/plasteel/cult/airless, @@ -1875,6 +1848,11 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf) +"Id" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/rune/blood_boil, +/turf/open/floor/plasteel/cult, +/area/ruin/space/has_grav/onehalf) "Ix" = ( /obj/item/stack/cable_coil/cut/red{ amount = 2 @@ -1888,6 +1866,11 @@ }, /turf/open/space/basic, /area/space/nearstation) +"Jf" = ( +/obj/machinery/light/directional/west, +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/onehalf) "Jl" = ( /obj/effect/turf_decal/solarpanel, /obj/machinery/power/solar, @@ -1938,6 +1921,19 @@ /obj/structure/railing/corner, /turf/open/space/basic, /area/space/nearstation) +"KR" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/ruin/space/has_grav/onehalf) +"LJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/nanoweave/beige, +/area/ruin/space/has_grav/onehalf) "LL" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -2019,12 +2015,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/airless, /area/ruin/space/has_grav/onehalf) -"OJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ruin/space/has_grav/onehalf) "OW" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -2138,6 +2128,17 @@ icon_state = "platingdmg3" }, /area/ruin/space/has_grav/onehalf) +"UM" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/table/reinforced, +/obj/item/spacecash/bundle/c500{ + pixel_y = 8 + }, +/obj/item/spacecash/bundle/c1000, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/onehalf) "Vb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2193,6 +2194,10 @@ /mob/living/simple_animal/hostile/construct/wraith/hostile, /turf/open/floor/plasteel/cult, /area/ruin/space/has_grav/onehalf) +"Wh" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/wood/airless, +/area/ruin/space/has_grav/onehalf) "Wk" = ( /obj/structure/catwalk, /turf/open/space, @@ -2232,17 +2237,11 @@ /obj/structure/catwalk, /turf/open/space, /area/space/nearstation) -"XU" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, +"YE" = ( +/obj/machinery/light/directional/south, +/obj/structure/table/reinforced, /obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf) "YQ" = ( /obj/structure/disposalpipe/junction{ @@ -2258,6 +2257,10 @@ /obj/structure/chair, /turf/open/floor/wood/airless, /area/ruin/space/has_grav/onehalf) +"YW" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/nanoweave/beige, +/area/ruin/space/has_grav/onehalf) "Zn" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -2593,7 +2596,7 @@ Cw eK ak an -aB +LJ aM bj bx @@ -2664,7 +2667,7 @@ ak PL pT Mc -zd +Wh aC ao bj @@ -2733,7 +2736,7 @@ md An uZ An -zP +AE vD cA nD @@ -2880,7 +2883,7 @@ ak ak Mc Mc -di +un wY aM WP @@ -2985,7 +2988,7 @@ aa aW ak ek -XU +tX fX ak ap @@ -3024,7 +3027,7 @@ ak ak ak Mc -zd +Wh PD hY YQ @@ -3057,7 +3060,7 @@ aa aW ak sQ -OJ +YW sQ ak cs @@ -3105,7 +3108,7 @@ bU aa wr bU -cy +Id bU cE aa @@ -3138,12 +3141,12 @@ Mc Gf JF bU -bZ +BA ck bU cC bU -bZ +BA bZ bU aW @@ -3178,7 +3181,7 @@ ca cl cw cn -cM +Jf cR cY bU @@ -3201,14 +3204,14 @@ aa JB Wk aq -aD +KR ct aX lA ha fR AH -bE +qC bU cb cm @@ -3282,7 +3285,7 @@ wK bF bu bU -cd +kH co cn cG @@ -3352,7 +3355,7 @@ wK NH cn bF -xR +bV bU cf MC @@ -3390,13 +3393,13 @@ Zn jX vT bU -cg +UM cp ZX Gv Ra cU -db +YE bU aW aa @@ -3603,7 +3606,7 @@ ak lU bG ak -bs +xS bH ak cF diff --git a/_maps/RandomRuins/SpaceRuins/oretruck.dmm b/_maps/RandomRuins/SpaceRuins/oretruck.dmm index 08e54bfcaa65..8d466f7b9f8e 100644 --- a/_maps/RandomRuins/SpaceRuins/oretruck.dmm +++ b/_maps/RandomRuins/SpaceRuins/oretruck.dmm @@ -83,9 +83,7 @@ "bF" = ( /obj/structure/radioactive/waste, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/radship/Cargo2) "bK" = ( @@ -124,9 +122,7 @@ "cM" = ( /obj/structure/radioactive/stack, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/radship/Cargo4) "cN" = ( @@ -202,7 +198,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/grunge{ - name = "Engine Room" + name = "Engine Room"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -219,7 +216,8 @@ /area/ruin/space/has_grav/radship/Cargo1) "fi" = ( /obj/machinery/door/airlock/command/glass{ - name = "Bridge" + name = "Bridge"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -240,13 +238,15 @@ id = "radroom2ext"; name = "External Blast Doors"; pixel_x = 6; - pixel_y = -25 + pixel_y = -25; + dir = 1 }, /obj/machinery/button{ id = "radroom2int"; name = "Internal Blast Doors"; pixel_x = -6; - pixel_y = -25 + pixel_y = -25; + dir = 1 }, /obj/effect/turf_decal/trimline/opaque/orange/filled/line, /obj/effect/decal/cleanable/dirt/dust, @@ -318,7 +318,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/ruin/space/has_grav/radship/Engineering) "id" = ( @@ -362,9 +362,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/Engineering) "jo" = ( @@ -472,9 +470,7 @@ /obj/structure/closet/crate, /obj/item/coin/uranium, /obj/item/coin/uranium, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/radship/Cargo1) "lX" = ( @@ -500,9 +496,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/remains/human, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/radship/CrewQuarters) "me" = ( @@ -512,22 +506,20 @@ "mo" = ( /obj/effect/turf_decal/trimline/opaque/orange/filled/line, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/Hallway) "mp" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 }, -/turf/template_noop, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/EngineRoom) "mz" = ( /obj/structure/closet/crate/large, /obj/structure/statue/uranium/nuke, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/radship/Cargo2) "mZ" = ( @@ -591,9 +583,7 @@ /obj/item/stack/sheet/mineral/uranium, /obj/item/stack/sheet/mineral/uranium, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/radship/Cargo3) "ol" = ( @@ -626,9 +616,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /turf/open/floor/plating, /area/ruin/space/has_grav/radship/EngineRoom) "oP" = ( @@ -639,7 +627,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/radship/EngineRoom) "pm" = ( @@ -652,13 +640,15 @@ id = "radroom1int"; name = "Internal Blast Doors"; pixel_x = -6; - pixel_y = -25 + pixel_y = -25; + dir = 1 }, /obj/machinery/button{ id = "radroom1ext"; name = "External Blast Doors"; pixel_x = 6; - pixel_y = -25 + pixel_y = -25; + dir = 1 }, /obj/effect/turf_decal/trimline/opaque/orange/filled/line, /obj/effect/decal/cleanable/dirt/dust, @@ -795,9 +785,7 @@ "tJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/generic, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/wood/maple, /area/ruin/space/has_grav/radship/CrewQuarters) "tX" = ( @@ -848,15 +836,13 @@ /obj/effect/turf_decal/trimline/opaque/orange/filled/line, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/Hallway) "uP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/oil/slippery, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/radship/Cargo1) "uY" = ( @@ -979,7 +965,7 @@ /obj/item/stack/ore/glass/basalt, /obj/item/stack/ore/iron, /obj/effect/decal/cleanable/oil, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-8" }, @@ -1155,9 +1141,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/item/reagent_containers/syringe/contraband/krokodil, /obj/effect/decal/cleanable/glass, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel/dark, /area/template_noop) "FS" = ( @@ -1246,9 +1230,7 @@ /obj/item/stack/ore/gold, /obj/item/stack/ore/iron, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/radship/Cargo4) "Hb" = ( @@ -1312,13 +1294,11 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/Hallway) "It" = ( @@ -1395,7 +1375,7 @@ }, /obj/effect/turf_decal/trimline/opaque/orange/filled/line, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/Hallway) "Kw" = ( @@ -1473,9 +1453,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/Hallway) "Ns" = ( @@ -1499,7 +1477,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-8" }, @@ -1516,7 +1494,7 @@ /obj/item/stack/sheet/mineral/uranium, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-8" }, @@ -1570,7 +1548,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood/maple, /area/ruin/space/has_grav/radship/CrewQuarters) "Pf" = ( @@ -1583,7 +1561,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/ruin/space/has_grav/radship/MethLab) "Pu" = ( @@ -1652,7 +1630,7 @@ /obj/item/stack/sheet/mineral/uranium, /obj/effect/decal/cleanable/dirt/dust, /obj/item/trash/sosjerky, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-8" }, @@ -1733,7 +1711,7 @@ /obj/machinery/power/shuttle/engine/electric{ dir = 4 }, -/turf/template_noop, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/EngineRoom) "UD" = ( /obj/effect/turf_decal/trimline/opaque/orange/filled/line{ @@ -1775,7 +1753,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/ruin/space/has_grav/radship/EngineRoom) "Vn" = ( @@ -1934,9 +1912,7 @@ /area/ruin/space/has_grav/radship/Hallway) "YF" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/radship/Cargo3) "YH" = ( @@ -1967,9 +1943,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/radship/Hallway) "Zd" = ( diff --git a/_maps/RandomRuins/SpaceRuins/power_puzzle.dmm b/_maps/RandomRuins/SpaceRuins/power_puzzle.dmm index 1c9b3616f11d..8f100d4ac0b2 100644 --- a/_maps/RandomRuins/SpaceRuins/power_puzzle.dmm +++ b/_maps/RandomRuins/SpaceRuins/power_puzzle.dmm @@ -1,35 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/decal/cleanable/dirt/dust, -/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{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle) -"ab" = ( -/obj/effect/turf_decal/trimline/opaque/red/filled/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/remains/human, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/secure) "ac" = ( /obj/structure/bed, /obj/structure/curtain/cloth/grey, @@ -37,20 +6,6 @@ /obj/item/bedsheet/dorms, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"ad" = ( -/obj/effect/turf_decal/trimline/opaque/red/filled/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/east{ - start_charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/table, -/obj/item/paper_bin, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/secure) "ae" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -65,35 +20,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"af" = ( -/obj/effect/turf_decal/trimline/opaque/red/filled/line{ - dir = 1 - }, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/secure) -"ag" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/item/spacecash/bundle/c200{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/secure) "ah" = ( /turf/closed/mineral/random/asteroid, /area/ruin/space/has_grav) @@ -154,17 +80,6 @@ /obj/machinery/microwave, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"aq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/west{ - start_charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle) "au" = ( /obj/structure/cable{ icon_state = "1-2" @@ -201,12 +116,6 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) -"aw" = ( -/obj/machinery/firealarm{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle) "ax" = ( /obj/effect/turf_decal/trimline/opaque/red/filled/warning, /obj/effect/decal/cleanable/dirt/dust, @@ -316,33 +225,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"aR" = ( -/obj/structure/closet/crate{ - name = "Ration Crate" - }, -/obj/item/reagent_containers/food/drinks/waterbottle/empty, -/obj/item/reagent_containers/food/drinks/waterbottle/empty, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/sosjerky, -/obj/item/reagent_containers/food/snacks/sosjerky, -/obj/item/stack/medical/gauze/improvised, -/obj/item/stack/medical/gauze/improvised, -/obj/item/trash/sosjerky{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/trash/sosjerky{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/powerpuzzle/secure) "aS" = ( /obj/effect/mob_spawn/human/corpse/cargo_tech, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ @@ -364,17 +246,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"aV" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/transparent/green/filled/warning, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle) "aW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/warning{ @@ -424,19 +295,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) -"ba" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/transparent/solgovgold/filled/line{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west{ - start_charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/engineering) "bb" = ( /obj/structure/cable{ icon_state = "4-8" @@ -483,19 +341,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) -"bh" = ( -/obj/machinery/firealarm{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle/secure) "bi" = ( /obj/structure/table, /obj/item/pen/fountain{ @@ -508,23 +353,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) -"bj" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle/engineering) "bk" = ( /obj/structure/chair, /obj/structure/sign/poster/official/cohiba_robusto_ad{ @@ -535,27 +363,12 @@ "bl" = ( /turf/closed/wall, /area/ruin/space/has_grav/powerpuzzle) -"bm" = ( -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle) "bp" = ( /obj/structure/railing{ dir = 1 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"bq" = ( -/obj/structure/closet/firecloset/full, -/obj/machinery/light/dim, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle) "br" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/two, @@ -564,15 +377,6 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"bs" = ( -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/effect/spawner/lootdrop/maintenance/six, -/obj/structure/closet/crate/secure, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle) "bt" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/structure/railing{ @@ -601,8 +405,8 @@ }, /obj/effect/mob_spawn/human/sec, /obj/effect/decal/cleanable/blood/splatter{ - pixel_y = 8; - pixel_x = -4 + pixel_x = -4; + pixel_y = 8 }, /obj/effect/decal/cleanable/blood/gibs{ pixel_y = 4 @@ -627,16 +431,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"bB" = ( -/obj/structure/bed, -/obj/structure/curtain/cloth/grey, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/item/bedsheet/dorms, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle) "bC" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/structure/chair, @@ -720,21 +514,6 @@ /obj/structure/chair/office, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) -"bZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/engineering) "ca" = ( /obj/machinery/mech_bay_recharge_port{ dir = 2 @@ -759,12 +538,12 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter{ - pixel_y = 8; - pixel_x = -4 + pixel_x = -4; + pixel_y = 8 }, /obj/effect/decal/cleanable/blood/splatter{ - icon_state = "trails_2"; - dir = 4 + dir = 4; + icon_state = "trails_2" }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) @@ -807,7 +586,9 @@ /area/ruin/space/has_grav/powerpuzzle/secure) "ci" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/machinery/door/airlock/engineering/glass, +/obj/machinery/door/airlock/engineering/glass{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -837,10 +618,10 @@ "cl" = ( /obj/structure/table, /obj/machinery/computer/security/telescreen{ - network = list("vault"); - pixel_y = 2; + desc = "The vault is engulfed in darkness, you can only make out the faint glow of the bolt lights across the room."; name = "\improper Vault Telescreen"; - desc = "The vault is engulfed in darkness, you can only make out the faint glow of the bolt lights across the room." + network = list("vault"); + pixel_y = 2 }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -860,25 +641,15 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"cq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02" - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle/secure) -"cr" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/dim{ - dir = 1 +"cs" = ( +/obj/machinery/light/broken/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 }, -/obj/structure/table, /obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/item/trash/plate, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) "ct" = ( @@ -912,10 +683,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) -"cx" = ( -/obj/machinery/light/small/broken, -/turf/open/floor/plating/asteroid/airless, -/area/ruin/space/has_grav/powerpuzzle/secure) "cy" = ( /obj/effect/decal/cleanable/vomit, /obj/effect/turf_decal/industrial/warning{ @@ -933,12 +700,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"cA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/powerpuzzle/secure) "cB" = ( /obj/effect/spawner/lootdrop/maintenance/two, /obj/effect/decal/cleanable/generic, @@ -1082,8 +843,8 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter{ - icon_state = "trails_2"; - dir = 4 + dir = 4; + icon_state = "trails_2" }, /turf/open/floor/wood, /area/ruin/space/has_grav/powerpuzzle/secure) @@ -1216,6 +977,20 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, /area/ruin/space/has_grav) +"dU" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/trimline/transparent/solgovgold/filled/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/engineering) "dW" = ( /obj/structure/sign/warning/securearea{ pixel_y = 30 @@ -1292,6 +1067,16 @@ }, /turf/open/floor/plasteel/stairs, /area/ruin/space/has_grav/powerpuzzle/engineering) +"gk" = ( +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 1 + }, +/obj/machinery/light/broken/directional/north, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/secure) "gp" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, @@ -1338,6 +1123,13 @@ /obj/machinery/light/floor, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powerpuzzle) +"gM" = ( +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/effect/spawner/lootdrop/maintenance/six, +/obj/structure/closet/crate/secure, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle) "gS" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/warning{ @@ -1358,36 +1150,10 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, /area/ruin/space/has_grav) -"ha" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - dir = 8; - pixel_y = 2; - pixel_x = -2 - }, -/obj/machinery/camera/autoname{ - dir = 8; - network = list("vault") - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle/secure) -"hh" = ( -/obj/effect/turf_decal/trimline/opaque/red/filled/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/light/dim{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/secure) -"hj" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +"hj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) @@ -1409,19 +1175,6 @@ /obj/effect/decal/fakelattice, /turf/open/floor/plasteel/elevatorshaft, /area/ruin/space/has_grav/powerpuzzle/secure) -"hH" = ( -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/structure/closet/crate, -/obj/item/poster/random_retro{ - pixel_y = 4; - pixel_x = 2 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/broken, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle) "hL" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/structure/railing{ @@ -1439,6 +1192,10 @@ /obj/item/pen, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) +"hU" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powerpuzzle/secure) "ik" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = -31 @@ -1461,12 +1218,16 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"iV" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle/engineering) +"jg" = ( +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/secure) "jy" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -1494,23 +1255,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/engineering) -"jV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/fakelattice, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/space/has_grav/powerpuzzle/secure) -"ke" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/railing{ - climbable = 0 - }, -/obj/effect/decal/fakelattice, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/space/has_grav/powerpuzzle/secure) "ks" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/tracks{ @@ -1560,6 +1304,24 @@ dir = 1 }, /area/ruin/space/has_grav/powerpuzzle) +"kV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/built/directional/north, +/obj/item/light/tube/broken{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle/engineering) "kY" = ( /obj/machinery/camera/autoname, /turf/open/floor/plating/asteroid/airless, @@ -1584,6 +1346,16 @@ }, /turf/open/floor/wood, /area/ruin/space/has_grav/powerpuzzle/secure) +"lL" = ( +/obj/structure/toilet, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/powerpuzzle) "lZ" = ( /obj/structure/chair, /obj/structure/sign/poster/official/wtf_is_co2{ @@ -1653,35 +1425,12 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"mI" = ( -/obj/machinery/computer/camera_advanced{ - dir = 8; - networks = list("vault") - }, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle/secure) "mV" = ( /obj/item/toy/plush/moth{ name = "Wall Moth" }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powerpuzzle) -"mX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle) "nm" = ( /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 10 @@ -1701,7 +1450,9 @@ dir = 8 }, /obj/structure/fans/tiny, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle/engineering) "nG" = ( @@ -1729,6 +1480,19 @@ /obj/item/reagent_containers/food/drinks/mug, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) +"nW" = ( +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/structure/closet/crate, +/obj/item/poster/random_retro{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/broken/directional/south, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle) "ob" = ( /obj/structure/railing/corner{ dir = 8 @@ -1763,13 +1527,24 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, /obj/structure/fans/tiny, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle) +"pj" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/railing{ + climbable = 0 + }, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/decal/fakelattice, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/space/has_grav/powerpuzzle/secure) "pr" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, @@ -1789,6 +1564,10 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/engineering) +"pK" = ( +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plating/asteroid/airless, +/area/ruin/space/has_grav/powerpuzzle/secure) "pO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 1 @@ -1804,6 +1583,10 @@ }, /turf/open/floor/plasteel/stairs, /area/ruin/space/has_grav/powerpuzzle) +"qa" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating/asteroid/airless, +/area/ruin/space/has_grav/powerpuzzle/secure) "qi" = ( /obj/effect/decal/cleanable/vomit, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -1814,16 +1597,11 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"qm" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical, -/obj/effect/turf_decal/trimline/transparent/solgovgold/filled/line, -/obj/machinery/light/dim, +"qr" = ( +/obj/machinery/light/dim/directional/west, +/obj/effect/turf_decal/trimline/transparent/green/filled/warning, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/engineering) +/area/ruin/space/has_grav/powerpuzzle) "qx" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -1916,16 +1694,14 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"rS" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/railing{ - climbable = 0 +"rJ" = ( +/obj/structure/table, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("vault") }, -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/effect/decal/fakelattice, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) "rV" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -1946,6 +1722,19 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) +"rY" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/engineering) "sb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -1957,6 +1746,19 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) +"sc" = ( +/obj/effect/mob_spawn/human/corpse/cargo_tech, +/obj/item/reagent_containers/food/snacks/cakeslice/birthday, +/obj/effect/decal/cleanable/confetti, +/obj/machinery/light/small/broken/directional/east, +/obj/structure/toilet, +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/powerpuzzle) "sd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/grey/diagonal, @@ -1968,6 +1770,17 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) +"sj" = ( +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/secure) "sk" = ( /obj/structure/railing{ dir = 8 @@ -2039,6 +1852,31 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/engineering) +"tH" = ( +/obj/structure/closet/crate{ + name = "Ration Crate" + }, +/obj/item/reagent_containers/food/drinks/waterbottle/empty, +/obj/item/reagent_containers/food/drinks/waterbottle/empty, +/obj/item/reagent_containers/food/drinks/waterbottle, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/sosjerky, +/obj/item/reagent_containers/food/snacks/sosjerky, +/obj/item/stack/medical/gauze/improvised, +/obj/item/stack/medical/gauze/improvised, +/obj/item/trash/sosjerky{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/trash/sosjerky{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powerpuzzle/secure) "tJ" = ( /obj/structure/cable{ icon_state = "2-4" @@ -2066,7 +1904,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -2088,6 +1928,14 @@ name = "bathroom floor" }, /area/ruin/space/has_grav/powerpuzzle) +"un" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/dim/directional/north, +/obj/structure/table, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/item/trash/plate, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle) "up" = ( /obj/machinery/atmospherics/components/unary/tank/air, /obj/machinery/door/window, @@ -2101,22 +1949,12 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"ux" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "CargoC2" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/powerpuzzle) +"uy" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle/engineering) "uD" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/structure/closet/crate/secure/exo, @@ -2127,19 +1965,28 @@ "uN" = ( /obj/structure/railing, /obj/machinery/button/door{ - pixel_y = 27; - pixel_x = -5; + id = "cargobay"; name = "Cargo Bay Shutters"; - id = "cargobay" + pixel_x = -5; + pixel_y = 27 }, /obj/machinery/button/shieldwallgen{ - pixel_y = 27; - pixel_x = 7; + id = "cargoshield"; name = "Cargo Bay Holoshield"; - id = "cargoshield" + pixel_x = 7; + pixel_y = 27 }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powerpuzzle) +"uT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/machinery/light/small/directional/east, +/obj/item/kirbyplants{ + icon_state = "plant-02" + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle/secure) "uX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -2148,26 +1995,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"uZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light/built{ - dir = 1 - }, -/obj/item/light/tube/broken{ - pixel_y = 2; - pixel_x = 5 - }, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle/engineering) "vy" = ( /obj/effect/decal/cleanable/generic, /obj/effect/turf_decal/corner/transparent/grey/diagonal, @@ -2176,6 +2003,11 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) +"vC" = ( +/obj/machinery/light/small/broken/directional/north, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/ruin/space/has_grav/powerpuzzle/engineering) "vE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 5 @@ -2244,18 +2076,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) -"ww" = ( -/obj/structure/toilet, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, -/area/ruin/space/has_grav/powerpuzzle) "wO" = ( /obj/effect/turf_decal/industrial/warning, /obj/structure/cable, @@ -2278,8 +2098,8 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/structure/table, /obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 7; - pixel_x = -6 + pixel_x = -6; + pixel_y = 7 }, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ pixel_x = 6; @@ -2296,7 +2116,8 @@ /area/ruin/space/has_grav/powerpuzzle) "xf" = ( /obj/structure/door_assembly/door_assembly_sec{ - anchored = 1 + anchored = 1; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -2333,13 +2154,6 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powerpuzzle/engineering) -"xk" = ( -/obj/machinery/light/dim{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/transparent/green/filled/warning, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle) "xl" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/effect/turf_decal/industrial/warning{ @@ -2347,19 +2161,10 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) -"xT" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 - }, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle) +"xS" = ( +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plating/asteroid/airless, +/area/ruin/space/has_grav/powerpuzzle/secure) "ye" = ( /obj/structure/table, /obj/structure/railing{ @@ -2394,48 +2199,33 @@ "yq" = ( /obj/structure/table, /obj/machinery/button/door{ + dir = 8; + id = "vaultdoor"; name = "Emergency Lockdown"; - specialfunctions = 4; normaldoorcontrol = 1; - id = "vaultdoor"; - dir = 8; pixel_x = -4; - pixel_y = 8 + pixel_y = 8; + specialfunctions = 4 }, /obj/machinery/button/door{ - name = "Vault Shutters"; - id = "vaultshutters1"; dir = 8; - pixel_y = 8; - pixel_x = 5 + id = "vaultshutters1"; + name = "Vault Shutters"; + pixel_x = 5; + pixel_y = 8 }, /obj/machinery/button/door{ - name = "Vault Shutters"; - id = "vaultshutters2"; dir = 8; - pixel_y = -2; - pixel_x = 5 + id = "vaultshutters2"; + name = "Vault Shutters"; + pixel_x = 5; + pixel_y = -2 }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) "yu" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"yv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/dim{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle) "yW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -2450,35 +2240,11 @@ }, /turf/open/floor/plasteel/stairs, /area/ruin/space/has_grav/powerpuzzle) -"zc" = ( -/obj/effect/mob_spawn/human/corpse/cargo_tech, -/obj/item/reagent_containers/food/snacks/cakeslice/birthday, -/obj/effect/decal/cleanable/confetti, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/structure/toilet, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, -/area/ruin/space/has_grav/powerpuzzle) -"zI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, -/area/ruin/space/has_grav/powerpuzzle) +"yZ" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/fakelattice, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/space/has_grav/powerpuzzle/secure) "zL" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2491,13 +2257,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) -"Aa" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/powerpuzzle/engineering) "Af" = ( /obj/structure/filingcabinet, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ @@ -2559,6 +2318,30 @@ light_range = 2 }, /area/ruin/space/has_grav/powerpuzzle/engineering) +"AW" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle) +"Bb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/dim/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle) "Bp" = ( /obj/structure/grille, /obj/structure/window/reinforced/fulltile/indestructable, @@ -2569,6 +2352,14 @@ /mob/living/simple_animal/hostile/carp, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powerpuzzle/engineering) +"BD" = ( +/obj/machinery/computer/camera_advanced{ + dir = 8; + networks = list("vault") + }, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle/secure) "BF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -2633,13 +2424,10 @@ /obj/machinery/power/port_gen/pacman/super, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle/engineering) -"Ds" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, +"Dx" = ( +/obj/structure/closet/firecloset/full, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) "Dy" = ( /obj/effect/turf_decal/industrial/warning{ @@ -2663,6 +2451,14 @@ }, /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav) +"DR" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/item/bedsheet/dorms, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle) "DS" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -2688,6 +2484,27 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) +"Ec" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/mob_spawn/human/corpse/cargo_tech{ + outfit = /datum/outfit/job/engineer/nt + }, +/obj/item/wirecutters{ + pixel_y = 15 + }, +/obj/effect/turf_decal/corner/transparent/solgovgold/diagonal, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/engineering) "EK" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -2713,6 +2530,20 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) +"EQ" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "CargoC2" + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powerpuzzle) "EW" = ( /obj/structure/closet/emcloset, /turf/open/floor/plasteel, @@ -2778,28 +2609,6 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powerpuzzle/engineering) -"Gv" = ( -/obj/machinery/firealarm{ - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/trimline/transparent/solgovgold/filled/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/engineering) -"GD" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/airless, -/area/ruin/space/has_grav/powerpuzzle/secure) "GL" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/transparent/grey/diagonal, @@ -2870,22 +2679,28 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) -"HZ" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 +"Ib" = ( +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/structure/railing{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle) +"Ie" = ( +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 +/obj/machinery/power/apc/auto_name/directional/east{ + start_charge = 0 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/light/broken, +/obj/structure/table, +/obj/item/paper_bin, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle) +/area/ruin/space/has_grav/powerpuzzle/secure) "Ii" = ( /obj/structure/closet/crate/secure/weapon{ name = "Ammo Crate" @@ -2903,7 +2718,8 @@ /area/ruin/space/has_grav/powerpuzzle) "Im" = ( /obj/structure/door_assembly{ - anchored = 1 + anchored = 1; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 8 @@ -2932,6 +2748,10 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle/engineering) +"It" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle) "IB" = ( /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/powerpuzzle/secure) @@ -2981,7 +2801,9 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/door/airlock/engineering, +/obj/machinery/door/airlock/engineering{ + dir = 4 + }, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, @@ -2990,9 +2812,27 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle/engineering) +"Jx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/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{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle) "JO" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/powerpuzzle/engineering) +"JU" = ( +/obj/structure/catwalk, +/turf/open/space/basic, +/area/ruin/space/has_grav/powerpuzzle) "JZ" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/effect/turf_decal/industrial/stand_clear{ @@ -3000,12 +2840,15 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"Ka" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/airless, -/area/ruin/space/has_grav/powerpuzzle/engineering) +"KA" = ( +/obj/docking_port/stationary{ + dir = 2; + height = 15; + width = 15; + dwidth = 8 + }, +/turf/template_noop, +/area/template_noop) "KJ" = ( /obj/structure/sink{ dir = 1 @@ -3094,9 +2937,9 @@ pixel_y = 2 }, /obj/item/stamp/ce{ + name = "engineering rubber stamp"; pixel_x = 15; - pixel_y = 5; - name = "engineering rubber stamp" + pixel_y = 5 }, /obj/effect/turf_decal/trimline/transparent/solgovgold/filled/line{ dir = 9 @@ -3139,6 +2982,17 @@ name = "bathroom floor" }, /area/ruin/space/has_grav/powerpuzzle) +"MO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/powerpuzzle) "MU" = ( /obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ @@ -3177,10 +3031,32 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) +"Nt" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/fakelattice, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/space/has_grav/powerpuzzle/secure) "Nv" = ( /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/powerpuzzle/engineering) +"NJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/item/spacecash/bundle/c200{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/secure) "NK" = ( /obj/structure/railing/corner{ dir = 1 @@ -3195,6 +3071,15 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) +"NT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/broken/directional/east, +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/green/filled/warning, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle) "NZ" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 @@ -3215,7 +3100,9 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) "OL" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, @@ -3230,6 +3117,12 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) +"OM" = ( +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/powerpuzzle) "OO" = ( /obj/structure/table, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ @@ -3239,6 +3132,12 @@ /obj/item/paper_bin, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) +"OP" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/powerpuzzle) "OQ" = ( /obj/structure/railing/corner, /obj/machinery/light/floor, @@ -3251,22 +3150,26 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"Pe" = ( -/obj/structure/bed, -/obj/structure/curtain/cloth/grey, -/obj/effect/turf_decal/corner/transparent/grey/diagonal, -/obj/item/bedsheet/dorms, -/obj/machinery/light/small/broken, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/powerpuzzle) +"Pc" = ( +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/remains/human, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/secure) "Pf" = ( /obj/machinery/button/door{ + dir = 4; + id = "vaultdoor"; name = "Emergency Lockdown"; - specialfunctions = 4; normaldoorcontrol = 1; - id = "vaultdoor"; pixel_x = -27; - dir = 4 + specialfunctions = 4 }, /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/mob_spawn/human/corpse/cargo_tech{ @@ -3278,6 +3181,14 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle/secure) +"Pg" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/railing{ + climbable = 0 + }, +/obj/effect/decal/fakelattice, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/space/has_grav/powerpuzzle/secure) "Pm" = ( /obj/structure/table, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ @@ -3290,28 +3201,9 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) -"PA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/obj/effect/mob_spawn/human/corpse/cargo_tech{ - outfit = /datum/outfit/job/engineer/nt - }, -/obj/item/wirecutters{ - pixel_y = 15 - }, -/obj/effect/turf_decal/corner/transparent/solgovgold/diagonal, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel, +"Pt" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/powerpuzzle/engineering) "PB" = ( /obj/structure/cable{ @@ -3339,7 +3231,9 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/door/airlock/security, +/obj/machinery/door/airlock/security{ + dir = 4 + }, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle/secure) "PF" = ( @@ -3367,15 +3261,15 @@ /area/ruin/space/has_grav/powerpuzzle/secure) "PU" = ( /obj/item/clothing/head/beret/qm{ - pixel_y = 7; - pixel_x = -9 + pixel_x = -9; + pixel_y = 7 }, /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter{ - icon_state = "trails_2"; - dir = 4 + dir = 4; + icon_state = "trails_2" }, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle/secure) @@ -3394,18 +3288,13 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/engineering) -"QM" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, +"Qu" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/obj/item/bedsheet/dorms, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) "QN" = ( /obj/machinery/power/smes/engineering{ @@ -3428,6 +3317,17 @@ "QS" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle/secure) +"QT" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle/secure) "QV" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 5 @@ -3468,23 +3368,6 @@ }, /turf/open/floor/plasteel/stairs, /area/ruin/space/has_grav/powerpuzzle/engineering) -"RB" = ( -/obj/effect/turf_decal/trimline/opaque/red/filled/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/item/spacecash/bundle/c50{ - pixel_y = 8; - pixel_x = -5 - }, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/secure) "RI" = ( /obj/machinery/power/floodlight{ anchored = 1 @@ -3550,6 +3433,11 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) +"SQ" = ( +/obj/structure/chair, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle) "SR" = ( /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -3557,18 +3445,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/engineering) -"SS" = ( -/obj/effect/turf_decal/trimline/opaque/red/filled/line{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/powerpuzzle/secure) "SY" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt/dust, @@ -3578,6 +3454,20 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) +"Tl" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle/engineering) "TB" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -3594,19 +3484,16 @@ /obj/item/pen, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle) -"TN" = ( -/obj/machinery/light/small{ +"TP" = ( +/obj/machinery/shower{ dir = 4 }, -/obj/effect/decal/fakelattice, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/space/has_grav/powerpuzzle/secure) -"TO" = ( -/obj/structure/chair, -/obj/machinery/light/broken{ - dir = 1 +/obj/structure/toilet, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" }, -/turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) "TR" = ( /obj/structure/sign/poster/contraband/tools{ @@ -3639,10 +3526,6 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) -"Uz" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid/airless, -/area/ruin/space/has_grav/powerpuzzle/secure) "UV" = ( /obj/structure/salvageable/computer{ dir = 1 @@ -3691,7 +3574,9 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/door/airlock/external/glass, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, /obj/structure/fans/tiny, /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -3704,6 +3589,21 @@ /obj/effect/turf_decal/corner/transparent/grey/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/powerpuzzle/secure) +"We" = ( +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/machinery/light/broken/directional/east, +/obj/item/spacecash/bundle/c50{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/secure) "Wk" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ @@ -3712,8 +3612,8 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/donkpockets, /obj/structure/noticeboard{ - pixel_y = 32; - pixel_x = -15 + pixel_x = -15; + pixel_y = 32 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) @@ -3743,6 +3643,22 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/powerpuzzle/engineering) +"WG" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle) "Xc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/grey/diagonal, @@ -3782,8 +3698,8 @@ }, /obj/structure/table, /obj/item/lighter{ - pixel_y = 4; - pixel_x = -2 + pixel_x = -2; + pixel_y = 4 }, /obj/item/storage/fancy/cigarettes/cigpack_robustgold{ pixel_x = 7 @@ -3811,21 +3727,32 @@ /obj/structure/table, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) +"YE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/west{ + start_charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/corner/transparent/grey/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/powerpuzzle) "YH" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/button/door{ - pixel_y = -27; - pixel_x = -5; - name = "Cargo Bay Shutters"; dir = 1; - id = "cargobay" + id = "cargobay"; + name = "Cargo Bay Shutters"; + pixel_x = -5; + pixel_y = -27 }, /obj/machinery/button/shieldwallgen{ dir = 1; - pixel_y = -27; - pixel_x = 7; + id = "cargoshield"; name = "Cargo Bay Holoshields"; - id = "cargoshield" + pixel_x = 7; + pixel_y = -27 }, /obj/effect/turf_decal/corner/transparent/grey/diagonal, /obj/effect/turf_decal/industrial/warning{ @@ -3843,6 +3770,19 @@ /mob/living/simple_animal/hostile/carp, /turf/template_noop, /area/template_noop) +"YN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/transparent/solgovgold/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + start_charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/engineering) "Zl" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ @@ -3853,6 +3793,16 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/powerpuzzle) +"Zq" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/trimline/transparent/solgovgold/filled/line, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/powerpuzzle/engineering) "Zz" = ( /obj/machinery/door/airlock, /obj/machinery/door/firedoor/border_only, @@ -4024,7 +3974,7 @@ ah ah bl bz -aw +It ik pr KU @@ -4066,7 +4016,7 @@ sk BF cH rq -bq +Dx bl ah ah @@ -4097,7 +4047,7 @@ RI FC DA bl -TO +SQ oc nS cI @@ -4123,7 +4073,7 @@ ah kv kv kv -Ds +OM ui kv kv @@ -4158,16 +4108,16 @@ vQ hp ah kv -QM +TP Zz aK yW kv -bB +DR ac ac ac -Pe +Qu kv bE cj @@ -4232,7 +4182,7 @@ vQ hp ah kv -ww +lL Zz aK ML @@ -4245,13 +4195,13 @@ ac kv gX cj -bs +gM pr bK fd vy cO -hH +nW cj cp aU @@ -4282,7 +4232,7 @@ kv kv bd cj -bm +Ib cB wZ aW @@ -4290,14 +4240,14 @@ Yi pr bt cj -xT +cs aO YH cj cj cj uN -vQ +JU vQ "} (12,1,1) = {" @@ -4306,16 +4256,16 @@ hp hp ah kv -zc +sc Zz -aK -zI +OP +MO kv ap -aw +It Ri -xk -aq +qr +YE kv PB FJ @@ -4334,7 +4284,7 @@ cU qX vJ wf -vQ +JU vQ "} (13,1,1) = {" @@ -4371,8 +4321,8 @@ cV GP wO wf -vQ -vQ +JU +KA "} (14,1,1) = {" vQ @@ -4405,10 +4355,10 @@ mj BS MJ qx -ux +EQ MU aB -vQ +JU vQ "} (15,1,1) = {" @@ -4418,34 +4368,34 @@ hp ah ah kv -cr +un Sj wa yu sW zL Oz -aV +NT uu kv kv kv -mX +AW nG ae gS -aa +Jx bG -HZ +WG cj -yv +Bb eS rV cj cj cj IW -vQ +JU vQ "} (16,1,1) = {" @@ -4540,19 +4490,19 @@ aD Bp IB IB -Uz +qa In In bx In In -bZ +rY IC fZ bc tq Ms -ba +YN kz JO ah @@ -4565,7 +4515,7 @@ hp hp ah In -aR +tH PU ce In @@ -4579,9 +4529,9 @@ IB IB IB In -rS +pj gH -jV +Nt In mk TR @@ -4590,7 +4540,7 @@ rb cP bQ Uu -qm +Zq JO ah hp @@ -4606,7 +4556,7 @@ In Vs In In -af +gk EO HO bX @@ -4623,7 +4573,7 @@ In jA jA jA -uZ +kV Xc cm pD @@ -4639,12 +4589,12 @@ hp ah ah In -cA +hU cR oo In ao -ad +Ie bH by Aj @@ -4660,9 +4610,9 @@ In Gi jA up -bj +Tl eX -Gv +dU cW jQ JO @@ -4717,7 +4667,7 @@ ay aX Xt NK -ab +Pc nm In sb @@ -4725,13 +4675,13 @@ wQ Bp IB cv -cx +xS In hB gH bD In -Aa +vC AO Lp jA @@ -4754,7 +4704,7 @@ Ww cd QS bi -ag +NJ ax ch aE @@ -4774,7 +4724,7 @@ gp jA Ir cS -PA +Ec Ry WA JO @@ -4794,16 +4744,16 @@ PL an ck In -bh -cq +QT +uT Bp IB IB IB In -ke +Pg MB -TN +yZ In Lp Lp @@ -4824,11 +4774,11 @@ ah ah In Af -RB -SS +We +jg LV Pm -hh +sj Ag In In @@ -4872,7 +4822,7 @@ ah ah cv IB -cx +xS In dr Rw @@ -4880,12 +4830,12 @@ MY vE UV In -Ka +Pt Lp xi tX SR -iV +uy jA ah hp @@ -4987,8 +4937,8 @@ IB In In yq -mI -ha +BD +rJ In In dW @@ -5061,7 +5011,7 @@ ah IB IB IB -GD +pK IB IB Lp diff --git a/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm b/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm index 377695e595e7..fc9b44f191a2 100644 --- a/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm +++ b/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm @@ -6,7 +6,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "at" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "au" = ( @@ -23,6 +23,15 @@ /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/syndicircle/research) +"bd" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = 64; + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicircle/halls) "bf" = ( /obj/machinery/modular_computer/console/preset, /turf/open/floor/plasteel/tech/techmaint, @@ -34,7 +43,7 @@ pixel_x = 8; pixel_y = -8 }, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "bx" = ( /obj/structure/flora/rock/icy, @@ -62,9 +71,7 @@ /turf/open/floor/plating/asteroid/snow/atmosphere, /area/ruin/space/has_grav/syndicircle/winter) "bM" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "bP" = ( @@ -82,7 +89,8 @@ /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, /obj/machinery/door/poddoor{ - id = 99 + id = 99; + dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) @@ -119,12 +127,10 @@ pixel_x = -8; pixel_y = -8 }, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "dN" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) "dP" = ( @@ -153,7 +159,8 @@ /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, /obj/machinery/door/poddoor{ - id = 6 + id = 6; + dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) @@ -264,6 +271,15 @@ /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/syndicircle/research) +"in" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = 128; + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicircle/halls) "iq" = ( /obj/item/target, /obj/structure/flippedtable{ @@ -310,16 +326,12 @@ /obj/effect/mine/shrapnel, /obj/effect/turf_decal/weather/snow/corner, /obj/item/stack/tile/mineral/snow, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/snow/atmosphere, /area/ruin/space/has_grav/syndicircle/winter) "iZ" = ( -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/plating/asteroid/snow/atmosphere, /area/ruin/space/has_grav/syndicircle/winter) "jo" = ( @@ -364,15 +376,22 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/syndicircle/research) +"kE" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = 32; + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicircle/halls) "kK" = ( /obj/structure/table/reinforced, /obj/item/gun/ballistic/automatic/smg/c20r{ pixel_x = 4; pixel_y = -4 }, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/syndicircle/winter) "lb" = ( @@ -453,13 +472,20 @@ }, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/syndicircle/winter) +"nm" = ( +/obj/machinery/door/poddoor{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/syndicircle/halls) "nR" = ( /obj/structure/flippedtable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/syndicircle/winter) "nU" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -522,13 +548,16 @@ }, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/syndicircle/research) +"pT" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ruin/space/has_grav/syndicircle/halls) "qm" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/syndicircle/research) "qo" = ( -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/winter) "qv" = ( /mob/living/simple_animal/hostile/syndicate/ranged/shotgun{ @@ -538,7 +567,7 @@ /area/ruin/space/has_grav/syndicircle/winter) "qP" = ( /obj/item/target, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/dirt/jungle/wasteland, /area/ruin/space/has_grav/syndicircle/training) @@ -694,7 +723,8 @@ /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, /obj/machinery/door/poddoor{ - id = 256 + id = 256; + dir = 8 }, /obj/structure/cable{ icon_state = "2-8" @@ -715,20 +745,19 @@ /area/ruin/space/has_grav/syndicircle/winter) "uE" = ( /obj/effect/turf_decal/number/two, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "uU" = ( /obj/machinery/button{ id = 99; name = "Zone Alpha shutters"; - pixel_x = -25 + pixel_x = -25; + dir = 4 }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) "vc" = ( -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/plating/asteroid/snow/atmosphere, /area/ruin/space/has_grav/syndicircle/winter) "vg" = ( @@ -762,9 +791,7 @@ /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/syndicircle/research) "vQ" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "wa" = ( @@ -809,7 +836,8 @@ /obj/machinery/button{ id = 6; name = "Zone Delta shutters"; - pixel_x = -25 + pixel_x = -25; + dir = 4 }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) @@ -823,9 +851,7 @@ /turf/open/floor/plating/asteroid/snow/atmosphere, /area/ruin/space/has_grav/syndicircle/winter) "wU" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "xd" = ( @@ -876,9 +902,10 @@ id = 64; name = "Zone Bravo shutters"; pixel_x = -8; - pixel_y = 8 + pixel_y = -2; + dir = 8 }, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "zm" = ( /turf/open/floor/circuit, @@ -891,7 +918,9 @@ /turf/open/floor/circuit, /area/ruin/space/has_grav/syndicircle/research) "zr" = ( -/obj/machinery/door/poddoor, +/obj/machinery/door/poddoor{ + dir = 4 + }, /obj/structure/fans/tiny, /obj/structure/cable{ icon_state = "4-8" @@ -946,18 +975,22 @@ /turf/open/space, /area/template_noop) "AQ" = ( -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/plating/asteroid/snow/atmosphere, /area/ruin/space/has_grav/syndicircle/winter) "AV" = ( /obj/structure/table/reinforced, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-4" }, /obj/item/blackbox, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) +"Bc" = ( +/obj/machinery/light/directional/west, +/turf/closed/mineral/random/asteroid, +/area/ruin/space/has_grav/syndicircle/spacewalk) "Bj" = ( /obj/structure/cable{ icon_state = "2-8" @@ -976,7 +1009,7 @@ /turf/open/floor/circuit, /area/ruin/space/has_grav/syndicircle/research) "Bw" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-8" }, @@ -986,17 +1019,18 @@ /obj/machinery/button{ id = 4; name = "Zone Charlie shutters"; - pixel_x = -25 + pixel_x = -25; + dir = 8 }, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/syndicircle/research) "BJ" = ( /obj/effect/turf_decal/number/zero, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "BV" = ( /obj/effect/turf_decal/number/one, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "BY" = ( /obj/structure/cable{ @@ -1027,7 +1061,7 @@ /area/ruin/space/has_grav/syndicircle/halls) "Ci" = ( /obj/effect/turf_decal/snow, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/plating, /area/ruin/space/has_grav/syndicircle/winter) @@ -1035,15 +1069,24 @@ /obj/machinery/button{ id = 6; name = "Zone Delta shutters"; - pixel_x = 25 + pixel_x = 25; + dir = 8 }, /turf/open/floor/plating/asteroid/snow/atmosphere, /area/ruin/space/has_grav/syndicircle/winter) +"Cu" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/syndicircle/halls) "CA" = ( /obj/machinery/button{ id = 4; name = "Zone Charlie shutters"; - pixel_x = 25 + pixel_x = 25; + dir = 8 }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) @@ -1053,6 +1096,15 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) +"CO" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = 128; + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicircle/halls) "Df" = ( /obj/structure/cable{ icon_state = "2-4" @@ -1114,7 +1166,7 @@ /area/ruin/space/has_grav/syndicircle/research) "Ek" = ( /obj/effect/turf_decal/number/three, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "EO" = ( /obj/structure/fans/tiny, @@ -1122,9 +1174,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) "EQ" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/vending/sovietsoda, /obj/structure/cable{ icon_state = "4-8" @@ -1232,12 +1282,17 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "Hi" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/vending/cola/shamblers, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) +"Hl" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ruin/space/has_grav/syndicircle/halls) "HC" = ( /mob/living/simple_animal/hostile/syndicate/civilian{ name = "Syndicate Researcher" @@ -1247,28 +1302,30 @@ }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) -"HF" = ( -/obj/structure/lattice, -/turf/open/space, -/area/template_noop) -"HV" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/airless, -/area/ruin/space/has_grav/syndicircle/spacewalk) "Ik" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) "Im" = ( /obj/structure/table/reinforced, -/obj/machinery/light{ +/obj/machinery/light/directional/west, +/obj/item/paper_bin, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicircle/halls) +"Ir" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/syndicircle/halls) +"Iv" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = 4; dir = 8 }, -/obj/item/paper_bin, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "IE" = ( @@ -1293,16 +1350,12 @@ /area/ruin/space/has_grav/syndicircle/halls) "Je" = ( /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/item/paper_bin, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "Ji" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) "Jq" = ( @@ -1317,7 +1370,9 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) "Jx" = ( -/obj/machinery/door/airlock/centcom, +/obj/machinery/door/airlock/centcom{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -1332,9 +1387,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "JT" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/sandy_dirt, /area/ruin/space/has_grav/syndicircle/training) "Kb" = ( @@ -1342,9 +1395,10 @@ id = 32; name = "Zone Alpha shutters"; pixel_x = 7; - pixel_y = 8 + pixel_y = 3; + dir = 4 }, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "Kr" = ( /obj/structure/rack, @@ -1360,7 +1414,8 @@ /obj/machinery/button{ id = 84; name = "Zone Bravo shutters"; - pixel_x = -25 + pixel_x = -25; + dir = 4 }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/syndicircle/spacewalk) @@ -1380,7 +1435,7 @@ /area/ruin/space/has_grav/syndicircle/halls) "Lb" = ( /obj/structure/sign/warning/securearea, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/space/has_grav/syndicircle/halls) "Lh" = ( /obj/structure/window/plasma/reinforced/plastitanium, @@ -1391,7 +1446,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) "Lt" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/oil, /turf/open/floor/plating, @@ -1467,7 +1522,7 @@ /turf/open/floor/plating/sandy_dirt, /area/ruin/space/has_grav/syndicircle/training) "NV" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/space, /area/ruin/space/has_grav/syndicircle/spacewalk) "Oc" = ( @@ -1496,13 +1551,19 @@ /turf/closed/wall/mineral/titanium, /area/ruin/space/has_grav/syndicircle/escape) "OY" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "0-4" }, /turf/open/floor/mineral/titanium, /area/ruin/space/has_grav/syndicircle/escape) +"Pq" = ( +/obj/machinery/door/airlock/centcom{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicircle/halls) "Pv" = ( /obj/structure/cable{ icon_state = "0-8" @@ -1512,9 +1573,7 @@ /turf/open/floor/mineral/titanium/blue, /area/ruin/space/has_grav/syndicircle/escape) "Qc" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/titanium, /area/ruin/space/has_grav/syndicircle/escape) "Qd" = ( @@ -1529,9 +1588,18 @@ /turf/open/floor/mineral/titanium, /area/ruin/space/has_grav/syndicircle/escape) "QT" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/dirt/jungle/wasteland, /area/ruin/space/has_grav/syndicircle/training) +"Rs" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = 256; + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicircle/halls) "Rw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/dirt/jungle/wasteland, @@ -1588,7 +1656,7 @@ /turf/open/floor/mineral/titanium, /area/ruin/space/has_grav/syndicircle/escape) "SC" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/sandy_dirt, /area/ruin/space/has_grav/syndicircle/training) @@ -1664,7 +1732,7 @@ /turf/open/floor/plating/dirt/jungle/wasteland, /area/ruin/space/has_grav/syndicircle/training) "Ua" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) "UI" = ( @@ -1730,9 +1798,7 @@ /turf/open/floor/plating/dirt/jungle/wasteland, /area/ruin/space/has_grav/syndicircle/training) "Wt" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/sandy_dirt, /area/ruin/space/has_grav/syndicircle/training) @@ -1791,7 +1857,8 @@ /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, /obj/machinery/door/poddoor{ - id = 84 + id = 84; + dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) @@ -1808,7 +1875,8 @@ /obj/machinery/button{ id = 84; name = "Zone Bravo shutters"; - pixel_x = 25 + pixel_x = 25; + dir = 8 }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicircle/halls) @@ -1901,9 +1969,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/syndicircle/training) "Zf" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/cable{ icon_state = "1-2" }, @@ -1924,7 +1990,8 @@ /obj/machinery/button{ id = 99; name = "Zone Alpha shutters"; - pixel_x = 8 + pixel_x = 8; + dir = 4 }, /turf/closed/wall/mineral/plastitanium, /area/ruin/space/has_grav/syndicircle/halls) @@ -1949,7 +2016,7 @@ dir = 5; network = list("zoneb") }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -2028,7 +2095,7 @@ ZW ZW AP GV -HF +AP GV AP ZW @@ -2076,11 +2143,11 @@ ZW ZW ZW ZW -am -EO -am -EO -am +pT +Ir +pT +Hl +pT ZW ZW ZW @@ -2130,7 +2197,7 @@ BJ ay ay ay -am +pT AP ZW ZW @@ -2223,17 +2290,17 @@ ZW ZW ZW ZW +pT +pT +pT +pT +Ir am -am -am -am -EO -am -EO -am -am -am -am +Ir +pT +pT +pT +pT ZW ZW ZW @@ -2270,10 +2337,10 @@ ZW ZW ZW ZW -am -am -am -am +pT +pT +pT +pT ap ap ay @@ -2283,10 +2350,10 @@ ap ay ap ap -am -am -am -am +pT +pT +pT +pT ZW ZW ZW @@ -2317,10 +2384,10 @@ ZW ZW ZW ZW -am -am -am -am +pT +pT +pT +pT ap ap ap @@ -2336,10 +2403,10 @@ ap ap ap ap -am -am -am -am +pT +pT +pT +pT ZW ZW ZW @@ -2365,9 +2432,9 @@ ZW ZW ZW ZW -am -am -am +pT +pT +pT Df ur ur @@ -2375,13 +2442,13 @@ ur ur ur Ch -am -am +pT +pT Jx -am -au -am -am +pT +Pq +pT +pT ap ap ap @@ -2389,9 +2456,9 @@ ap ap ap ap -am -am -am +pT +pT +pT ZW ZW ZW @@ -2414,35 +2481,35 @@ ZW ZW ZW ZW -am -am +pT +pT ay ap jx ap ap -am -am -am -am -am -am +pT +pT +pT +pT +pT +pT Dm ap ap -am -am -am -am -am -am +pT +pT +pT +pT +pT +pT ap ap ay ap ay -am -am +pT +pT ZW ZW ZW @@ -2463,8 +2530,8 @@ ZW ZW ZW ZW -am -am +pT +pT jo ur BY @@ -2476,24 +2543,24 @@ aW aW aW aW -am +pT Dm ap ap -am +pT MV Rw MV MV -am -am -am +pT +pT +pT ap ay ap ay -am -am +pT +pT ZW ZW ZW @@ -2512,13 +2579,13 @@ ZW ZW ZW ZW -am +pT bo dN jx ay -am -am +pT +pT qo aW bL @@ -2526,7 +2593,7 @@ eh en aW aW -am +pT EQ ap ap @@ -2537,14 +2604,14 @@ Ng TG Oc RV -am -am -am +pT +pT +pT ay ay Ua Kb -am +pT ZW ZW ZW @@ -2561,13 +2628,13 @@ ZW ZW ZW ZW -am -am +pT +pT ay ay ov dP -am +pT dZ dZ eh @@ -2589,13 +2656,13 @@ Ng Oc MW Ox -am +pT JP du ay ay -am -am +pT +pT ZW ZW ZW @@ -2610,13 +2677,13 @@ ZW ZW ZW ZW -am -am +pT +pT ay ay du uc -dP +Rs kK mN dZ @@ -2640,13 +2707,13 @@ Oc Oc RH IE -JP +kE JP ay ay ay -am -am +pT +pT ZW ZW ZW @@ -2660,7 +2727,7 @@ ZW ZW ZW ZW -am +pT ay ap ay @@ -2691,12 +2758,12 @@ Ng RH qP MV -JP +kE JP ay ap ay -am +pT ZW ZW ZW @@ -2709,12 +2776,12 @@ ZW (16,1,1) = {" ZW ZW -am -am +pT +pT ap ay -am -am +pT +pT gi iz iH @@ -2742,12 +2809,12 @@ Ox MV MV MV -am -am +pT +pT ay ap -am -am +pT +pT ZW ZW ZW @@ -2759,11 +2826,11 @@ ZW (17,1,1) = {" ZW ZW -am +pT ap ay ap -am +pT dZ gp iD @@ -2793,11 +2860,11 @@ UL iy Oc by -am +pT ap ay ap -am +pT ZW ZW ZW @@ -2809,11 +2876,11 @@ ZW (18,1,1) = {" ZW ZW -am +pT ap ap -am -am +pT +pT dZ dZ iH @@ -2843,11 +2910,11 @@ RR YD Ng Ng -am -am +pT +pT ap ap -am +pT ZW ZW ZW @@ -2858,11 +2925,11 @@ ZW "} (19,1,1) = {" ZW -am -am +pT +pT ap ap -am +pT aW bL dZ @@ -2894,11 +2961,11 @@ JT Ng Oc MV -am +pT ap ap -am -am +pT +pT ZW ZW ZW @@ -2908,11 +2975,11 @@ ZW "} (20,1,1) = {" ZW -am +pT ap ap -am -am +pT +pT bx bL gv @@ -2944,11 +3011,11 @@ MV MV oJ MV -am -am +pT +pT ap ap -am +pT ZW ZW ZW @@ -2958,10 +3025,10 @@ ZW "} (21,1,1) = {" ZW -am +pT ap ap -am +pT aW bD eh @@ -2995,10 +3062,10 @@ RV Ng Ng MW -am +pT ap ap -am +pT ZW ZW ZW @@ -3007,11 +3074,11 @@ ZW ZW "} (22,1,1) = {" -am -am +pT +pT ap ap -am +pT aW bL en @@ -3045,11 +3112,11 @@ Oc Ng Ng xD -am +pT ap ap -am -am +pT +pT ZW ZW ZW @@ -3057,11 +3124,11 @@ ZW ZW "} (23,1,1) = {" -am +pT ap ap ap -am +pT aW aW eu @@ -3079,7 +3146,7 @@ aW am Jx am -au +Pq am MV Sb @@ -3095,11 +3162,11 @@ Oc Oc RV QT -am +pT ap ap ap -am +pT ZW ZW ZW @@ -3107,11 +3174,11 @@ ZW ZW "} (24,1,1) = {" -am +pT ap ap -am -am +pT +pT aW aW aW @@ -3145,11 +3212,11 @@ RV Oc MW iq -am -am +pT +pT ap ap -am +pT AP AP ZW @@ -3157,18 +3224,18 @@ ZW ZW "} (25,1,1) = {" -am +pT ap ap -am -am -am -am +pT +pT +pT +pT ew ew am -lv -lv +Cu +Cu am ew ew @@ -3189,25 +3256,25 @@ ci ci Zt zr -lv +nm am ci ci bS -am -am -am +pT +pT +pT ap ay -am +pT uE BJ -am -HF +pT +AP AP "} (26,1,1) = {" -am +pT ap ap au @@ -3257,10 +3324,10 @@ GV GV "} (27,1,1) = {" -am +pT ap at -am +pT ap ap ap @@ -3299,15 +3366,15 @@ ap am vQ ay -am +pT dN ay -am +pT AP GV "} (28,1,1) = {" -am +pT ap ap au @@ -3357,21 +3424,21 @@ GV GV "} (29,1,1) = {" -am +pT ap ap -am -am -am +pT +pT +pT bS -fe -fe +Iv +Iv am -lv -lv +nm +Cu am -fe -fe +Iv +Iv am am am @@ -3389,29 +3456,29 @@ WY WY am zr -lv +nm am WY WY -am -am -am -am +pT +pT +pT +pT ap ay -am +pT Lb -am -am -HF +pT +pT +AP AP "} (30,1,1) = {" -am +pT ap ap -am -am +pT +pT ba bV bV @@ -3441,15 +3508,15 @@ ZZ TF xF KH -HV -OH +Tj OH +Bc OH -am -am +pT +pT ap ap -am +pT AP AP ZW @@ -3457,11 +3524,11 @@ ZW ZW "} (31,1,1) = {" -am +pT ap ap ap -am +pT bf cC ff @@ -3479,7 +3546,7 @@ ho am Jx am -au +Pq am OH Sf @@ -3495,11 +3562,11 @@ Vn Sf OH OH -am +pT ap ap ap -am +pT ZW ZW ZW @@ -3507,11 +3574,11 @@ ZW ZW "} (32,1,1) = {" -am -am +pT +pT ap ap -am +pT bf cQ fI @@ -3545,11 +3612,11 @@ Vn ZU Sf OH -am +pT ap ap -am -am +pT +pT ZW ZW ZW @@ -3558,10 +3625,10 @@ ZW "} (33,1,1) = {" ZW -am +pT ap ap -am +pT ba dd bV @@ -3595,10 +3662,10 @@ Vn Sf SQ OH -am +pT ap ap -am +pT ZW ZW ZW @@ -3608,11 +3675,11 @@ ZW "} (34,1,1) = {" ZW -am +pT ap ap -am -am +pT +pT dh bV ht @@ -3644,11 +3711,11 @@ Vn Tj DU OH -am -am +pT +pT ap ap -am +pT ZW ZW ZW @@ -3658,11 +3725,11 @@ ZW "} (35,1,1) = {" ZW -am -am +pT +pT ap ap -am +pT bV dd hw @@ -3694,11 +3761,11 @@ Tj MP OH OH -am +pT ap ap -am -am +pT +pT ZW ZW ZW @@ -3709,11 +3776,11 @@ ZW (36,1,1) = {" ZW ZW -am +pT ap ap -am -am +pT +pT fO if bV @@ -3743,11 +3810,11 @@ Sf OH OH OH -am -am +pT +pT ap ap -am +pT ZW ZW ZW @@ -3759,11 +3826,11 @@ ZW (37,1,1) = {" ZW ZW -am +pT ap ay ap -am +pT ba bV kc @@ -3793,11 +3860,11 @@ Tl SQ OH OH -am +pT ap ay ap -am +pT ZW ZW ZW @@ -3809,12 +3876,12 @@ ZW (38,1,1) = {" ZW ZW -am -am +pT +pT ap ay -am -am +pT +pT bf kj bV @@ -3842,12 +3909,12 @@ Tl Vn Tj DU -am -am +pT +pT ay ap -am -am +pT +pT ZW ZW ZW @@ -3860,12 +3927,12 @@ ZW ZW ZW ZW -am +pT ay ap du fZ -fZ +CO kv mC qm @@ -3891,12 +3958,12 @@ Tl Vn XW Tl -GP +bd GP ay ap ay -am +pT ZW ZW ZW @@ -3910,13 +3977,13 @@ ZW ZW ZW ZW -am -am +pT +pT ay ay ay fZ -fZ +in kv dd sX @@ -3940,13 +4007,13 @@ Vn Vn Vn Vn -GP +bd GP ay ay ay -am -am +pT +pT ZW ZW ZW @@ -3961,13 +4028,13 @@ ZW ZW ZW ZW -am -am +pT +pT ay ay du fZ -am +pT ba bV bV @@ -3989,13 +4056,13 @@ Vn Vn Wx NV -am +pT GP du ay du -am -am +pT +pT ZW ZW ZW @@ -4012,21 +4079,21 @@ ZW ZW ZW ZW -am +pT dx dN ay ay -am -am -am +pT +pT +pT dd wD dd cC AG Bw -am +pT Hi ap ap @@ -4037,14 +4104,14 @@ Tj Tj Sf DU -am -am -am +pT +pT +pT ay ay Ua yT -am +pT ZW ZW ZW @@ -4063,37 +4130,37 @@ ZW ZW ZW ZW -am -am +pT +pT ay ap ay ap -am -am -am +pT +pT +pT ba kv kv ba -am +pT ap ap ap -am +pT OH OH Tj DU -am -am -am +pT +pT +pT ap ay ap ay -am -am +pT +pT ZW ZW ZW @@ -4114,35 +4181,35 @@ ZW ZW ZW ZW -am -am +pT +pT ay ap ay ap ap -am -am -am -am -am -am +pT +pT +pT +pT +pT +pT ap ap ap -am -am -am -am -am -am +pT +pT +pT +pT +pT +pT ap ap ay ap ay -am -am +pT +pT ZW ZW ZW @@ -4165,9 +4232,9 @@ ZW ZW ZW ZW -am -am -am +pT +pT +pT ap ap ap @@ -4175,13 +4242,13 @@ ap ap ap ap +pT +pT +Pq am -am -au -am -au -am -am +Pq +pT +pT ap ap ap @@ -4189,9 +4256,9 @@ ap ap ap ap -am -am -am +pT +pT +pT ZW ZW ZW @@ -4217,10 +4284,10 @@ ZW ZW ZW ZW -am -am -am -am +pT +pT +pT +pT ap ap ap @@ -4236,10 +4303,10 @@ ap ap ap ap -am -am -am -am +pT +pT +pT +pT ZW ZW ZW @@ -4270,10 +4337,10 @@ ZW ZW ZW ZW -am -am -am -am +pT +pT +pT +pT ap ap ay @@ -4283,10 +4350,10 @@ ap ay ap ap -am -am -am -am +pT +pT +pT +pT ZW ZW ZW @@ -4323,17 +4390,17 @@ ZW ZW ZW ZW +pT +pT +pT +pT +Ir am -am -am -am -EO -am -EO -am -am -am -am +Ir +pT +pT +pT +pT ZW ZW ZW @@ -4430,7 +4497,7 @@ Ek ay ay ay -am +pT AP ZW ZW @@ -4476,11 +4543,11 @@ ZW ZW ZW ZW +pT +Ir am -EO -am -EO -am +Ir +pT ZW ZW ZW diff --git a/_maps/RandomRuins/SpaceRuins/scav_mining.dmm b/_maps/RandomRuins/SpaceRuins/scav_mining.dmm index 564e57a1fd24..53d92db8e063 100644 --- a/_maps/RandomRuins/SpaceRuins/scav_mining.dmm +++ b/_maps/RandomRuins/SpaceRuins/scav_mining.dmm @@ -25,10 +25,12 @@ /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav) "ak" = ( -/obj/machinery/door/airlock/hatch, /obj/machinery/atmospherics/pipe/simple{ dir = 4 }, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/scav_mining/entrance) "al" = ( @@ -172,14 +174,14 @@ /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav) "nd" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/scav_mining/entrance) "nw" = ( /obj/structure/table, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating, /area/ruin/space/has_grav/scav_mining/dorm) "nA" = ( @@ -210,9 +212,7 @@ /turf/open/space, /area/space) "pw" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/scav_mining/entrance) "pA" = ( @@ -334,7 +334,9 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/scav_mining/core) "xv" = ( -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/structure/barricade/wooden, /obj/structure/cable{ icon_state = "4-8" @@ -391,9 +393,7 @@ /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav) "Cs" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav) "CG" = ( @@ -471,7 +471,9 @@ /area/ruin/space/has_grav/scav_mining/dorm) "Ia" = ( /obj/effect/decal/cleanable/oil, -/obj/machinery/door/airlock/hatch, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple{ dir = 8 }, @@ -585,7 +587,7 @@ /area/ruin/space/has_grav) "OI" = ( /obj/structure/closet/crate, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/scav_mining/entrance) "Pj" = ( @@ -612,9 +614,7 @@ /turf/closed/wall/rust, /area/ruin/space/has_grav/scav_mining/entrance) "Sd" = ( -/obj/machinery/power/apc/auto_name/east{ - pixel_x = 25 - }, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/ruin/space/has_grav/scav_mining/core) @@ -635,9 +635,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/scav_mining/entrance) "Ti" = ( -/obj/machinery/power/apc/auto_name/east{ - pixel_x = 25 - }, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -659,9 +657,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/scav_mining/core) "Uk" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating, /area/ruin/space/has_grav/scav_mining/dorm) "Uz" = ( @@ -721,9 +717,7 @@ /area/ruin/space/has_grav/scav_mining/dorm) "YF" = ( /obj/structure/table, -/obj/machinery/power/apc/auto_name/west{ - pixel_x = -25 - }, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -734,9 +728,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector{ dir = 4 }, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating, /area/ruin/space/has_grav/scav_mining/core) "Zi" = ( @@ -750,7 +742,7 @@ /obj/machinery/advanced_airlock_controller{ pixel_y = 25 }, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/scav_mining/entrance) "ZH" = ( diff --git a/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm b/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm index 9553dc7d26b1..49574a3ada13 100644 --- a/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm +++ b/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm @@ -37,9 +37,7 @@ /obj/structure/sign/poster/official/fruit_bowl{ pixel_y = 32 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "aj" = ( @@ -91,7 +89,7 @@ /obj/structure/closet/emcloset{ anchored = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/sign/nanotrasen{ pixel_y = -32 }, @@ -127,6 +125,25 @@ name = "grass" }, /area/ruin/space/has_grav/singularitylab) +"ay" = ( +/obj/machinery/door/airlock{ + name = "Private Quarters"; + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ruin/space/has_grav/singularitylab/civvie) "aA" = ( /turf/open/space/basic, /area/ruin/space/has_grav/singularitylab/reactor) @@ -149,9 +166,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "aH" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/singularitylab) "aI" = ( @@ -317,9 +332,7 @@ /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/singularitylab) "bf" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/singularitylab/civvie) @@ -387,9 +400,7 @@ /obj/effect/turf_decal/corner/transparent/orange{ dir = 1 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/closet/crate/bin, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/engineering) @@ -415,7 +426,7 @@ /obj/machinery/porta_turret{ stun_projectile = "/obj/projectile/beam/hitscan/disabler" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/singularitylab/cargo) "bv" = ( @@ -468,7 +479,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /turf/open/floor/plasteel/dark, @@ -601,9 +612,7 @@ "co" = ( /obj/effect/turf_decal/corner/opaque/white/full, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/firealarm{ - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "cr" = ( @@ -647,7 +656,8 @@ /area/ruin/space/has_grav/singularitylab/lab) "cz" = ( /obj/machinery/door/airlock/engineering{ - name = "Engine Control" + name = "Engine Control"; + dir = 8 }, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -720,7 +730,7 @@ /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav) "cK" = ( -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ start_charge = 0 }, /obj/structure/cable{ @@ -821,7 +831,8 @@ /area/ruin/space/has_grav/singularitylab/cargo) "dc" = ( /obj/machinery/door/airlock/engineering{ - name = "Engine Control" + name = "Engine Control"; + dir = 4 }, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1019,9 +1030,7 @@ /obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/singularitylab/engineering) "ec" = ( @@ -1036,7 +1045,8 @@ /area/ruin/space/has_grav/singularitylab) "ed" = ( /obj/machinery/door/airlock{ - name = "Barracks" + name = "Barracks"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -1077,9 +1087,7 @@ pixel_y = -4; machinedir = 9 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/singularitylab/cargo) "eo" = ( @@ -1181,9 +1189,7 @@ /area/ruin/space/has_grav/singularitylab/cargo) "ez" = ( /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/ruin/space/has_grav/singularitylab/civvie) "eA" = ( @@ -1291,7 +1297,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "eX" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/spacevine, /obj/structure/spacevine{ pixel_x = -32 @@ -1457,10 +1463,7 @@ /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab/lab) "fF" = ( -/obj/machinery/firealarm{ - pixel_y = 26; - pixel_x = -8 - }, +/obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, @@ -1494,9 +1497,7 @@ /area/ruin/space/has_grav/singularitylab/civvie) "fQ" = ( /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/poster/random{ pixel_y = -31 }, @@ -1564,9 +1565,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "ga" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab/lab) "gb" = ( @@ -1656,9 +1655,7 @@ /obj/machinery/conveyor{ id = "singlabfurn" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ruin/space/has_grav/singularitylab/cargo) "gw" = ( @@ -1806,19 +1803,13 @@ "gO" = ( /obj/structure/bed, /obj/item/bedsheet/black, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood, /area/ruin/space/has_grav/singularitylab/civvie) "gP" = ( /obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/small/directional/west, /turf/open/floor/carpet/nanoweave/beige, /area/ruin/space/has_grav/singularitylab/cargo) "gQ" = ( @@ -1924,7 +1915,8 @@ /area/ruin/space/has_grav/singularitylab/cargo) "hn" = ( /obj/machinery/door/poddoor{ - id = "singlabhanger" + id = "singlabhanger"; + dir = 4 }, /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/singularitylab) @@ -2015,9 +2007,7 @@ /obj/effect/turf_decal/corner/transparent/orange{ dir = 6 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/cargo) "hK" = ( @@ -2033,7 +2023,7 @@ icon_state = "0-6" }, /obj/effect/decal/cleanable/cobweb, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ start_charge = 0 }, /turf/open/floor/plasteel/dark, @@ -2227,9 +2217,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "iA" = ( @@ -2312,7 +2300,8 @@ /area/ruin/space/has_grav/singularitylab/civvie) "iL" = ( /obj/machinery/door/airlock/external{ - name = "Engine Access" + name = "Engine Access"; + dir = 4 }, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2687,20 +2676,22 @@ /area/ruin/space/has_grav/singularitylab) "ke" = ( /obj/machinery/door/airlock/freezer{ - name = "Freezer" + name = "Freezer"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/singularitylab/civvie) "ki" = ( -/obj/machinery/door/poddoor{ - id = "singlabhanger" - }, /obj/machinery/power/shieldwallgen/atmos/strong/roundstart{ id = "singlabhang" }, /obj/structure/cable/yellow{ icon_state = "0-8" }, +/obj/machinery/door/poddoor{ + id = "singlabhanger"; + dir = 4 + }, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab) "kk" = ( @@ -2708,7 +2699,7 @@ dir = 8 }, /obj/structure/spacevine, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/sign/nanotrasen{ pixel_y = -32 }, @@ -2719,7 +2710,8 @@ /area/ruin/space/has_grav/singularitylab) "km" = ( /obj/machinery/door/airlock/hatch{ - name = "Server Room" + name = "Server Room"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 @@ -2905,9 +2897,7 @@ /area/ruin/space/has_grav/singularitylab/cargo) "kS" = ( /obj/effect/turf_decal/box, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/structure/ore_box, /turf/open/floor/plasteel/patterned/cargo_one, /area/ruin/space/has_grav/singularitylab/cargo) @@ -2929,9 +2919,7 @@ /obj/item/clothing/under/rank/rnd/scientist, /obj/item/clothing/shoes/sneakers/white, /obj/effect/gibspawner, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/sign/nanotrasen{ pixel_x = 32 }, @@ -3047,9 +3035,7 @@ /turf/open/floor/plasteel/tech/grid, /area/ruin/space/has_grav/singularitylab) "ll" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/engine/hull/reinforced, /area/ruin/space/has_grav/singularitylab/reactor) "lm" = ( @@ -3101,7 +3087,8 @@ dir = 4 }, /obj/machinery/door/airlock/science{ - name = "High Energy Applications Research Facility" + name = "High Energy Applications Research Facility"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 @@ -3214,9 +3201,7 @@ /obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/singularitylab/engineering) "lQ" = ( @@ -3485,9 +3470,7 @@ /obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "mU" = ( @@ -3692,7 +3675,8 @@ /area/ruin/space/has_grav/singularitylab/cargo) "nw" = ( /obj/machinery/door/airlock{ - name = "Private Quarters" + name = "Private Quarters"; + dir = 4 }, /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -3712,9 +3696,7 @@ /obj/effect/turf_decal/corner/opaque/beige{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "nA" = ( @@ -3769,9 +3751,7 @@ /area/ruin/space/has_grav/singularitylab) "nJ" = ( /obj/machinery/rnd/server, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel/tech/grid, /area/ruin/space/has_grav/singularitylab/lab) @@ -3787,7 +3767,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/mining{ - name = "Cargo Bay" + name = "Cargo Bay"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 @@ -3922,7 +3903,7 @@ /obj/effect/turf_decal/techfloor{ dir = 6 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "og" = ( @@ -3999,9 +3980,7 @@ /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/singularitylab) "ot" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/engineering) "ou" = ( @@ -4047,10 +4026,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab) "oy" = ( @@ -4078,9 +4054,7 @@ "oJ" = ( /obj/structure/bed, /obj/item/bedsheet/cosmos, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood, /area/ruin/space/has_grav/singularitylab/civvie) "oK" = ( @@ -4186,9 +4160,7 @@ /turf/open/space/basic, /area/ruin/space/has_grav/singularitylab/reactor) "pe" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab/lab) "pf" = ( @@ -4200,9 +4172,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "ph" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/singularitylab/civvie) "pi" = ( @@ -4519,11 +4489,7 @@ /obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{ pixel_x = -6 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_y = 1; - pixel_x = 3 - }, +/obj/item/radio/intercom/directional/east, /obj/structure/cable{ icon_state = "4-9" }, @@ -4750,11 +4716,9 @@ /area/ruin/space/has_grav/singularitylab) "ru" = ( /obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 8 - }, /obj/item/clothing/shoes/magboots, /obj/machinery/suit_storage_unit/inherit, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ruin/space/has_grav/singularitylab/engineering) "rv" = ( @@ -4809,9 +4773,7 @@ /obj/effect/turf_decal/corner/opaque/purple/diagonal{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "rK" = ( @@ -4840,7 +4802,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/cargo) "rO" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab/lab) "rQ" = ( @@ -5064,13 +5026,11 @@ /obj/structure/sign/poster/contraband/have_a_puff{ pixel_x = 32 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "sN" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/ruin/space/has_grav/singularitylab/civvie) "sS" = ( @@ -5112,9 +5072,7 @@ /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/singularitylab) "tb" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, @@ -5132,9 +5090,7 @@ /area/ruin/space/has_grav/singularitylab/lab) "th" = ( /obj/structure/spacevine, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "tq" = ( @@ -5275,7 +5231,8 @@ /area/ruin/space/has_grav/singularitylab/lab) "uk" = ( /obj/machinery/door/poddoor{ - id = "singlabhanger" + id = "singlabhanger"; + dir = 4 }, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab) @@ -5365,9 +5322,7 @@ /obj/effect/turf_decal/techfloor{ dir = 6 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "uA" = ( @@ -5425,9 +5380,7 @@ /obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) @@ -5498,9 +5451,7 @@ /area/ruin/space/has_grav/singularitylab) "uX" = ( /obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/gun/energy/lasercannon/unrestricted{ name = "NT-LS-1013"; icon_state = "pulse"; @@ -5604,9 +5555,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/nanotrasen{ pixel_y = 32 }, @@ -5633,9 +5582,7 @@ /obj/structure/sign/poster/contraband/red_rum{ pixel_y = 32 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood, /area/ruin/space/has_grav/singularitylab/civvie) "vw" = ( @@ -5648,7 +5595,8 @@ /area/ruin/space/has_grav/singularitylab/civvie) "vy" = ( /obj/machinery/door/airlock/security{ - name = "Front Office" + name = "Front Office"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 @@ -5735,9 +5683,7 @@ /obj/effect/turf_decal/siding/white{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/vault, /area/ruin/space/has_grav/singularitylab/cargo) "vX" = ( @@ -5860,7 +5806,8 @@ /area/ruin/space/has_grav/singularitylab/cargo) "wu" = ( /obj/machinery/door/airlock/external{ - name = "Engine Access" + name = "Engine Access"; + dir = 4 }, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -5908,9 +5855,7 @@ /area/ruin/space/has_grav/singularitylab) "wB" = ( /obj/structure/chair, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/cargo) "wF" = ( @@ -5989,7 +5934,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ start_charge = 0 }, /obj/structure/spacevine, @@ -6121,7 +6066,8 @@ /area/ruin/space/has_grav/singularitylab) "xr" = ( /obj/machinery/door/airlock{ - name = "Bathroom" + name = "Bathroom"; + dir = 4 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) @@ -6179,16 +6125,8 @@ /area/ruin/space/has_grav/singularitylab/civvie) "xA" = ( /obj/machinery/airalarm/directional/north, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -34; - pixel_y = -1 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -24; - pixel_y = -1 - }, +/obj/item/radio/intercom/directional/west, +/obj/item/radio/intercom/directional/west, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 6 }, @@ -6199,9 +6137,7 @@ pixel_y = 32 }, /obj/structure/spacevine, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/dirt{ baseturfs = /turf/open/floor/plating/asteroid }, @@ -6226,9 +6162,6 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "xF" = ( -/obj/machinery/door/poddoor{ - id = "singlabhanger" - }, /obj/machinery/power/shieldwallgen/atmos/strong/roundstart{ dir = 1; id = "singlabhang" @@ -6236,6 +6169,10 @@ /obj/structure/cable/yellow{ icon_state = "0-8" }, +/obj/machinery/door/poddoor{ + id = "singlabhanger"; + dir = 4 + }, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab) "xG" = ( @@ -6438,7 +6375,7 @@ /turf/open/floor/carpet/nanoweave/beige, /area/ruin/space/has_grav/singularitylab/cargo) "yn" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/engine/hull/reinforced, /area/ruin/space/has_grav/singularitylab/reactor) "yo" = ( @@ -6505,9 +6442,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "yy" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "yA" = ( @@ -6654,7 +6589,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/sign/nanotrasen{ pixel_y = -32 }, @@ -6716,7 +6651,7 @@ /area/ruin/space/has_grav/singularitylab/lab) "zk" = ( /obj/structure/table, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/carpet/nanoweave/purple, /area/ruin/space/has_grav/singularitylab/lab) "zl" = ( @@ -7003,7 +6938,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/corner/opaque/white/full, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/purple{ dir = 10 }, @@ -7122,9 +7057,7 @@ /obj/structure/chair{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/holofloor/wood, /area/ruin/space/has_grav/singularitylab/lab) "AG" = ( @@ -7132,9 +7065,7 @@ /obj/structure/spacevine{ pixel_y = 32 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating/dirt{ baseturfs = /turf/open/floor/plating/asteroid }, @@ -7219,7 +7150,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 6 }, -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ start_charge = 0 }, /turf/open/floor/plasteel, @@ -7393,7 +7324,8 @@ /area/ruin/space/has_grav/singularitylab/civvie) "BP" = ( /obj/machinery/door/poddoor{ - id = "singlablas1" + id = "singlablas1"; + dir = 4 }, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab/lab) @@ -7510,11 +7442,7 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_y = 6; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/singularitylab/cargo) "Ch" = ( @@ -7721,9 +7649,7 @@ /obj/effect/turf_decal/corner/transparent/orange{ dir = 9 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/blood{ icon_state = "floor4" }, @@ -7785,10 +7711,7 @@ /area/ruin/space/has_grav/singularitylab/engineering) "Da" = ( /obj/structure/table/wood, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -23 - }, +/obj/item/radio/intercom/directional/south, /obj/item/reagent_containers/food/drinks/waterbottle/large, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -7895,7 +7818,7 @@ dir = 1; network = list("sl12") }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "Ds" = ( @@ -8007,9 +7930,7 @@ "DI" = ( /obj/machinery/power/terminal, /obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/techfloor{ dir = 8 }, @@ -8040,15 +7961,16 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/door/airlock/science{ - name = "High Energy Applications Research Facility" - }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, /obj/machinery/door/firedoor/border_only{ dir = 4 }, +/obj/machinery/door/airlock/science{ + name = "High Energy Applications Research Facility"; + dir = 4 + }, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/singularitylab/lab) "DM" = ( @@ -8147,9 +8069,7 @@ /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/singularitylab) "Eo" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/orange{ dir = 5 }, @@ -8216,9 +8136,7 @@ /obj/structure/sign/poster/official/random{ pixel_y = 32 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/carpet/nanoweave/beige, /area/ruin/space/has_grav/singularitylab/cargo) "EA" = ( @@ -8271,10 +8189,7 @@ /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav) "EJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/singularitylab) "EK" = ( @@ -8286,7 +8201,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/singularitylab/engineering) "EL" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/dirt{ baseturfs = /turf/open/floor/plating/asteroid }, @@ -8342,9 +8257,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/nanotrasen{ pixel_y = 32 }, @@ -8615,10 +8528,7 @@ /obj/effect/turf_decal/box, /obj/item/clothing/shoes/magboots, /obj/machinery/suit_storage_unit/inherit, -/obj/machinery/firealarm{ - pixel_y = 27; - pixel_x = -6 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ruin/space/has_grav/singularitylab/engineering) "FI" = ( @@ -8656,7 +8566,7 @@ /area/ruin/space/has_grav/singularitylab) "FR" = ( /obj/structure/spacevine, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/dirt{ baseturfs = /turf/open/floor/plating/asteroid }, @@ -8666,7 +8576,7 @@ /obj/effect/turf_decal/corner/opaque/beige{ dir = 5 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 24 }, /turf/open/floor/plasteel, @@ -8747,9 +8657,7 @@ /area/ruin/space/has_grav/singularitylab/civvie) "Gn" = ( /obj/structure/spacevine, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/singularitylab/civvie) "Gq" = ( @@ -8831,7 +8739,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/external{ - name = "Interior Mine" + name = "Interior Mine"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/singularitylab/cargo) @@ -8880,9 +8789,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "GG" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/techfloor{ dir = 8 }, @@ -9131,7 +9038,7 @@ /obj/structure/closet/firecloset{ anchored = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/sign/nanotrasen{ pixel_y = -32 }, @@ -9171,9 +9078,7 @@ /turf/open/floor/engine/hull, /area/ruin/space/has_grav/singularitylab/reactor) "HS" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/singularitylab/lab) @@ -9231,9 +9136,7 @@ /obj/machinery/porta_turret{ stun_projectile = "/obj/projectile/beam/hitscan/disabler" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/space/has_grav/singularitylab/cargo) "Ib" = ( @@ -9314,9 +9217,7 @@ /obj/effect/turf_decal/corner/transparent/orange{ dir = 5 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/cargo) "In" = ( @@ -9461,9 +9362,7 @@ /turf/closed/wall, /area/ruin/space/has_grav/singularitylab/civvie) "IU" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/engine/hull/reinforced, /area/ruin/space/has_grav/singularitylab/reactor) "IV" = ( @@ -9497,11 +9396,7 @@ /obj/structure/sign/poster/contraband/hacking_guide{ pixel_x = 32 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25; - pixel_x = -7 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/singularitylab/engineering) "Jb" = ( @@ -9610,7 +9505,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/sign/nanotrasen{ pixel_y = -32 }, @@ -9797,9 +9692,7 @@ /turf/open/floor/holofloor/wood, /area/ruin/space/has_grav/singularitylab/lab) "Ko" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/spacevine, /obj/structure/spacevine{ pixel_x = -32 @@ -9841,9 +9734,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/cargo) "Kt" = ( @@ -9866,7 +9757,7 @@ /obj/effect/turf_decal/corner/opaque/white/full, /obj/structure/table, /obj/item/storage/fancy/donut_box, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 25 }, /turf/open/floor/plasteel, @@ -9978,9 +9869,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/radio/intercom{ - dir = 8 - }, +/obj/item/radio/intercom/directional/east, /obj/item/megaphone/cargo, /turf/open/floor/carpet/nanoweave/beige, /area/ruin/space/has_grav/singularitylab/cargo) @@ -10086,7 +9975,7 @@ dir = 4 }, /obj/effect/turf_decal/corner/opaque/white/diagonal, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, @@ -10108,9 +9997,7 @@ /area/ruin/space/has_grav/singularitylab/cargo) "LB" = ( /obj/structure/spacevine, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/nanotrasen{ pixel_y = 32 }, @@ -10130,7 +10017,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /obj/effect/turf_decal/corner/opaque/white/full, @@ -10172,10 +10059,7 @@ /obj/effect/turf_decal/corner/opaque/green{ dir = 6 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "LZ" = ( @@ -10221,7 +10105,7 @@ /mob/living/simple_animal/hostile/zombie/kudzu{ zombiejob = "Cargo Technician" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/carpet/nanoweave/beige, /area/ruin/space/has_grav/singularitylab/cargo) "Mg" = ( @@ -10323,7 +10207,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "MB" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/singularitylab) "MC" = ( @@ -10392,7 +10276,7 @@ /area/ruin/space/has_grav/singularitylab/reactor) "MQ" = ( /obj/structure/spacevine/dense, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ start_charge = 0 }, /obj/structure/cable{ @@ -10407,7 +10291,7 @@ /area/ruin/space/has_grav/singularitylab) "MS" = ( /obj/structure/dresser, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 24 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -10447,7 +10331,8 @@ /area/ruin/space/has_grav/singularitylab/reactor) "MW" = ( /obj/machinery/door/airlock{ - name = "Private Quarters" + name = "Private Quarters"; + dir = 8 }, /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -10579,11 +10464,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/firealarm{ - dir = 4; - pixel_y = 6; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/corner/transparent/orange{ dir = 1 }, @@ -10735,9 +10616,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/singularitylab) "NX" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid/airless, /area/ruin/space/has_grav/singularitylab/civvie) "NZ" = ( @@ -11128,9 +11007,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, @@ -11307,9 +11184,7 @@ /obj/machinery/computer/rdconsole{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/carpet/nanoweave/purple, /area/ruin/space/has_grav/singularitylab/lab) "PJ" = ( @@ -11491,9 +11366,7 @@ /area/ruin/space/has_grav/singularitylab/engineering) "Qx" = ( /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/poster/retro/random{ pixel_y = -32 }, @@ -11553,9 +11426,7 @@ pixel_y = 32 }, /obj/structure/spacevine, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/flora/ausbushes/stalkybush, /turf/open/floor/plating/grass/jungle{ desc = "A patch of overgrown grass. Hints of plasteel plating lay under it."; @@ -11595,9 +11466,7 @@ /area/ruin/space/has_grav/singularitylab) "QI" = ( /obj/structure/spacevine, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/nanotrasen{ pixel_y = 32 }, @@ -11727,9 +11596,7 @@ /turf/open/floor/carpet/nanoweave/purple, /area/ruin/space/has_grav/singularitylab/lab) "Rs" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/engine/hull/reinforced, /area/ruin/space/has_grav/singularitylab/reactor) "Rt" = ( @@ -11746,10 +11613,7 @@ /area/ruin/space/has_grav/singularitylab/reactor) "Rx" = ( /obj/structure/dresser, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -23 - }, +/obj/item/radio/intercom/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, /area/ruin/space/has_grav/singularitylab/civvie) @@ -11844,7 +11708,7 @@ pixel_y = 6; pixel_x = -6 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "RR" = ( @@ -11960,15 +11824,11 @@ }, /area/ruin/space/has_grav/singularitylab/civvie) "Sk" = ( -/obj/machinery/firealarm{ - pixel_y = 28 - }, +/obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "Sm" = ( @@ -12016,7 +11876,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 10 }, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ start_charge = 0 }, /turf/open/floor/plasteel, @@ -12040,9 +11900,7 @@ /area/ruin/space/has_grav/singularitylab/engineering) "Su" = ( /obj/structure/table, -/obj/item/radio/intercom{ - dir = 1 - }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab/lab) "SF" = ( @@ -12094,10 +11952,7 @@ /obj/structure/sign/poster/official/random{ pixel_y = 32 }, -/obj/machinery/firealarm{ - pixel_x = 24; - dir = 8 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/corner/transparent/orange/three_quarters{ dir = 8 }, @@ -12180,9 +12035,7 @@ dir = 1 }, /obj/effect/turf_decal/corner/transparent/orange, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/cargo) "Ts" = ( @@ -12389,11 +12242,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26; - pixel_x = 6 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "TS" = ( @@ -12531,9 +12380,7 @@ "Uo" = ( /obj/structure/table, /obj/structure/spacevine, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/singularitylab/engineering) "Uy" = ( @@ -12593,7 +12440,7 @@ /obj/structure/cable/yellow{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ start_charge = 0 }, /turf/open/floor/plasteel, @@ -12687,7 +12534,7 @@ /obj/effect/turf_decal/corner/opaque/green{ dir = 9 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/item/gun/energy/floragun, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) @@ -12805,22 +12652,19 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/singularitylab/engineering) "VE" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/civvie) "VF" = ( /obj/machinery/door/airlock/public/glass{ - name = "Hydroponics" + name = "Hydroponics"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ruin/space/has_grav/singularitylab/civvie) "VI" = ( /obj/structure/curtain/cloth, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/singularitylab/civvie) "VJ" = ( @@ -12896,9 +12740,7 @@ /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab) "VX" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/sign/nanotrasen{ pixel_x = 32 }, @@ -12953,7 +12795,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/lab) "Wb" = ( -/obj/machinery/power/apc/auto_name/south{ +/obj/machinery/power/apc/auto_name/directional/south{ start_charge = 0 }, /obj/structure/cable/yellow, @@ -13106,9 +12948,7 @@ /area/ruin/space/has_grav/singularitylab/civvie) "WG" = ( /obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, @@ -13191,7 +13031,7 @@ /obj/effect/turf_decal/techfloor{ dir = 5 }, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ start_charge = 0 }, /obj/structure/cable/yellow{ @@ -13211,7 +13051,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/mining{ - name = "Cargo Bay" + name = "Cargo Bay"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 @@ -13254,15 +13095,14 @@ /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/singularitylab) "WX" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/spacevine, /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/singularitylab) "Xa" = ( /obj/machinery/door/airlock/engineering{ - name = "Power Control" + name = "Power Control"; + dir = 8 }, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -13324,7 +13164,8 @@ /area/ruin/space/has_grav/singularitylab/cargo) "Xn" = ( /obj/machinery/door/airlock{ - name = "Barracks" + name = "Barracks"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -13486,6 +13327,13 @@ /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/cargo) +"Ye" = ( +/obj/effect/turf_decal/box, +/obj/item/clothing/shoes/magboots, +/obj/machinery/suit_storage_unit/inherit, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ruin/space/has_grav/singularitylab/engineering) "Yg" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plasteel, @@ -13525,7 +13373,8 @@ /area/ruin/space/has_grav/singularitylab/lab) "Yo" = ( /obj/machinery/door/poddoor{ - id = "singlablas2" + id = "singlablas2"; + dir = 4 }, /turf/open/floor/engine, /area/ruin/space/has_grav/singularitylab/lab) @@ -13567,9 +13416,7 @@ dir = 8 }, /obj/structure/spacevine, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/nanotrasen{ pixel_y = 32 }, @@ -13691,7 +13538,7 @@ /obj/effect/turf_decal/corner/transparent/orange{ dir = 10 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab/cargo) "YU" = ( @@ -13712,9 +13559,7 @@ pixel_x = -32 }, /obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/gun/energy/e_gun/smg{ pixel_y = 6; pixel_x = 5; @@ -13795,9 +13640,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ruin/space/has_grav/singularitylab) "Zp" = ( @@ -13814,18 +13657,14 @@ /area/ruin/space/has_grav/singularitylab/cargo) "Zq" = ( /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood, /area/ruin/space/has_grav/singularitylab/civvie) "Zs" = ( /obj/effect/turf_decal/techfloor{ dir = 5 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "Zt" = ( @@ -13996,7 +13835,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/singularitylab) "ZX" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/singularitylab) "ZY" = ( @@ -16375,7 +16214,7 @@ eR bA lm yi -ru +Ye Yl ru yi @@ -16885,7 +16724,7 @@ QB QB Bc ty -MW +ay ty SZ ty diff --git a/_maps/RandomRuins/SpaceRuins/spacegym.dmm b/_maps/RandomRuins/SpaceRuins/spacegym.dmm index 78372dd57616..6d69992c7910 100644 --- a/_maps/RandomRuins/SpaceRuins/spacegym.dmm +++ b/_maps/RandomRuins/SpaceRuins/spacegym.dmm @@ -56,6 +56,12 @@ /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, @@ -252,7 +258,7 @@ O O O O -h +r O O u diff --git a/_maps/RandomRuins/SpaceRuins/spacemall.dmm b/_maps/RandomRuins/SpaceRuins/spacemall.dmm index 391045cba649..4466f77554c9 100644 --- a/_maps/RandomRuins/SpaceRuins/spacemall.dmm +++ b/_maps/RandomRuins/SpaceRuins/spacemall.dmm @@ -1,44 +1,25 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/turf_decal/corner/opaque/red/three_quarters{ +"ae" = ( +/obj/effect/decal/cleanable/blood/footprints{ dir = 1 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1; + icon_state = "blood2" }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) -"ae" = ( +/area/ruin/space/has_grav/spacemall/shop) +"ag" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "2-4" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - light_range = 1 +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/area/ruin/space/has_grav/spacemall/maint) -"af" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/machinery/paystand, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"ag" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/dorms) "ah" = ( /obj/structure/rack, /obj/effect/turf_decal/siding/thinplating/dark/end{ @@ -65,12 +46,11 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"an" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) +"ap" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "aq" = ( /obj/structure/barricade/wooden/crude, /obj/machinery/door/airlock/maintenance_hatch{ @@ -87,23 +67,41 @@ name = "bathroom floor" }, /area/ruin/space/has_grav/spacemall/dorms) -"au" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/spawner/lootdrop/maintenance, +"at" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/maint) +"au" = ( +/obj/machinery/door/airlock/public/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop) +"ax" = ( +/obj/structure/window/spawner{ + dir = 4 + }, +/obj/machinery/jukebox, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/birch, +/area/ruin/space/has_grav/spacemall/shop2) "ay" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hardware Store" }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/turf_decal/siding/wood{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ dir = 2 }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop) +"aB" = ( +/obj/effect/turf_decal/siding/wood, /obj/structure/cable{ icon_state = "4-8" }, @@ -115,33 +113,6 @@ }, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) -"az" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood/walnut, -/area/ruin/space/has_grav/spacemall/shop) -"aB" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical{ - pixel_y = -5 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/light, -/area/ruin/space/has_grav/spacemall/shop) "aC" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/effect/turf_decal/road/line/transparent/solgovblue, @@ -179,16 +150,21 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "aI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + name = "Clothing Store"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/maint) "aK" = ( /obj/structure/cable{ @@ -197,19 +173,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"aN" = ( -/obj/structure/window/spawner{ - dir = 4 - }, -/obj/machinery/jukebox, -/obj/machinery/light, -/turf/open/floor/wood/birch, -/area/ruin/space/has_grav/spacemall/shop2) -"aQ" = ( -/obj/structure/toilet, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" +"aT" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "aU" = ( /obj/effect/decal/cleanable/plasma, @@ -239,6 +208,14 @@ name = "bathroom floor" }, /area/ruin/space/has_grav/spacemall) +"bb" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "bc" = ( /obj/effect/turf_decal/trimline/transparent/neutral/arrow_cw{ dir = 8 @@ -255,6 +232,45 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) +"bf" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) +"bg" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 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/spacemall/maint) "bh" = ( /obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/machinery/airalarm/directional/east, @@ -263,13 +279,45 @@ /obj/item/stack/sheet/metal/five, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/dorms) -"bl" = ( -/obj/machinery/light/small{ - dir = 1 +"bi" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, /obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) +"bj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 2 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) +"bl" = ( +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "bn" = ( @@ -281,6 +329,23 @@ /obj/item/gun/ballistic/shotgun/toy, /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop2) +"bp" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/closet/secure_closet/freezer/kitchen/wall{ + pixel_x = -30 + }, +/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/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) "bq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -314,14 +379,16 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "bt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shuttle) "bu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -331,17 +398,6 @@ "bw" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/spacemall/dorms) -"bx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "bz" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -363,52 +419,71 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"bB" = ( +"bD" = ( /obj/structure/rack, -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/item/toy/plush/lizardplushie, -/obj/machinery/light/small{ - dir = 4 +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 8 }, -/turf/open/floor/plasteel, +/obj/item/instrument/piano_synth, +/obj/item/instrument/piano_synth{ + pixel_y = 5 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/showroomfloor, /area/ruin/space/has_grav/spacemall/shop2) "bE" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = clothing_shutter; - name = "Shop Shutters" +/obj/machinery/door/airlock{ + name = "Custodian Closet" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"bF" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold/diagonal, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/turf/open/floor/carpet/blue, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"bG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "bH" = ( /obj/structure/grille, /obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/dorms) -"bI" = ( +"bK" = ( /obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"bK" = ( -/obj/structure/curtain{ - open = 0 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/shop) +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "bM" = ( /obj/structure/railing/wood{ dir = 1 @@ -428,23 +503,33 @@ "bP" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/spacemall) -"bV" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 1 +"bR" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) "bW" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/turf/open/floor/plating{ - light_range = 1 +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "bY" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -452,6 +537,16 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"bZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "cd" = ( /obj/structure/railing/wood{ dir = 4 @@ -464,13 +559,23 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"cf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/robust_softdrinks{ - pixel_x = -32 +"ce" = ( +/obj/effect/turf_decal/corner/opaque/blue/three_quarters, +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/shop2) "ch" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 9 @@ -484,18 +589,28 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"ci" = ( +/obj/machinery/camera/autoname{ + dir = 9; + network = list("mall") + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "cj" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/effect/turf_decal/siding, /obj/structure/railing, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) -"cn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "cp" = ( /obj/item/toy/windupToolbox{ pixel_x = -15 @@ -520,11 +635,15 @@ "cs" = ( /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"cv" = ( -/obj/effect/turf_decal/corner/opaque/grey/diagonal, -/obj/machinery/door/airlock, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) +"ct" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "cw" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable{ @@ -538,16 +657,6 @@ }, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) -"cx" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/item/kirbyplants/random, -/obj/machinery/button/door{ - pixel_y = -30; - id = shutters_kitchen; - name = "Kitchen Shutters" - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) "cz" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, @@ -591,16 +700,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"cF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "cG" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -669,144 +768,152 @@ /obj/structure/spider/stickyweb, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) -"cR" = ( -/obj/structure/cable{ - icon_state = "1-2" +"cW" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 }, -/turf/open/floor/plating{ - light_range = 1 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"cX" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Clothing Store" }, -/area/ruin/space/has_grav/spacemall/maint) -"cU" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 +/obj/machinery/door/poddoor/shutters{ + id = clothing_shutter }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/obj/machinery/door/airlock/public/glass{ + name = "Clothing Store"; + locked = 1; + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"cV" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/light{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"cX" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 8 - }, -/obj/machinery/light{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 1 +/obj/machinery/door/poddoor/shutters{ + id = "clothing_shutter"; + dir = 4 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/shop) "cY" = ( -/obj/effect/turf_decal/siding/thinplating{ +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/machinery/light/directional/east, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/maint) "da" = ( /obj/structure/closet/crate/bin, /obj/effect/turf_decal/corner/transparent/black/diagonal, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "db" = ( -/obj/structure/railing{ +/obj/structure/rack, +/obj/item/circuitboard/computer/arcade/orion_trail, +/obj/machinery/light{ dir = 4 }, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) -"dc" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, +/obj/structure/rack, +/obj/item/circuitboard/computer/arcade/orion_trail, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/box/white, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/shop) "dd" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/camera/autoname{ + dir = 5; + network = list("mall") }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) +"df" = ( +/obj/structure/curtain{ + open = 0 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/shop) +"dg" = ( +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/spacemall) +"dh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Liquor Store"; dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"de" = ( -/obj/item/clothing/under/costume/skeleton{ - pixel_y = -3 +/turf/open/floor/wood/walnut, +/area/ruin/space/has_grav/spacemall/shop) +"di" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 }, -/obj/item/clothing/under/costume/skeleton{ - pixel_y = -3 +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical{ + pixel_y = -5 }, -/obj/item/clothing/under/costume/skeleton{ - pixel_y = -3 +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 }, -/obj/item/clothing/under/costume/griffin, -/obj/item/clothing/under/costume/griffin, -/obj/item/clothing/under/costume/griffin, -/obj/item/clothing/under/costume/gondola{ - pixel_y = 5 +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 }, -/obj/item/clothing/under/costume/gondola{ - pixel_y = 5 +/obj/machinery/light{ + dir = 8 }, -/obj/item/clothing/under/costume/gondola{ +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ pixel_y = 5 }, -/obj/structure/kitchenspike{ - name = "clothing rack"; - can_buckle = 0 +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical{ + pixel_y = -5 }, -/obj/effect/turf_decal/box/white, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"dh" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"di" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating{ - light_range = 3 +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 }, -/area/ruin/space/has_grav/spacemall/maint) +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/light, +/area/ruin/space/has_grav/spacemall/shop) "dj" = ( /obj/structure/cable{ icon_state = "4-8" @@ -817,15 +924,33 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "dk" = ( -/obj/effect/decal/cleanable/blood/footprints{ - dir = 1; - icon_state = "blood2" +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/obj/machinery/door/airlock, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/light{ +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/obj/machinery/door/airlock{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"dl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "dm" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/structure/cable{ @@ -866,35 +991,24 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "dw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/transparent/green{ dir = 1 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"dz" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) -"dB" = ( -/obj/machinery/door/airlock/engineering, -/obj/structure/cable{ - icon_state = "4-8" +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/machinery/light/small/directional/west, +/obj/structure/mirror{ + pixel_y = 30 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4; + welded = 1 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "dC" = ( /obj/effect/turf_decal/corner/transparent/mauve/three_quarters{ dir = 1 @@ -939,16 +1053,10 @@ /obj/item/clothing/under/drip, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"dI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +"dH" = ( +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/shop) "dJ" = ( /obj/effect/decal/cleanable/blood/gibs/body, /obj/structure/cable{ @@ -972,6 +1080,20 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"dM" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) +"dN" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "dO" = ( /obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/structure/spider/stickyweb, @@ -1015,17 +1137,6 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"dW" = ( -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) "dY" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -1048,26 +1159,35 @@ /obj/machinery/recycler, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"eb" = ( +"ea" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"ec" = ( -/obj/machinery/shower{ - dir = 1 +/obj/machinery/door/poddoor/shutters{ + id = shutters_kitchen }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, +/obj/machinery/door/poddoor/shutters{ + id = "shutters_kitchen"; + dir = 4 + }, +/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) -"ef" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/item/reagent_containers/food/snacks/spidereggsham, +"eb" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/area/ruin/space/has_grav/spacemall/shop) "eg" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 10 @@ -1078,6 +1198,12 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"eh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/dorms) "ek" = ( /obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/item/kirbyplants/random, @@ -1091,21 +1217,33 @@ }, /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop2) -"es" = ( -/obj/structure/cable{ - icon_state = "4-8" +"em" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) +"eo" = ( +/obj/effect/turf_decal/corner/opaque/blue/half{ + dir = 8 }, +/obj/machinery/light/directional/west, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"es" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/animalhide/human, +/obj/item/reagent_containers/food/snacks/meat/slab/human, +/obj/item/reagent_containers/food/snacks/meat/slab/human{ + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/spacemall/dorms) "eu" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1119,7 +1257,15 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"ex" = ( +"ev" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) +"ex" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -1139,54 +1285,43 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/eighties, /area/ruin/space/has_grav/spacemall/shop2) +"ez" = ( +/obj/effect/turf_decal/corner/opaque/red{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "eB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "eC" = ( -/obj/item/clothing/under/misc/durathread{ - pixel_y = -4 - }, -/obj/item/clothing/under/misc/durathread{ - pixel_y = -4 - }, -/obj/item/clothing/under/misc/durathread{ - pixel_y = -4 - }, -/obj/item/clothing/under/misc/overalls, -/obj/item/clothing/under/misc/overalls, -/obj/item/clothing/under/misc/overalls, -/obj/structure/kitchenspike{ - name = "clothing rack"; - can_buckle = 0 - }, -/obj/item/clothing/under/pants/blackjeans{ - pixel_y = 5 +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/secure/plasma, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/item/clothing/under/pants/blackjeans{ - pixel_y = 5 +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/north{ + start_charge = 0 }, -/obj/item/clothing/under/pants/blackjeans{ - pixel_y = 5 +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/effect/turf_decal/box/white, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"eF" = ( -/obj/machinery/door/airlock{ - name = "Dorm 6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/item/stack/sheet/mineral/uranium/twenty, +/obj/structure/closet/crate/radiation{ + name = "fuel crate" }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) "eH" = ( /obj/effect/decal/cleanable/robot_debris/limb, /obj/effect/decal/cleanable/dirt, @@ -1198,27 +1333,6 @@ /obj/structure/flora/junglebush/c, /turf/open/floor/grass, /area/ruin/space/has_grav/spacemall) -"eL" = ( -/obj/effect/turf_decal/corner/opaque/red{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"eM" = ( -/obj/effect/turf_decal/corner/transparent/red/diagonal, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall) -"eP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) "eS" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/transparent/black/diagonal, @@ -1273,15 +1387,34 @@ /obj/effect/turf_decal/corner/opaque/red/mono, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"fd" = ( +"fc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 + dir = 4 }, -/obj/effect/turf_decal/siding/wideplating/dark{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"fg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/area/ruin/space/has_grav/spacemall/dorms) "fh" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/transparent/solgovgold/full, @@ -1291,16 +1424,32 @@ /obj/effect/spawner/lootdrop/techstorage/engineering, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/maint) -"fm" = ( -/obj/structure/cable{ - icon_state = "4-8" +"fn" = ( +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/chair{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/machinery/light{ + dir = 1 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall) +"fo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, /turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/shop2) "fq" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt/dust, @@ -1311,18 +1460,38 @@ /obj/machinery/food_cart, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"fw" = ( -/obj/machinery/light{ - dir = 8 +"fv" = ( +/obj/machinery/computer/secure_data/laptop{ + dir = 1 }, -/turf/open/floor/plating{ - light_range = 1 +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 10 }, -/area/ruin/space/has_grav/spacemall/maint) -"fx" = ( -/obj/machinery/atmospherics/pipe/manifold/general, /obj/machinery/light, -/turf/open/floor/plasteel/freezer, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/computer/secure_data/laptop{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 10 + }, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"fw" = ( +/obj/effect/turf_decal/corner/transparent/mauve/half{ + dir = 1 + }, +/obj/structure/table, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "fy" = ( /obj/structure/spider/stickyweb, @@ -1351,15 +1520,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"fB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "fC" = ( /obj/machinery/door/window{ dir = 1 @@ -1376,20 +1536,18 @@ /obj/machinery/paystand, /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) -"fI" = ( -/obj/machinery/camera/autoname{ - dir = 6; - network = list("mall") - }, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 1 +"fH" = ( +/obj/effect/turf_decal/corner/transparent/green, +/obj/structure/sign/poster/official/soft_cap_pop_art{ + pixel_y = -30 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"fI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/light_construct/directional/east, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop2) "fK" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1406,10 +1564,29 @@ /obj/structure/spider/stickyweb, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) +"fL" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "engishop_shutters"; + name = "Shop Shutters" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "fM" = ( -/obj/structure/railing, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "fN" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1420,41 +1597,54 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"fO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop2) -"fP" = ( -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_y = 32 - }, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/maint) "fS" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 +/obj/machinery/camera/autoname{ + dir = 10; + network = list("mall"); + pixel_x = -7 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"fV" = ( -/obj/structure/rack, -/obj/effect/turf_decal/box/white, -/obj/item/bodypart/l_arm, -/obj/item/organ/ears, -/obj/item/organ/eyes, -/obj/structure/sign/poster/contraband/smoke{ - pixel_x = -32 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/light{ +/turf/open/floor/plating{ + light_range = 1 + }, +/area/ruin/space/has_grav/spacemall/maint) +"fU" = ( +/obj/effect/turf_decal/corner/transparent/green{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"fW" = ( +/area/ruin/space/has_grav/spacemall/dorms) +"fV" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock{ + locked = 1; + id_tag = staffdoors; + name = "Kitchen" + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock{ + locked = 1; + id_tag = "staffdoors"; + name = "Kitchen"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) +"fW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 }, @@ -1462,55 +1652,115 @@ name = "bathroom floor" }, /area/ruin/space/has_grav/spacemall) -"fY" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "fZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shuttle) -"gb" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 +"ga" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating{ + light_range = 3 }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/area/ruin/space/has_grav/spacemall/maint) +"gd" = ( +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_y = 32 + }, +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/maint) +"gf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "gg" = ( /obj/effect/turf_decal/corner/opaque/black/diagonal, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"gh" = ( -/obj/machinery/computer/secure_data/laptop{ +"gi" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -30 + }, +/obj/machinery/light{ dir = 1 }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 10 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/light, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -30 + }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"gi" = ( -/obj/structure/flora/ausbushes/ywflowers/hell, -/turf/open/floor/grass, /area/ruin/space/has_grav/spacemall) "gk" = ( -/obj/effect/turf_decal/corner/opaque/red/three_quarters{ +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"gl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall) "gm" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1526,32 +1776,30 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"gp" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Liquor Store" +"gq" = ( +/obj/effect/turf_decal/trimline/transparent/neutral/arrow_cw{ + dir = 8 }, -/turf/open/floor/wood/walnut, +/obj/effect/turf_decal/corner/transparent/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"gr" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) "gu" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/donkpockets, /obj/effect/turf_decal/corner/transparent/black/diagonal, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"gw" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Hardware Store" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop) "gx" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/structure/chair{ @@ -1559,6 +1807,27 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) +"gz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"gB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/wooden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) "gC" = ( /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/plasteel/dark, @@ -1574,31 +1843,20 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"gG" = ( -/obj/effect/turf_decal/corner/opaque/blue/half{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) "gH" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 5; - network = list("mall") - }, -/obj/structure/disposalpipe/segment{ - dir = 1 +/obj/structure/rack, +/obj/effect/turf_decal/box/white, +/obj/item/binoculars, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, +/obj/structure/rack, +/obj/effect/turf_decal/box/white, +/obj/item/binoculars, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/shop) "gI" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1624,28 +1882,44 @@ /obj/effect/turf_decal/corner/transparent/black/diagonal, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"gM" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/grey/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/machinery/door/poddoor/shutters{ - id = icecream_kiosk - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) "gQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 5 }, /turf/open/floor/carpet/blue, /area/ruin/space/has_grav/spacemall/shop) +"gR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + light_range = 1 + }, +/area/ruin/space/has_grav/spacemall/maint) +"gS" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) "gU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + id = clothing_shutter + }, +/obj/structure/window/fulltile, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters{ + id = "clothing_shutter"; + dir = 4 }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, /turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/shop) "gW" = ( /obj/machinery/icecream_vat, /obj/effect/turf_decal/corner/opaque/grey/diagonal, @@ -1659,32 +1933,24 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "gZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/snacks/breadslice/moldy{ + pixel_y = 5 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"ha" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 +/obj/structure/mirror{ + pixel_x = 30 }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + welded = 1 }, /turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) -"hb" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/marker_beacon, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/dorms) "hc" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1694,14 +1960,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"hd" = ( -/obj/structure/rack, -/obj/structure/window/reinforced/spawner, -/obj/effect/spawner/lootdrop/beaker_loot_spawner, -/obj/effect/spawner/lootdrop/beaker_loot_spawner, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/shop2) "he" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 8 @@ -1715,9 +1973,17 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop) "hf" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/lattice/catwalk, -/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "hh" = ( @@ -1784,6 +2050,16 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"hw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "hx" = ( /obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/effect/turf_decal/corner/transparent/green/diagonal, @@ -1798,16 +2074,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/maint) -"hz" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Arcade" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop2) "hA" = ( /obj/effect/turf_decal/corner/transparent/blue/half{ dir = 1 @@ -1821,14 +2087,27 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "hB" = ( -/obj/machinery/door/airlock/public/glass, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/toilet{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/shop2) +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/spacemall) +"hC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/green/full, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) "hE" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/transparent/solgovgold/full, @@ -1837,18 +2116,36 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/maint) "hF" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/microwave, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "hI" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = clothing_shutter +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/window/fulltile, -/turf/closed/wall, -/area/ruin/space/has_grav/spacemall/shop) +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "hK" = ( /obj/machinery/light/small{ dir = 1 @@ -1904,19 +2201,11 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "hS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"hW" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/structure/chair/sofa/right{ + dir = 1 }, /turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/shop) +/area/ruin/space/has_grav/spacemall/dorms) "hY" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -1928,25 +2217,13 @@ /obj/effect/turf_decal/corner/transparent/red/diagonal, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) -"ib" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, +"id" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) -"id" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/warning/vacuum{ - pixel_x = -30 +/turf/open/floor/plating{ + light_range = 1 }, -/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/maint) "ih" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -1956,21 +2233,17 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) "ii" = ( -/obj/structure/table/wood, -/obj/item/trash/plate{ - pixel_x = 7 - }, -/obj/item/candle{ - pixel_y = 9 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 }, -/obj/item/organ/liver{ - pixel_x = 7 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/disposalpipe/broken{ - dir = 1 +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "im" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/structure/disposalpipe/junction/yjunction{ @@ -1978,6 +2251,18 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) +"io" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/maint) "ip" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/item/kitchen/knife, @@ -1985,10 +2270,20 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) "iq" = ( -/obj/structure/rack, -/obj/item/computer_hardware/recharger, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/obj/machinery/computer/arcade, +/obj/machinery/light{ + dir = 8 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/directional/west, +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/ruin/space/has_grav/spacemall/shop2) "ir" = ( /obj/effect/turf_decal/corner/transparent/mauve/three_quarters{ dir = 4 @@ -2011,6 +2306,19 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) +"iu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "iv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 9 @@ -2024,29 +2332,15 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "iy" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname{ - dir = 9; - network = list("mall") - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"iz" = ( -/obj/structure/safe/floor, -/obj/item/stack/spacecash/c500, -/obj/item/toy/plush/lizardplushie, -/obj/effect/turf_decal/corner/opaque/grey/full, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---", - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, -/obj/structure/safe/floor, -/obj/item/spacecash/bundle/c500, -/obj/item/toy/plush/lizardplushie, -/obj/effect/turf_decal/corner/opaque/grey/full, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/turf/open/floor/plating, +/obj/structure/table/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/paystand, +/turf/open/floor/carpet/blue, /area/ruin/space/has_grav/spacemall/shop) +"iA" = ( +/obj/structure/flora/ausbushes/ywflowers/hell, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) "iB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2058,36 +2352,12 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"iC" = ( -/obj/effect/turf_decal/box, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/machinery/light/small{ - dir = 1 +"iH" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 4 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"iG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 2 - }, -/turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/dorms) -"iH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "iI" = ( /obj/structure/cable{ icon_state = "2-8" @@ -2115,14 +2385,30 @@ /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) "iN" = ( -/obj/item/reagent_containers/glass/rag{ - pixel_x = -17 +/obj/structure/fans/tiny, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/door/window{ +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall) "iO" = ( /obj/structure/railing{ dir = 4 @@ -2131,16 +2417,13 @@ /obj/machinery/disposal/bin, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"iP" = ( -/obj/structure/rack, -/obj/item/modular_computer/laptop, -/obj/item/computer_hardware/card_slot, -/obj/item/computer_hardware/card_slot, -/obj/structure/sign/poster/retro/pdaancient{ - pixel_x = 32 +"iQ" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "iR" = ( /obj/structure/railing{ dir = 4 @@ -2165,18 +2448,31 @@ /obj/effect/turf_decal/siding/wideplating/dark/end, /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop) +"iV" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/item/kitchen/knife/plastic{ + pixel_x = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"iX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) "iZ" = ( -/obj/machinery/door/airlock/external/glass, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/railing{ + dir = 4 }, -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/decal/cleanable/blood/footprints, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/fans/tiny, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shuttle) +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) "jb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, @@ -2186,10 +2482,18 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "jf" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/light/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) +"jg" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shuttle) "ji" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -2232,6 +2536,16 @@ /obj/item/ammo_box/magazine/co9mm, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"jo" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "jp" = ( /obj/effect/turf_decal/road/line/transparent/solgovblue, /obj/structure/rack, @@ -2257,21 +2571,6 @@ /obj/structure/window/spawner, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop2) -"jy" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "jz" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -2284,6 +2583,15 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"jA" = ( +/obj/item/reagent_containers/glass/rag{ + pixel_x = -17 + }, +/obj/machinery/door/window{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "jD" = ( /obj/effect/turf_decal/box, /obj/structure/closet/crate/secure, @@ -2321,20 +2629,19 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "jI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/light{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 + dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/wood, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "jJ" = ( /obj/structure/cable{ @@ -2358,13 +2665,14 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"jL" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ +"jM" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/has_grav/spacemall/dorms) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "jO" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2375,21 +2683,26 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"jQ" = ( -/obj/structure/cable{ - icon_state = "2-8" +"jP" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1; + icon_state = "blood2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/light/small{ - dir = 4 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1; + icon_state = "blood2" }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "jR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -2406,6 +2719,10 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"jV" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) "jW" = ( /obj/structure/rack, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -2418,6 +2735,14 @@ /obj/item/instrument/eguitar, /turf/open/floor/plasteel/showroomfloor, /area/ruin/space/has_grav/spacemall/shop2) +"jX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "kb" = ( /obj/structure/mirror{ pixel_x = -30 @@ -2427,35 +2752,12 @@ }, /area/ruin/space/has_grav/spacemall/dorms) "kc" = ( -/obj/machinery/door/airlock/glass{ - name = "Break Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"kd" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"ke" = ( -/obj/machinery/door/airlock/glass_large, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/corner/transparent/mauve/half{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) +/obj/structure/table, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "kf" = ( /obj/effect/decal/cleanable/glass, /obj/structure/cable{ @@ -2467,18 +2769,23 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop2) -"kh" = ( -/obj/machinery/light{ +"kg" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"kl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"kl" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "kn" = ( /obj/structure/table/reinforced, /turf/open/floor/carpet/blue, @@ -2504,21 +2811,40 @@ }, /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop) +"ku" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "kw" = ( -/obj/effect/turf_decal/corner/transparent/green, -/obj/machinery/light, +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/green/full, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/instrument/piano_synth, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"ky" = ( -/obj/item/storage/toolbox/electrical, -/obj/item/stack/sheet/mineral/plasma/five, -/obj/structure/table, -/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/maint) -"kz" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/eighties, -/area/ruin/space/has_grav/spacemall/shop2) +"kA" = ( +/obj/structure/safe/floor, +/obj/item/stack/spacecash/c500, +/obj/item/toy/plush/lizardplushie, +/obj/effect/turf_decal/corner/opaque/grey/full, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---",desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/safe/floor, +/obj/item/spacecash/bundle/c500, +/obj/item/toy/plush/lizardplushie, +/obj/effect/turf_decal/corner/opaque/grey/full, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop) "kC" = ( /obj/structure/rack, /obj/item/clothing/head/goatpelt, @@ -2550,30 +2876,44 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"kF" = ( -/obj/machinery/light{ - dir = 4 +"kI" = ( +/obj/item/clothing/under/misc/durathread{ + pixel_y = -4 }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" +/obj/item/clothing/under/misc/durathread{ + pixel_y = -4 }, -/area/ruin/space/has_grav/spacemall/dorms) -"kG" = ( +/obj/item/clothing/under/misc/durathread{ + pixel_y = -4 + }, +/obj/item/clothing/under/misc/overalls, +/obj/item/clothing/under/misc/overalls, +/obj/item/clothing/under/misc/overalls, +/obj/structure/kitchenspike{ + name = "clothing rack"; + can_buckle = 0 + }, +/obj/item/clothing/under/pants/blackjeans{ + pixel_y = 5 + }, +/obj/item/clothing/under/pants/blackjeans{ + pixel_y = 5 + }, +/obj/item/clothing/under/pants/blackjeans{ + pixel_y = 5 + }, +/obj/effect/turf_decal/box/white, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/light{ - dir = 4 +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"kL" = ( +/obj/structure/sign/poster/contraband/revolver{ + pixel_x = 32 }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) -"kI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/dorms) +/turf/open/floor/wood/walnut, +/area/ruin/space/has_grav/spacemall/shop) "kN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 @@ -2587,24 +2927,35 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"kO" = ( -/obj/effect/turf_decal/corner/opaque/red{ - dir = 9 +"kQ" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"kZ" = ( +/obj/structure/mirror{ + pixel_y = 30 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel, +/obj/structure/mirror{ + pixel_y = 30 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4; + welded = 1 + }, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) -"kU" = ( -/obj/structure/rack, -/obj/item/modular_computer/tablet, -/obj/item/computer_hardware/network_card, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) "la" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2623,41 +2974,56 @@ /obj/item/toy/foamblade, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"lc" = ( -/obj/structure/cable{ - icon_state = "1-2" +"lg" = ( +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/door/airlock/external/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"lf" = ( -/obj/machinery/door/airlock/glass, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"lh" = ( +/obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 2 + dir = 10 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"lg" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Music Store" +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/shop2) +"li" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "ll" = ( /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall) @@ -2719,76 +3085,66 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "ls" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, /obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 + dir = 9 }, -/turf/open/floor/carpet/green, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) "lw" = ( -/obj/effect/turf_decal/siding/thinplating/light/corner{ - dir = 8 +/obj/effect/turf_decal/corner/opaque/blue/half, +/obj/item/clothing/suit/whitedress, +/obj/item/clothing/suit/whitedress, +/obj/item/clothing/suit/whitedress, +/obj/item/clothing/under/dress/blacktango{ + pixel_y = 3 }, -/obj/item/kirbyplants/random, -/obj/structure/railing/corner{ - dir = 8 +/obj/item/clothing/under/dress/blacktango{ + pixel_y = 3 }, -/obj/machinery/light{ - dir = 8 +/obj/item/clothing/under/dress/blacktango{ + pixel_y = 3 }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) -"lz" = ( -/obj/structure/rack, -/obj/item/spacecash/bundle/c1000, -/obj/effect/turf_decal/trimline/transparent/neutral/arrow_cw{ - dir = 8 +/obj/item/clothing/under/dress/redeveninggown{ + pixel_y = 3 }, -/obj/effect/turf_decal/corner/transparent/black{ - dir = 6 +/obj/item/clothing/under/dress/redeveninggown{ + pixel_y = 3 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"lA" = ( -/obj/effect/turf_decal/corner/opaque/grey/diagonal, -/obj/machinery/button/door{ - pixel_x = -24; - id = icecream_kiosk; - name = "Kiosk Shutters" +/obj/item/clothing/under/dress/redeveninggown{ + pixel_y = 3 }, -/obj/machinery/camera/autoname{ - dir = 6; - network = list("mall") +/obj/structure/kitchenspike{ + name = "clothing rack"; + can_buckle = 0 }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---", - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"lz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/obj/effect/turf_decal/corner/opaque/grey/diagonal, -/obj/machinery/button/door{ - pixel_x = -25; - id = "icecream_kiosk"; - name = "Kiosk Shutters"; - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/maint) +"lA" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_y = 5 +/obj/item/kitchen/fork/plastic{ + pixel_x = -10 }, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/structure/closet/wall{ - pixel_y = 30 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/item/spacecash/bundle/c100, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "lD" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -2825,26 +3181,39 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "lH" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 4 +/obj/structure/chair/sofa/left{ + dir = 1 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) "lI" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/green{ - dir = 4 +/mob/living/simple_animal/hostile/cockroach, +/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/shop) "lL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/structure/rack, +/obj/item/modular_computer/tablet, +/obj/item/computer_hardware/network_card, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"lN" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "lO" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -2856,68 +3225,80 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"lS" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/north, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "lT" = ( /obj/structure/table/wood, /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) -"lU" = ( +"lZ" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/directional/east, +/obj/structure/lattice, +/turf/open/floor/plating{ + light_range = 1 }, +/area/ruin/space/has_grav/spacemall/maint) +"ma" = ( /obj/structure/cable{ - icon_state = "1-4" + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"lX" = ( -/obj/structure/chair/sofa{ +/obj/structure/disposalpipe/junction/flip{ dir = 1 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"lZ" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"md" = ( +/obj/machinery/door/airlock/glass_large, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/item/kitchen/fork/plastic{ - pixel_x = -10 +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"me" = ( +/obj/structure/rack, +/obj/effect/turf_decal/box/white, +/obj/item/bodypart/l_arm, +/obj/item/organ/ears, +/obj/item/organ/eyes, +/obj/structure/sign/poster/contraband/smoke{ + pixel_x = -32 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"mb" = ( -/obj/structure/lattice/catwalk, +/area/ruin/space/has_grav/spacemall/shop) +"mf" = ( /obj/structure/cable{ - icon_state = "2-9" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"md" = ( -/obj/effect/spawner/lootdrop, -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 1 + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"mf" = ( -/obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/open/space/basic, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/broken, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "mg" = ( /obj/structure/sign/departments/security{ @@ -2926,16 +3307,6 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"mj" = ( -/obj/machinery/camera/autoname{ - dir = 9; - network = list("mall") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) "ml" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 @@ -2949,32 +3320,12 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "mp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/footprints, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"mq" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/robust_softdrinks{ + pixel_x = -32 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/shop) "mr" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/machinery/camera/autoname{ @@ -2987,11 +3338,6 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"mu" = ( -/obj/machinery/light, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) "mv" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3002,55 +3348,51 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "mx" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/light{ + dir = 4 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) -"mB" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Toy Store" +"my" = ( +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/door/airlock/external/glass{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) -"mC" = ( -/obj/effect/turf_decal/corner/transparent/red/diagonal, -/obj/structure/chair{ +/obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall) -"mD" = ( -/obj/machinery/door/airlock{ - name = "Executive Office" +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/structure/fans/tiny, +/turf/template_noop, +/area/template_noop) +"mz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"mB" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating{ + light_range = 1 }, -/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) +"mH" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) "mI" = ( /obj/structure/sign/poster/contraband/grey_tide{ pixel_y = -32 @@ -3066,6 +3408,17 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"mM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "mN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/turf_decal/corner/transparent/green/diagonal, @@ -3088,104 +3441,39 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"mR" = ( -/obj/effect/turf_decal/corner/opaque/blue/half, -/obj/item/clothing/suit/whitedress, -/obj/item/clothing/suit/whitedress, -/obj/item/clothing/suit/whitedress, -/obj/item/clothing/under/dress/blacktango{ - pixel_y = 3 - }, -/obj/item/clothing/under/dress/blacktango{ - pixel_y = 3 +"mT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Executive Office" }, -/obj/item/clothing/under/dress/blacktango{ - pixel_y = 3 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/clothing/under/dress/redeveninggown{ - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/obj/item/clothing/under/dress/redeveninggown{ - pixel_y = 3 +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"mW" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 }, -/obj/item/clothing/under/dress/redeveninggown{ - pixel_y = 3 - }, -/obj/structure/kitchenspike{ - name = "clothing rack"; - can_buckle = 0 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"mS" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"mT" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Executive Office" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"mU" = ( -/obj/structure/rack, -/obj/effect/turf_decal/box/white, -/obj/item/bodypart/chest, -/obj/item/organ/lungs, -/obj/item/organ/tongue, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"mV" = ( -/obj/structure/flora/ausbushes, -/turf/open/floor/grass, -/area/ruin/space/has_grav/spacemall) -"mW" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 6 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"mX" = ( -/obj/structure/chair/office/light, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/shop) "mY" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/stairs, /area/ruin/space/has_grav/spacemall/shop2) -"nc" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +"mZ" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/eighties, +/area/ruin/space/has_grav/spacemall/shop2) "nf" = ( /obj/structure/railing/wood{ dir = 1 @@ -3204,67 +3492,42 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"ng" = ( -/obj/machinery/light{ +"nl" = ( +/obj/effect/turf_decal/corner/opaque/red{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +/obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/carpet/blue, -/area/ruin/space/has_grav/spacemall/shop) -"ni" = ( -/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, -/obj/item/clothing/under/dress/striped{ - pixel_y = 4 - }, -/obj/item/clothing/under/dress/striped{ - pixel_y = 4 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/item/clothing/under/dress/striped{ - pixel_y = 4 +/obj/effect/turf_decal/corner/opaque/red{ + dir = 9 }, -/obj/structure/kitchenspike{ - name = "clothing rack"; - can_buckle = 0 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 }, -/obj/effect/turf_decal/box/white, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/light/dim/directional/west, +/obj/effect/decal/cleanable/blood, +/obj/structure/spider/stickyweb, +/obj/structure/disposalpipe/segment{ + dir = 2 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"nj" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) -"nk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 +"nm" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname{ + dir = 9; + network = list("mall") }, -/turf/open/floor/plasteel, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "nn" = ( /obj/structure/railing/wood{ @@ -3303,17 +3566,11 @@ /obj/structure/table, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) -"nu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ +"nt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/maint) "ny" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -3329,18 +3586,32 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) "nA" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/door/airlock{ + name = "Dorm 1" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock{ + name = "Dorm 5"; dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 + dir = 4 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/barricade/wooden, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "nC" = ( /obj/structure/window/reinforced{ dir = 8 @@ -3362,6 +3633,16 @@ }, /turf/open/floor/wood/birch, /area/ruin/space/has_grav/spacemall/shop2) +"nH" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "nI" = ( /obj/effect/turf_decal/corner/transparent/blue/diagonal, /obj/effect/turf_decal/trimline/opaque/neutral/arrow_cw{ @@ -3384,20 +3665,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"nL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "nN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 10 @@ -3408,54 +3675,106 @@ /turf/open/floor/carpet/blue, /area/ruin/space/has_grav/spacemall/shop) "nP" = ( -/obj/effect/decal/cleanable/wrapping, -/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plasteel, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "nQ" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/ruin/space/has_grav/spacemall) -"nT" = ( -/obj/machinery/door/airlock/public/glass{ - locked = 1; - name = "Computer Store" - }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop) -"nU" = ( -/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"nR" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, /obj/machinery/paystand, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/area/ruin/space/has_grav/spacemall) "nV" = ( -/obj/structure/mirror{ - pixel_y = 30 +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/power/apc/auto_name/west, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + start_charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"nW" = ( -/obj/structure/rack, -/obj/effect/turf_decal/box/white, -/obj/item/organ/moth_wings, -/obj/item/organ/brain, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"nY" = ( +/obj/machinery/door/airlock{ + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock{ + name = "Dorm 6"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "oe" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -3464,20 +3783,20 @@ }, /area/ruin/space/has_grav/spacemall) "oh" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 +/obj/effect/spawner/lootdrop, +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/structure/rack, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "oj" = ( /obj/effect/turf_decal/corner/opaque/grey/diagonal, /obj/structure/chair/sofa{ @@ -3504,42 +3823,52 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"op" = ( -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) "oq" = ( /obj/structure/spider/stickyweb, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) -"os" = ( -/obj/structure/railing{ - dir = 8 +"ot" = ( +/obj/structure/rack, +/obj/item/modular_computer/laptop, +/obj/item/computer_hardware/card_slot, +/obj/item/computer_hardware/card_slot, +/obj/structure/sign/poster/retro/pdaancient{ + pixel_x = 32 }, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "ov" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/clothing/under/costume/skeleton{ + pixel_y = -3 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 +/obj/item/clothing/under/costume/skeleton{ + pixel_y = -3 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 4 +/obj/item/clothing/under/costume/skeleton{ + pixel_y = -3 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/item/clothing/under/costume/griffin, +/obj/item/clothing/under/costume/griffin, +/obj/item/clothing/under/costume/griffin, +/obj/item/clothing/under/costume/gondola{ + pixel_y = 5 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) +/obj/item/clothing/under/costume/gondola{ + pixel_y = 5 + }, +/obj/item/clothing/under/costume/gondola{ + pixel_y = 5 + }, +/obj/structure/kitchenspike{ + name = "clothing rack"; + can_buckle = 0 + }, +/obj/effect/turf_decal/box/white, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "ox" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow{ @@ -3555,32 +3884,17 @@ /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop) "oz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass, -/turf/open/floor/plating{ - light_range = 3 - }, -/area/ruin/space/has_grav/spacemall/maint) -"oB" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/structure/disposalpipe/segment{ + dir = 1 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) +/area/ruin/space/has_grav/spacemall/dorms) "oE" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3614,21 +3928,31 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"oK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - name = "Clothing Store" +"oL" = ( +/obj/machinery/atmospherics/pipe/manifold/general, +/obj/machinery/light, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/spacemall/dorms) +"oM" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /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 = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/turf/open/floor/plasteel, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "oN" = ( /obj/structure/cable{ @@ -3646,18 +3970,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"oP" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "oQ" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/structure/chair{ @@ -3666,10 +3978,11 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) "oR" = ( -/obj/effect/turf_decal/corner/opaque/red{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) "oY" = ( /obj/machinery/airalarm/directional/west, @@ -3677,26 +3990,63 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "oZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/small/directional/north, /obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"pb" = ( -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/grass, -/area/ruin/space/has_grav/spacemall) -"pd" = ( -/obj/effect/turf_decal/corner/transparent/mauve/half{ - dir = 1 +"pa" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/table, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/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/spacemall/maint) "pe" = ( /turf/closed/wall, /area/ruin/space/has_grav/spacemall/shop) +"ph" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "pi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -3729,24 +4079,59 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) -"po" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +"pn" = ( +/obj/machinery/door/airlock{ + name = "Dorm 3" }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/area/ruin/space/has_grav/spacemall/dorms) -"pp" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/cobweb, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) -"pt" = ( +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock{ + name = "Dorm 7"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) +"po" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/spacemall/dorms) +"pr" = ( +/obj/structure/table/glass, +/obj/machinery/paystand, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"ps" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"pt" = ( /obj/structure/sign/warning/chemdiamond{ pixel_y = -32 }, @@ -3765,16 +4150,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/shop2) -"pu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) "pw" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3784,39 +4159,33 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "px" = ( -/obj/effect/decal/cleanable/blood/footprints{ - dir = 1; - icon_state = "blood2" - }, -/obj/machinery/camera/autoname{ - dir = 5; - network = list("mall") - }, +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/machinery/paystand, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"pG" = ( -/obj/effect/turf_decal/corner/transparent/red/diagonal, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) +"pz" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) +"pD" = ( +/obj/machinery/power/apc/auto_name/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/secure, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) "pH" = ( /obj/structure/grille, /obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall) -"pK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "pL" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3839,6 +4208,17 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"pN" = ( +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "pQ" = ( /obj/machinery/door/window/brigdoor, /obj/effect/turf_decal/corner/opaque/blue/diagonal, @@ -3874,15 +4254,19 @@ /obj/structure/table, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop2) -"pV" = ( -/obj/structure/sign/warning/vacuum{ - pixel_y = 30 +"pT" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/camera/autoname{ + dir = 10; + network = list("mall") }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) "pX" = ( /obj/effect/turf_decal/siding/thinplating/dark, /obj/structure/cable{ @@ -3919,6 +4303,14 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) +"qd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "qf" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/opaque/blue/three_quarters{ @@ -3967,18 +4359,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"qi" = ( -/obj/machinery/door/airlock{ - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) "qj" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /turf/open/floor/plasteel, @@ -4003,9 +4383,16 @@ /turf/open/floor/wood/birch, /area/ruin/space/has_grav/spacemall/shop2) "qn" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/ruin/space/has_grav/spacemall) +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/small/directional/east, +/obj/structure/railing{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) "qo" = ( /obj/effect/turf_decal/trimline/opaque/black/arrow_ccw{ dir = 5 @@ -4023,10 +4410,10 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "qq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/red{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, /turf/open/floor/plasteel, @@ -4102,43 +4489,28 @@ }, /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/spacemall/dorms) -"qA" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ +"qz" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"qC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/light_construct, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop2) +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) +"qA" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) "qD" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop) "qE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, +/obj/effect/spawner/lootdrop, +/obj/effect/spawner/lootdrop, +/obj/structure/rack, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "qF" = ( @@ -4147,18 +4519,12 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"qG" = ( -/obj/machinery/camera/autoname{ - dir = 10; - network = list("mall"); - pixel_x = -7 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - light_range = 1 +"qJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "qK" = ( /turf/closed/wall/r_wall, @@ -4188,6 +4554,12 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"qQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/spacemall/dorms) "qS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/gibs, @@ -4214,59 +4586,74 @@ /obj/effect/decal/cleanable/plasma, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"qV" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/light{ - dir = 8 +"qU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/white, +/turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/dorms) -"qW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/footprints, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"qX" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 5 +"rd" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + id = clothing_shutter }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop) +"re" = ( +/obj/item/kirbyplants/dead, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop2) +"rf" = ( /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"rb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/area/ruin/space/has_grav/spacemall) +"rg" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/structure/disposalpipe/segment{ - dir = 6 + dir = 2 }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"re" = ( -/obj/item/kirbyplants/dead, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop2) -"rf" = ( -/turf/open/floor/plasteel, +"rj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) +"rk" = ( +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/transparent/lime{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ruin/space/has_grav/spacemall/dorms) "rl" = ( /obj/structure/rack, /obj/item/storage/box/beakers, @@ -4277,17 +4664,23 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"rr" = ( -/obj/effect/turf_decal/corner/opaque/red/half{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) "ru" = ( /obj/structure/table/glass, /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop2) +"rw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "ry" = ( /obj/machinery/door/window{ dir = 4 @@ -4307,15 +4700,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/eighties, /area/ruin/space/has_grav/spacemall/shop2) -"rB" = ( -/obj/effect/turf_decal/corner/transparent/mauve/half, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/dim, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "rD" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -4323,35 +4707,29 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"rF" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ +"rH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/nurse, +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) +"rI" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"rI" = ( -/obj/structure/rack, -/obj/item/modular_computer/tablet, -/obj/item/computer_hardware/printer, -/obj/structure/sign/poster/official/pda_ad{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"rJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 }, -/obj/machinery/paystand, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) "rM" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 6 @@ -4371,16 +4749,24 @@ "rN" = ( /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) +"rQ" = ( +/obj/item/storage/toolbox/electrical, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/maint) "rS" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, /turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/dorms) "rT" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -4413,21 +4799,18 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"sa" = ( +"rY" = ( +/obj/machinery/door/airlock/external/glass, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/effect/decal/cleanable/oil/slippery, +/obj/effect/decal/cleanable/blood/footprints, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/structure/fans/tiny, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shuttle) "sb" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4440,10 +4823,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shuttle) -"sc" = ( -/obj/structure/flora/junglebush, -/turf/open/floor/grass, -/area/ruin/space/has_grav/spacemall) "sf" = ( /obj/item/reagent_containers/food/drinks/bottle/lizardwine{ pixel_y = 5 @@ -4452,11 +4831,20 @@ /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) "sg" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/obj/machinery/light{ + dir = 1 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "sl" = ( @@ -4468,24 +4856,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"sn" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "so" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/effect/turf_decal/corner/transparent/red/diagonal, @@ -4508,6 +4878,15 @@ "sr" = ( /turf/open/floor/eighties, /area/ruin/space/has_grav/spacemall/shop2) +"ss" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) "sv" = ( /obj/structure/dresser, /turf/open/floor/wood, @@ -4528,17 +4907,43 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/shop2) +"sx" = ( +/obj/structure/chair/office/light, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/shop) "sy" = ( /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"sB" = ( -/obj/effect/turf_decal/siding/wood{ +"sA" = ( +/obj/machinery/power/terminal{ dir = 1 }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/carpet/green, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-6" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "6-8" + }, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"sB" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/spacemall/dorms) "sD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4553,59 +4958,105 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "sF" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/snacks/breadslice/moldy{ - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"sI" = ( -/obj/structure/cable, -/obj/machinery/power/smes/magical{ - name = "power storage unit" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/maint) -"sR" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, /obj/structure/disposalpipe/segment{ - dir = 6 + dir = 4 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) -"sT" = ( -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"sI" = ( +/obj/machinery/door/airlock{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"sW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" }, -/obj/structure/cable{ +/area/ruin/space/has_grav/spacemall) +"sJ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"sN" = ( +/obj/effect/turf_decal/corner/opaque/red{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"sQ" = ( +/obj/structure/rack, +/obj/item/spacecash/bundle/c1000, +/obj/effect/turf_decal/trimline/transparent/neutral/arrow_cw{ + dir = 8 + }, +/obj/effect/turf_decal/corner/transparent/black{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"sR" = ( +/obj/structure/toilet, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/toilet, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/spacemall) +"sT" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"sW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "sX" = ( /obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, @@ -4614,6 +5065,15 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) +"sY" = ( +/obj/effect/turf_decal/corner/opaque/red/three_quarters{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "sZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/reinforced{ @@ -4627,6 +5087,14 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"tc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/box/white, +/obj/item/bodypart/chest, +/obj/item/organ/lungs, +/obj/item/organ/tongue, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "td" = ( /obj/structure/table/wood/bar, /obj/item/paper_bin, @@ -4639,21 +5107,30 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop) +"te" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/closed/wall, +/area/ruin/space/has_grav/spacemall/shop) "tf" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/opaque/red/three_quarters, -/obj/machinery/light, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) -"tk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) +"ti" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, /turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/maint) "tl" = ( /obj/structure/rack, /obj/structure/window/reinforced/spawner, @@ -4673,6 +5150,31 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"tt" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "tu" = ( /obj/machinery/power/terminal{ dir = 1 @@ -4687,12 +5189,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shuttle) -"tv" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/dorms) "ty" = ( /obj/structure/railing/wood{ dir = 1 @@ -4713,10 +5209,14 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"tA" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/ruin/space/has_grav/spacemall) +"tB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "tC" = ( /obj/structure/disposalpipe/broken{ dir = 4 @@ -4743,12 +5243,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"tF" = ( -/obj/effect/spawner/lootdrop, -/obj/effect/spawner/lootdrop/glowstick, -/obj/structure/rack, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "tG" = ( /obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/effect/turf_decal/corner/transparent/green/diagonal, @@ -4756,13 +5250,10 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "tH" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/departments/security{ - pixel_x = 31 - }, -/obj/effect/turf_decal/corner/transparent/green, +/obj/structure/rack, +/obj/item/computer_hardware/recharger, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/shop) "tN" = ( /obj/structure/railing/corner/wood, /obj/effect/turf_decal/siding/wideplating/dark/corner, @@ -4797,66 +5288,51 @@ name = "bathroom floor" }, /area/ruin/space/has_grav/spacemall/dorms) -"tU" = ( -/obj/structure/closet/crate/engineering, -/obj/item/stack/sheet/metal/twenty, -/obj/item/stack/sheet/glass/twenty, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop2) -"tY" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, +"tT" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + icon_state = "4-8" }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/siding/wideplating/dark/corner, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 + dir = 4 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"tU" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stack/sheet/metal/twenty, +/obj/item/stack/sheet/glass/twenty, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop2) +"tW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/shop) "tZ" = ( /turf/closed/wall, /area/ruin/space/has_grav/spacemall) "ub" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/dorms) -"uc" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"ud" = ( /obj/structure/table, /obj/effect/turf_decal/corner/opaque/black/diagonal, /obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/snacks/burger, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"ue" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/corner/transparent/green{ - dir = 1 +"uc" = ( +/obj/structure/railing{ + dir = 8 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall) "ug" = ( /obj/structure/table/reinforced, /obj/machinery/door/window{ @@ -4866,37 +5342,42 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "uk" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/maint) -"um" = ( -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/storage/bag/money/vault, -/obj/item/coin, -/obj/item/coin, -/obj/item/coin/gold, -/obj/item/coin/gold, -/obj/item/coin/gold, -/obj/structure/safe/floor, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/corner/transparent/green{ dir = 8 }, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ +/obj/machinery/camera/autoname{ + dir = 5; + network = list("mall") + }, +/obj/structure/disposalpipe/segment{ dir = 1 }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"um" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/nurse, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "uo" = ( -/obj/structure/flora/ausbushes/leafybush, /turf/open/floor/grass, /area/ruin/space/has_grav/spacemall) +"up" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint" + }, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "ur" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 5 @@ -4912,53 +5393,13 @@ "us" = ( /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/maint) -"ux" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/box, -/obj/structure/closet/crate/secure, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"uy" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"uE" = ( -/obj/effect/turf_decal/corner/opaque/blue/half, -/obj/item/clothing/suit/hooded/wintercoat{ - pixel_y = -2 - }, -/obj/item/clothing/suit/hooded/wintercoat{ - pixel_y = -2 - }, -/obj/item/clothing/suit/hooded/wintercoat{ - pixel_y = -2 - }, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/suit/jacket/miljacket, -/obj/structure/kitchenspike{ - name = "clothing rack"; - can_buckle = 0 - }, +"uC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/item/toy/plush/lizardplushie, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/area/ruin/space/has_grav/spacemall/shop2) "uF" = ( /obj/effect/turf_decal/corner/opaque/black/diagonal, /obj/structure/rack, @@ -4997,19 +5438,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"uK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/broken, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "uM" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, @@ -5019,93 +5447,82 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop) -"uR" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 6; - network = list("mall") - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"uY" = ( -/obj/machinery/light/dim{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"va" = ( -/obj/effect/turf_decal/corner/opaque/red{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"vd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/shop) -"ve" = ( -/obj/effect/decal/cleanable/dirt, +"uN" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"vh" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"uO" = ( +/obj/structure/table, +/obj/machinery/paystand, +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/machinery/door/poddoor/shutters{ + id = icecream_kiosk }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"vi" = ( -/obj/effect/turf_decal/siding/thinplating{ +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"uP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) +"uR" = ( +/obj/effect/turf_decal/siding/wood{ dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/dorms) +"uZ" = ( +/obj/effect/turf_decal/corner/transparent/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"vj" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"vk" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +"vc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/random_computer_circuit_common, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/random_computer_circuit_common, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"vd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/shop) +"vl" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/spacemall/dorms) "vo" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -5124,145 +5541,183 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"vr" = ( +/obj/structure/frame/computer{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/circuitboard/computer/shuttle/helm, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) "vs" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 }, /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/spacemall/dorms) -"vz" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, +"vu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/light_construct/directional/south, /turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shuttle) -"vA" = ( +/area/ruin/space/has_grav/spacemall/shop2) +"vx" = ( +/obj/machinery/door/airlock/engineering, /obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/siding/wideplating/dark, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall) -"vD" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/footprints, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"vF" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/spacemall/shop2) -"vG" = ( -/obj/structure/window/spawner{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/structure/door_assembly/door_assembly_eng{ + anchored = 1; + dir = 4 }, -/turf/open/floor/plating, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/maint) -"vH" = ( +"vz" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"vA" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, +/obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"vI" = ( -/obj/effect/turf_decal/corner/transparent/blue/half{ - dir = 1 +/area/ruin/space/has_grav/spacemall) +"vB" = ( +/obj/effect/turf_decal/box, +/obj/machinery/light/small, +/obj/structure/closet/crate/secure, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ +/obj/effect/turf_decal/box, +/obj/machinery/light/small/directional/south, +/obj/structure/closet/crate/secure, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) +"vC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/door/window/brigdoor{ +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating{ + light_range = 3 + }, +/area/ruin/space/has_grav/spacemall/maint) +"vD" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/structure/closet/crate, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/structure/closet/crate, +/obj/structure/railing, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"vF" = ( +/turf/closed/wall/r_wall, +/area/ruin/space/has_grav/spacemall/shop2) +"vG" = ( +/obj/structure/window/spawner{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"vJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 + dir = 4 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"vL" = ( -/obj/structure/kitchenspike{ - name = "clothing rack"; - can_buckle = 0 +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/item/clothing/suit/jacket/letterman_nanotrasen{ - pixel_y = -7 +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"vI" = ( +/obj/effect/turf_decal/corner/transparent/blue/half{ + dir = 1 }, -/obj/item/clothing/suit/jacket/letterman_nanotrasen{ - pixel_y = -7 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 }, -/obj/item/clothing/suit/jacket/letterman_nanotrasen{ - pixel_y = -7 +/obj/machinery/door/window/brigdoor{ + dir = 1 }, -/obj/item/clothing/suit/jacket/letterman, -/obj/item/clothing/suit/jacket/letterman, -/obj/item/clothing/suit/jacket/letterman, -/obj/item/clothing/suit/jacket/letterman_red{ - pixel_y = 5 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 4 }, -/obj/item/clothing/suit/jacket/letterman_red{ - pixel_y = 5 +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"vJ" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/clothing/suit/jacket/letterman_red{ - pixel_y = 5 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/effect/turf_decal/box/white, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"vL" = ( +/obj/effect/turf_decal/corner/opaque/red{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 2 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"vN" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/snacks/hotdog, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/area/ruin/space/has_grav/spacemall/dorms) "vO" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5281,12 +5736,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"vP" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/maint) "vR" = ( /obj/structure/railing/corner{ dir = 8; @@ -5328,6 +5777,18 @@ /obj/structure/spider/stickyweb, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) +"vW" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "vX" = ( /obj/machinery/washing_machine, /turf/open/floor/plating, @@ -5337,16 +5798,15 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"wc" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold/diagonal, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 +"wb" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/item/toy/beach_ball{ + pixel_y = 5 }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/area/ruin/space/has_grav/spacemall/shop2) "wd" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 @@ -5357,37 +5817,34 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "wj" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 8 - }, +/obj/structure/rack, +/obj/structure/window/reinforced/spawner, +/obj/effect/spawner/lootdrop/beaker_loot_spawner, +/obj/effect/spawner/lootdrop/beaker_loot_spawner, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/shop2) +"wm" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) +"wn" = ( +/obj/machinery/light/small/directional/west, /obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"wo" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"ws" = ( -/obj/structure/cable{ - icon_state = "2-4" + dir = 2 }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"wq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "wt" = ( /obj/structure/cable{ icon_state = "2-9" @@ -5403,29 +5860,16 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"wv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +"wD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) "wE" = ( /obj/effect/decal/remains/human, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"wF" = ( -/obj/structure/sign/poster/contraband/revolver{ - pixel_x = 32 - }, -/turf/open/floor/wood/walnut, -/area/ruin/space/has_grav/spacemall/shop) "wG" = ( /obj/machinery/space_heater{ dir = 3 @@ -5440,36 +5884,87 @@ "wH" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"wJ" = ( -/obj/structure/rack, -/obj/item/storage/box/stockparts/t2, -/obj/item/storage/box/stockparts/t2, -/obj/effect/turf_decal/siding/wideplating/dark/end{ - dir = 1 +"wI" = ( +/obj/effect/turf_decal/corner/transparent/green, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/light/small/directional/west, +/obj/structure/mirror{ + pixel_y = 30 }, -/turf/open/floor/light, -/area/ruin/space/has_grav/spacemall/shop) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4; + welded = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "wM" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/corner/transparent/green{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 4 +/obj/machinery/light{ + dir = 8 }, -/mob/living/simple_animal/beachcarp/bass{ - name = "Bass Pro" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/ruin/space/has_grav/spacemall/shop2) -"wS" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/deepfryer, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"wO" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"wQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/east, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/east{ + start_charge = 0 + }, +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"wS" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/deepfryer, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) +"wT" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/footprints, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) "wU" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5481,17 +5976,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"wV" = ( -/obj/structure/spider/eggcluster, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) -"wX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop2) "xa" = ( /obj/effect/turf_decal/corner/transparent/mauve/half{ dir = 1 @@ -5511,40 +5995,33 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"xf" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 +"xh" = ( +/obj/effect/turf_decal/corner/opaque/blue/half, +/obj/item/clothing/suit/hooded/wintercoat{ + pixel_y = -2 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"xk" = ( -/obj/machinery/door/airlock{ - name = "Dorm 5" +/obj/item/clothing/suit/hooded/wintercoat{ + pixel_y = -2 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/item/clothing/suit/hooded/wintercoat{ + pixel_y = -2 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/item/clothing/suit/jacket/miljacket, +/obj/item/clothing/suit/jacket/miljacket, +/obj/item/clothing/suit/jacket/miljacket, +/obj/structure/kitchenspike{ + name = "clothing rack"; + can_buckle = 0 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"xl" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/opaque/blue/full, -/obj/item/circuitboard/machine/chem_dispenser, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/shop) "xm" = ( -/obj/structure/table, /obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/item/trash/plate, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/atmospherics/components/unary/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/area/ruin/space/has_grav/spacemall/maint) "xo" = ( /obj/structure/rack, /obj/effect/turf_decal/siding/thinplating/dark, @@ -5575,15 +6052,18 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"xv" = ( -/obj/effect/turf_decal/corner/transparent/red/diagonal, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 +"xt" = ( +/obj/effect/turf_decal/corner/transparent/mauve/three_quarters{ + dir = 4 }, -/turf/open/floor/plasteel/white, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"xw" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "xx" = ( /obj/item/reagent_containers/food/drinks/bottle/moonshine{ @@ -5633,22 +6113,6 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) -"xA" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"xC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) "xD" = ( /obj/effect/turf_decal/siding{ dir = 8 @@ -5659,39 +6123,42 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"xF" = ( -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) "xG" = ( -/obj/structure/table/reinforced, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 10 +/obj/machinery/camera/autoname{ + dir = 6; + network = list("mall") }, -/obj/item/storage/secure/briefcase{ - pixel_y = 5; - pixel_x = -2 +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 1 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"xH" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +"xJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 }, -/turf/open/floor/plasteel/white, +/turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/dorms) -"xJ" = ( -/obj/machinery/light/small{ - dir = 4 +"xK" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "xM" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/transparent/black/diagonal, @@ -5701,6 +6168,39 @@ "xN" = ( /turf/closed/wall, /area/ruin/space/has_grav/spacemall/shuttle) +"xO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) +"xP" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "xQ" = ( /obj/structure/window/spawner{ dir = 1 @@ -5709,11 +6209,8 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop2) "xR" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/mob/living/simple_animal/hostile/poison/giant_spider/nurse/midwife, -/turf/open/floor/carpet/green, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "xX" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, @@ -5726,19 +6223,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) -"xY" = ( -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/shop2) "ya" = ( /obj/structure/window/reinforced/spawner{ dir = 1 @@ -5748,17 +6232,21 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"yd" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +"yc" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/door/airlock/external/glass, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "ye" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Checkpoint" @@ -5822,38 +6310,21 @@ }, /turf/open/floor/wood/birch, /area/ruin/space/has_grav/spacemall/shop2) +"yq" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) "yt" = ( /turf/closed/wall, /area/ruin/space/has_grav/spacemall/dorms) -"yu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"yv" = ( -/obj/structure/rack, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/box/white, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) "yw" = ( /obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/shop2) -"yy" = ( -/obj/effect/turf_decal/corner/transparent/mauve/half{ - dir = 1 - }, -/obj/structure/table, -/obj/item/restraints/legcuffs/beartrap{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"yz" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold/three_quarters{ +"yz" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold/three_quarters{ dir = 1 }, /obj/structure/cable{ @@ -5861,13 +6332,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"yA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "yC" = ( /obj/effect/turf_decal/box, /obj/structure/closet/crate/trashcart, @@ -5886,12 +6350,37 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) "yH" = ( -/obj/effect/turf_decal/corner/transparent/green, -/obj/machinery/camera/autoname{ - dir = 10; - network = list("mall") +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"yJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"yK" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"yM" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) "yO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, @@ -5938,9 +6427,40 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"yX" = ( -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/dorms) +"yW" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"yZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "zc" = ( /obj/effect/turf_decal/corner/transparent/mauve{ dir = 8 @@ -5951,6 +6471,18 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"zd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "zf" = ( /obj/structure/flora/junglebush/b, /turf/open/floor/grass, @@ -5977,17 +6509,15 @@ /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop) "zk" = ( -/obj/structure/sign/departments/engineering{ - pixel_x = 32 - }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating{ + light_range = 1 }, -/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "zl" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -6016,37 +6546,48 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"zs" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"zt" = ( -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/components/unary/portables_connector, -/obj/machinery/portable_atmospherics/canister/air, +"zq" = ( +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) -"zu" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/item/toy/beach_ball{ - pixel_y = 5 +/area/ruin/space/has_grav/spacemall) +"zs" = ( +/obj/structure/mirror{ + pixel_y = 30 }, -/obj/machinery/light/small/broken{ +/obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/mirror{ + pixel_y = 30 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 30 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "zv" = ( -/obj/structure/rack, -/obj/effect/turf_decal/box/white, -/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, -/obj/item/bodypart/l_leg, -/obj/item/organ/liver, -/obj/item/organ/stomach, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/obj/machinery/door/airlock/public/glass{ + name = "Construction Zone" + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop2) "zx" = ( /obj/structure/sign/departments/engineering{ pixel_y = 31 @@ -6065,6 +6606,20 @@ /obj/effect/decal/cleanable/plasma, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"zz" = ( +/obj/effect/turf_decal/corner/opaque/red/three_quarters{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "zA" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6085,6 +6640,13 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) +"zC" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "zD" = ( /obj/structure/cable{ icon_state = "1-8" @@ -6097,18 +6659,69 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"zH" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ +"zE" = ( +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/item/toy/plush/moth{ + name = "Wall Moth" + }, +/obj/machinery/light/dim/directional/north, +/turf/template_noop, +/area/template_noop) +"zF" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname{ + dir = 9; + network = list("mall") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 +/obj/machinery/light/small/broken{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/decal/cleanable/wrapping, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname{ + dir = 9; + network = list("mall") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/small/broken/directional/east, +/obj/structure/rack, +/obj/item/instrument/piano_synth, +/obj/effect/turf_decal/corner/transparent/green/full, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"zI" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) +"zJ" = ( +/obj/effect/turf_decal/corner/transparent/green{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/area/ruin/space/has_grav/spacemall/dorms) "zM" = ( /obj/structure/rack, /obj/item/clothing/mask/frog, @@ -6135,14 +6748,6 @@ }, /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/spacemall/dorms) -"zO" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "zP" = ( /obj/effect/turf_decal/corner/opaque/grey/diagonal, /obj/structure/curtain/cloth/grey, @@ -6178,23 +6783,23 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "zT" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = shutters_kitchen - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) -"zU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/airalarm/directional/north, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"zW" = ( +/obj/effect/turf_decal/corner/transparent/green, +/obj/machinery/light, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "zX" = ( @@ -6233,17 +6838,14 @@ /turf/open/floor/eighties, /area/ruin/space/has_grav/spacemall/shop2) "Ae" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/stack/sheet/animalhide/human, -/obj/item/reagent_containers/food/snacks/meat/slab/human{ - pixel_x = 4; - pixel_y = -7 +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/shop2) "Ag" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/transparent/black/diagonal, @@ -6258,6 +6860,26 @@ /obj/item/paper_bin/carbon, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) +"Aj" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/box, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) "Ak" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -6269,18 +6891,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) -"An" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +"Ao" = ( +/obj/machinery/power/shuttle/engine/electric{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shuttle) "Ap" = ( /obj/structure/rack, /obj/effect/turf_decal/siding/thinplating/dark, @@ -6293,6 +6912,20 @@ /obj/item/instrument/saxophone, /turf/open/floor/plasteel/showroomfloor, /area/ruin/space/has_grav/spacemall/shop2) +"Aq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/spacemall/maint) "Ar" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -6303,24 +6936,53 @@ /obj/structure/spider/cocoon, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) -"At" = ( -/obj/structure/barricade/security, -/obj/machinery/door/airlock/security/glass{ - locked = 1; - id_tag = staffdoors; - name = "Security Office" +"As" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"Aw" = ( +/obj/effect/turf_decal/siding/thinplating/light/corner{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/siding/thinplating/light/corner{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/broken/directional/west{ + icon_state = "tube-broken" + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "Ax" = ( /obj/structure/sink{ dir = 1 @@ -6335,39 +6997,22 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "AA" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/mob/living/simple_animal/hostile/poison/giant_spider/nurse, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/maint) -"AB" = ( -/obj/machinery/door/airlock, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "AC" = ( /obj/effect/decal/remains/human, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"AD" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall) "AF" = ( /obj/structure/railing/wood{ dir = 8 @@ -6407,19 +7052,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"AI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/spider_player/cocoon, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "AJ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6445,35 +7077,20 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "AN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "AP" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/machinery/reagentgrinder, /obj/structure/table, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) -"AR" = ( +"AQ" = ( +/obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "AS" = ( /obj/structure/table/wood/fancy, @@ -6483,16 +7100,13 @@ }, /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) -"AT" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +"AU" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/shop2) "AZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -6511,6 +7125,17 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"Bb" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shuttle) "Bc" = ( /obj/structure/sign/donk{ pixel_y = -32 @@ -6518,30 +7143,16 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"Bd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) -"Bf" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Bi" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arcade" }, /obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 + icon_state = "1-2" }, -/obj/effect/turf_decal/siding/wideplating/dark, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop2) "Bj" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -6549,6 +7160,19 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"Bk" = ( +/obj/structure/rack, +/obj/item/reagent_containers/glass/beaker/synthflesh, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid{ + pixel_y = -5 + }, +/obj/item/storage/firstaid{ + pixel_y = -5 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/shop2) "Bm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 @@ -6573,16 +7197,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"Bt" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "Bu" = ( /obj/structure/railing/wood{ dir = 1 @@ -6593,59 +7207,43 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Bv" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"Bx" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 11; - pixel_y = 6 +"Bz" = ( +/obj/machinery/door/airlock/glass{ + name = "Break Room" }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) -"By" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/obj/item/trash/plate, -/obj/item/organ/lungs, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"Bz" = ( -/obj/structure/table, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/vending/snack/random, /obj/effect/turf_decal/corner/transparent/green/diagonal, -/obj/structure/sign/poster/contraband/space_up{ - pixel_x = 30 +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/dark, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) -"BA" = ( +"BB" = ( /obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 + icon_state = "1-8" }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 + dir = 9 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "BC" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 @@ -6664,25 +7262,12 @@ /obj/structure/dresser, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) -"BG" = ( -/turf/open/floor/grass, -/area/ruin/space/has_grav/spacemall) "BI" = ( /obj/effect/turf_decal/siding/wood{ - dir = 6 + dir = 4 }, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/dorms) -"BJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) "BQ" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/structure/disposalpipe/segment{ @@ -6690,19 +7275,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) -"BS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) "BT" = ( /obj/effect/turf_decal/road/line/transparent/solgovblue, /obj/structure/rack, @@ -6710,10 +7282,19 @@ /obj/item/toy/plush/moth, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"BZ" = ( -/obj/machinery/light{ +"BU" = ( +/obj/machinery/door/airlock/glass{ + name = "Break Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) "Ca" = ( @@ -6723,37 +7304,40 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"Cb" = ( -/obj/effect/turf_decal/box, -/obj/structure/closet/crate/wooden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) "Cc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, /area/ruin/space/has_grav/spacemall/maint) -"Cf" = ( -/obj/structure/railing, -/obj/structure/lattice, -/obj/structure/marker_beacon, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) -"Cm" = ( +"Ci" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 + dir = 4 }, /obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"Cl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "Cn" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -6788,39 +7372,75 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"Cr" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 6; + network = list("mall") + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "Ct" = ( -/obj/effect/turf_decal/box, -/mob/living/simple_animal/hostile/poison/giant_spider, +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall) "Cw" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 9 }, -/turf/open/floor/plasteel, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) -"Cy" = ( -/turf/closed/wall, -/area/ruin/space/has_grav/spacemall/shop2) -"Cz" = ( -/obj/effect/turf_decal/corner/opaque/blue/diagonal, +"Cx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 + }, /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/shop2) -"CB" = ( -/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, /obj/structure/disposalpipe/segment{ + dir = 2 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 5 }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall) +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + environment_smash = 0 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) +"Cy" = ( +/turf/closed/wall, +/area/ruin/space/has_grav/spacemall/shop2) "CC" = ( /obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -6883,12 +7503,14 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "CK" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/turf/open/floor/plating{ - light_range = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) "CN" = ( /obj/effect/turf_decal/corner/opaque/red/three_quarters{ @@ -6900,26 +7522,28 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"CP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 +"CO" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + id = clothing_shutter }, -/obj/machinery/light/small, -/turf/open/floor/wood/walnut, +/obj/structure/window/fulltile, +/turf/closed/wall, /area/ruin/space/has_grav/spacemall/shop) "CQ" = ( /obj/effect/turf_decal/corner/opaque/black/diagonal, /obj/machinery/smartfridge/food, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"CU" = ( -/obj/machinery/light/small{ - dir = 8 +"CT" = ( +/obj/machinery/camera/autoname{ + dir = 9; + network = list("mall") }, -/turf/open/floor/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "CW" = ( /obj/effect/turf_decal/corner/opaque/blue/diagonal, @@ -6949,24 +7573,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"Db" = ( -/obj/effect/turf_decal/corner/transparent/mauve/half, -/obj/structure/spider/stickyweb, -/obj/machinery/light/dim, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/water_vapor{ - name = "supercooled water vapor canister"; - starter_temp = 173.15; - desc = "Spiders HATE this one simple trick!" - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "Dc" = ( /obj/structure/rack, /obj/item/clothing/accessory/armband/science{ @@ -7022,16 +7628,40 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Di" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +"Dg" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1; + icon_state = "blood2" + }, +/obj/machinery/camera/autoname{ + dir = 5; + network = list("mall") + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"Dh" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"Di" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, /turf/open/floor/wood/birch, /area/ruin/space/has_grav/spacemall/shop2) "Dl" = ( -/obj/structure/spider/cocoon, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) +/obj/machinery/shower{ + pixel_y = 15 + }, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/spacemall/dorms) "Dm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, @@ -7054,14 +7684,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/maint) -"Dp" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) "Dq" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -7085,14 +7707,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Dr" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "Ds" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7114,6 +7728,21 @@ /obj/item/storage/firstaid/toxin, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/shop2) +"Du" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "Dy" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable{ @@ -7124,6 +7753,10 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"DB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "DC" = ( /obj/effect/turf_decal/corner/opaque/black/diagonal, /obj/structure/chair/plastic, @@ -7162,36 +7795,12 @@ }, /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop) -"DJ" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +"DI" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/opaque/red/full, +/obj/item/reagent_containers/food/snacks/donut/plain, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) -"DK" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating{ - light_range = 1 - }, /area/ruin/space/has_grav/spacemall/maint) -"DO" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock{ - locked = 1; - id_tag = staffdoors; - name = "Kitchen" - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) "DP" = ( /obj/structure/railing/corner{ dir = 4 @@ -7199,11 +7808,15 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "DQ" = ( -/obj/structure/railing{ - dir = 10 +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) "DR" = ( /obj/item/assembly/mousetrap/armed, /obj/effect/decal/cleanable/dirt/dust, @@ -7213,15 +7826,17 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "DS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/stack/sheet/animalhide/human, +/obj/item/reagent_containers/food/snacks/meat/slab/human{ + pixel_x = 4; + pixel_y = -7 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/spacemall/dorms) "DU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7247,6 +7862,14 @@ /obj/machinery/vending/donksofttoyvendor, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop2) +"DX" = ( +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood/birch, +/area/ruin/space/has_grav/spacemall/shop2) "Eb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -7265,6 +7888,22 @@ }, /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/spacemall/dorms) +"Ed" = ( +/obj/structure/rack, +/obj/effect/turf_decal/box/white, +/obj/item/organ/moth_wings, +/obj/item/organ/brain, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"Ee" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/machinery/door/poddoor/shutters{ + id = icecream_kiosk + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "Ef" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/corner/opaque/black/diagonal, @@ -7273,16 +7912,24 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"Ej" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 +"Eg" = ( +/obj/effect/turf_decal/corner/transparent/green, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"Eh" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/structure/disposalpipe/broken{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"Ej" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 2 }, -/obj/effect/decal/cleanable/plasma, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/dorms) "Ek" = ( /obj/machinery/camera/autoname{ dir = 6; @@ -7317,12 +7964,6 @@ /obj/item/bedsheet/rainbow, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) -"Et" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) "Eu" = ( /obj/effect/decal/cleanable/molten_object/large, /turf/open/floor/plasteel, @@ -7333,6 +7974,17 @@ }, /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) +"EC" = ( +/obj/structure/table/wood/reinforced, +/obj/machinery/button/door{ + normaldoorcontrol = 1; + id = staffdoors; + name = "Staff Lockdown"; + pixel_y = -7; + specialfunctions = 4 + }, +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) "ED" = ( /obj/structure/cable{ icon_state = "2-4" @@ -7348,81 +8000,132 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"EE" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/transparent/green/full, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) -"EH" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"EJ" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/arcade/orion_trail, -/obj/machinery/light{ - dir = 4 +"EG" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"EL" = ( -/obj/machinery/door/airlock, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, -/area/ruin/space/has_grav/spacemall/dorms) -"EM" = ( -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/obj/machinery/light_switch{ - pixel_y = -30 +/obj/structure/disposalpipe/segment{ + dir = 2 }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"Fj" = ( -/obj/structure/chair/sofa/left{ +"EH" = ( +/obj/effect/turf_decal/corner/opaque/red{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"Fl" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/item/toy/plush/snakeplushie, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) -"Fn" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 2 }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"EJ" = ( +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"EM" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/wooden, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"ET" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/ruin/space/has_grav/spacemall/shop2) -"Fo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wideplating/dark{ +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"EU" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"EV" = ( +/obj/structure/rack, +/obj/item/storage/box/stockparts/t2, +/obj/item/storage/box/stockparts/t2, +/obj/effect/turf_decal/siding/wideplating/dark/end{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/light, +/area/ruin/space/has_grav/spacemall/shop) +"EY" = ( +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/directional/west, +/obj/structure/lattice, +/turf/open/floor/plating{ + light_range = 1 + }, +/area/ruin/space/has_grav/spacemall/maint) +"Fa" = ( +/obj/structure/rack, +/obj/item/modular_computer/tablet, +/obj/item/computer_hardware/printer, +/obj/structure/sign/poster/official/pda_ad{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"Fe" = ( +/obj/structure/sign/departments/chemistry/pharmacy{ + pixel_y = -32 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"Fl" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/item/toy/plush/snakeplushie, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) +"Fn" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ruin/space/has_grav/spacemall/shop2) +"Fo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "Fq" = ( /obj/effect/turf_decal/trimline/transparent/neutral/arrow_cw{ @@ -7452,41 +8155,31 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop) "Fz" = ( -/obj/item/kirbyplants, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) +/obj/machinery/firealarm/directional/north, +/turf/open/floor/eighties, +/area/ruin/space/has_grav/spacemall/shop2) "FA" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) -"FC" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/cable{ - icon_state = "4-8" + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/carpet/green, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"FB" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/shop) "FE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel/showroomfloor{ @@ -7511,14 +8204,6 @@ /obj/machinery/recharger, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"FI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "FK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/wood/walnut, @@ -7533,12 +8218,54 @@ name = "bathroom floor" }, /area/ruin/space/has_grav/spacemall/maint) -"FP" = ( -/obj/effect/turf_decal/corner/transparent/mauve/three_quarters{ +"FS" = ( +/obj/machinery/door/airlock{ + locked = 1; + id_tag = staffdoors; + name = "Staff Area" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock{ + locked = 1; + id_tag = "staffdoors"; + name = "Staff Area"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/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/spacemall/dorms) "FT" = ( @@ -7548,25 +8275,29 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"FX" = ( -/obj/machinery/door/airlock, -/obj/structure/cable{ - icon_state = "1-2" - }, +"FU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"Ga" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/opaque/blue/full, +/obj/item/circuitboard/machine/chem_dispenser, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/maint) +"Gc" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) "Gd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/transparent/green{ + dir = 1 }, -/turf/open/floor/carpet/green, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "Ge" = ( /obj/structure/disposalpipe/segment{ @@ -7574,13 +8305,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Gf" = ( -/obj/effect/turf_decal/corner/transparent/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "Gh" = ( /obj/structure/janitorialcart, /obj/effect/turf_decal/box, @@ -7605,6 +8329,22 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"Gl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/dorms) +"Gn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "Go" = ( /obj/structure/rack, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -7617,16 +8357,6 @@ /obj/item/instrument/guitar, /turf/open/floor/plasteel/showroomfloor, /area/ruin/space/has_grav/spacemall/shop2) -"Gp" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "Gq" = ( /obj/item/trash/energybar{ pixel_x = -2; @@ -7643,21 +8373,25 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Gy" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/opaque/blue/full, -/obj/item/storage/firstaid/advanced, -/obj/machinery/light/broken{ - dir = 1 - }, +"Gu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/bodypart/head, +/obj/structure/closet/crate/bin, +/obj/item/trash/can/food, +/obj/item/organ/tongue/uwuspeak, +/obj/item/organ/tail/cat, +/obj/item/organ/ears/cat, +/obj/item/clothing/neck/stethoscope, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/shop) "Gz" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/item/paper{ - name = "Cheap Kalixcian Phrasebook"; - info = "Rsku suok sz zalo - My sugarcube is full of eels." +/obj/effect/turf_decal/corner/opaque/blue/half, +/obj/item/clothing/suit/jacket/leather/duster, +/obj/item/clothing/suit/jacket/leather/duster, +/obj/item/clothing/suit/jacket/leather/duster, +/obj/structure/kitchenspike{ + name = "clothing rack"; + can_buckle = 0 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) @@ -7691,48 +8425,29 @@ /obj/machinery/power/floodlight, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) -"GF" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"GH" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" +"GG" = ( +/obj/machinery/camera/autoname{ + dir = 10; + network = list("mall") }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 + dir = 5 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"GI" = ( /obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"GL" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop) -"GM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 5 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) +"GO" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/item/trash/plate, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "GT" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7750,21 +8465,17 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "GU" = ( -/obj/machinery/door/airlock/glass_large, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/effect/turf_decal/corner/transparent/green{ + dir = 8 }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) -"GY" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"GV" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "GZ" = ( @@ -7777,74 +8488,24 @@ }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/shop) -"Ha" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) -"Hc" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 8 +"Hb" = ( +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/plating, +/obj/structure/lattice, +/obj/structure/marker_beacon, +/turf/open/space/basic, /area/ruin/space/has_grav/spacemall/maint) "Hd" = ( -/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"He" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, -/area/ruin/space/has_grav/spacemall) -"Hh" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 8 + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"Hk" = ( -/obj/structure/dresser, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) -"Hl" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/dorms) -"Ho" = ( -/obj/structure/rack, -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 8 - }, -/obj/item/instrument/piano_synth, -/obj/item/instrument/piano_synth{ - pixel_y = 5 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/showroomfloor, -/area/ruin/space/has_grav/spacemall/shop2) +/area/ruin/space/has_grav/spacemall) "Hq" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -7862,13 +8523,24 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "Hu" = ( -/obj/effect/turf_decal/corner/opaque/red{ - dir = 9 +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1; + pixel_y = 20; + pixel_x = -10 }, /turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"Hx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/dorms) "Hy" = ( /obj/structure/disposalpipe/trunk{ @@ -7877,40 +8549,149 @@ /obj/machinery/disposal/bin, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"HA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "HB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"HF" = ( -/obj/machinery/door/airlock{ - name = "Dorm 2" +"HD" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/obj/item/trash/plate, +/obj/item/organ/lungs, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"HE" = ( +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) +"HK" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating{ + light_range = 1 + }, +/area/ruin/space/has_grav/spacemall/maint) +"HM" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/effect/turf_decal/trimline/opaque/solgovblue/arrow_cw{ + dir = 10 + }, +/obj/effect/turf_decal/road/line/transparent/solgovblue, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) +"HO" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/wood, +/obj/effect/turf_decal/corner/transparent/blue/diagonal, +/obj/effect/turf_decal/trimline/opaque/neutral/arrow_cw{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"HQ" = ( +/obj/effect/turf_decal/corner/transparent/mauve/half, +/obj/structure/spider/stickyweb, +/obj/machinery/light/dim/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/water_vapor{ + name = "supercooled water vapor canister"; + starter_temp = 173.15; + desc = "Spiders HATE this one simple trick!" + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 8 + }, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"HH" = ( +"HR" = ( +/obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"HS" = ( +/obj/structure/railing/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +/obj/effect/turf_decal/siding/wideplating/dark{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"HT" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"HV" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"HK" = ( +/area/ruin/space/has_grav/spacemall/shop2) +"HW" = ( +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"HZ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/shop2) +"Ib" = ( /obj/effect/turf_decal/corner/opaque/blue/half, /obj/item/clothing/under/suit/black/female{ pixel_y = -2 @@ -7942,121 +8723,34 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"HL" = ( -/obj/machinery/door/airlock/freezer{ - name = "Freezer Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/has_grav/spacemall/dorms) -"HM" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/effect/turf_decal/trimline/opaque/solgovblue/arrow_cw{ - dir = 10 - }, -/obj/effect/turf_decal/road/line/transparent/solgovblue, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) -"HN" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/grass, -/area/ruin/space/has_grav/spacemall) -"HO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/blue/diagonal, -/obj/effect/turf_decal/trimline/opaque/neutral/arrow_cw{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"HP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"HQ" = ( -/obj/effect/turf_decal/box, -/obj/structure/closet/crate/secure/plasma, -/obj/item/stack/sheet/mineral/plasma/twenty, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"HS" = ( -/obj/structure/railing/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 +"Ic" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/red/three_quarters, +/obj/machinery/light, +/obj/machinery/recharger, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"HT" = ( /obj/structure/table/reinforced, -/obj/machinery/button/door{ - normaldoorcontrol = 1; - id = staffdoors; - name = "Staff Lockdown"; - specialfunctions = 4 +/obj/effect/turf_decal/corner/opaque/red/three_quarters, +/obj/machinery/light/directional/south, +/obj/machinery/recharger, +/obj/item/ammo_box/magazine/co9mm{ + pixel_x = 6; + pixel_y = 4; + start_empty = 1 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"HZ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop2) -"Ia" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"Id" = ( -/obj/structure/railing/corner, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) -"Ie" = ( -/obj/effect/turf_decal/corner/opaque/grey/diagonal, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) "If" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 - }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ dir = 2 }, /turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/maint) "Ig" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/effect/turf_decal/siding{ @@ -8067,50 +8761,19 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) -"Ii" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"Ij" = ( -/obj/machinery/door/airlock, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +"Ir" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/broken{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, -/area/ruin/space/has_grav/spacemall) -"Ik" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"Iq" = ( -/obj/machinery/door/airlock{ - name = "Custodian Closet" - }, -/obj/structure/barricade/wooden, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "It" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /obj/effect/turf_decal/siding/wideplating/dark/corner{ @@ -8124,6 +8787,17 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"Iu" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = clothing_shutter; + name = "Shop Shutters" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/ruin/space/has_grav/spacemall/shop) "Iv" = ( /obj/item/kirbyplants/fullysynthetic, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -8158,6 +8832,54 @@ /obj/structure/table/reinforced, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"IA" = ( +/obj/machinery/door/airlock{ + name = "Executive Office" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/door_assembly{ + anchored = 1; + dir = 4 + }, +/obj/structure/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) "ID" = ( /obj/effect/turf_decal/box, /turf/open/floor/plasteel, @@ -8189,32 +8911,44 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"IL" = ( -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, +"IK" = ( +/obj/machinery/door/airlock/glass_large, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"IP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) "IR" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 30 - }, +/obj/machinery/light/small/directional/north, /obj/structure/disposalpipe/segment{ - dir = 2 + dir = 8 }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "IU" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint" +/obj/effect/turf_decal/corner/opaque/red{ + dir = 5 }, -/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/structure/cable{ - icon_state = "1-2" +/obj/machinery/light{ + dir = 1 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) +/area/ruin/space/has_grav/spacemall/dorms) "IZ" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/structure/cable{ @@ -8228,66 +8962,64 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) -"Jd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/eighties, -/area/ruin/space/has_grav/spacemall/shop2) -"Jf" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, +"Jb" = ( +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"Ji" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/camera/autoname{ - dir = 10; - network = list("mall") +"Jc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) -"Jj" = ( -/obj/machinery/camera/autoname{ - dir = 10; - network = list("mall") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"Jg" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/wooden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"Jp" = ( +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"Jj" = ( /obj/effect/turf_decal/corner/opaque/red/half{ dir = 8 }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 +/obj/structure/closet/secure_closet/security, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/turf_decal/corner/opaque/red/half{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) +"Jo" = ( +/obj/effect/turf_decal/corner/transparent/mauve/half{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 +/obj/structure/table, +/obj/item/storage/box/mousetraps{ + pixel_y = 3 }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"Jp" = ( +/obj/machinery/light/small, /obj/structure/disposalpipe/segment{ - dir = 6 + dir = 8 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "Jr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -8311,21 +9043,50 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "Jw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/bodypart/head, -/obj/structure/closet/crate/bin, -/obj/item/trash/can/food, -/obj/item/organ/tongue/uwuspeak, -/obj/item/organ/tail/cat, -/obj/item/organ/ears/cat, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/obj/structure/table, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/structure/sign/poster/contraband/space_up{ + pixel_x = 30 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/dorms) "Jx" = ( /obj/structure/grille, /obj/structure/window/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) +"Jz" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) +"JA" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) +"JD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "JE" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -8336,6 +9097,34 @@ /obj/structure/table, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) +"JH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"JI" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Toy Store" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) +"JK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "JM" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 @@ -8345,33 +9134,73 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"JN" = ( -/turf/open/floor/wood, +"JP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"JO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +"JQ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 2 }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"JR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) -"JP" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/animalhide/human, -/obj/item/reagent_containers/food/snacks/meat/slab/human, -/obj/item/reagent_containers/food/snacks/meat/slab/human{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/has_grav/spacemall/dorms) "JS" = ( /obj/structure/sign/poster/contraband/the_griffin{ pixel_x = 32 }, /turf/open/floor/eighties, /area/ruin/space/has_grav/spacemall/shop2) +"JV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "JX" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/structure/disposalpipe/segment{ @@ -8439,27 +9268,23 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"Kh" = ( -/turf/template_noop, -/area/template_noop) -"Ki" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 8 +"Ke" = ( +/obj/machinery/door/airlock{ + name = "Custodian Closet" }, +/obj/structure/barricade/wooden, /obj/structure/disposalpipe/segment{ - dir = 6 + dir = 8 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"Kf" = ( +/obj/structure/railing/corner, +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) +"Kh" = ( +/turf/template_noop, +/area/template_noop) "Kj" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 @@ -8477,32 +9302,48 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Kq" = ( -/obj/effect/turf_decal/corner/transparent/red/diagonal, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall) -"Kr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" +"Km" = ( +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/storage/bag/money/vault, +/obj/item/coin, +/obj/item/coin, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/structure/safe/floor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/machinery/light/small{ +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Ks" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop2) -"Kw" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/filingcabinet, +"Ko" = ( +/obj/effect/turf_decal/corner/transparent/green, +/obj/structure/sign/poster/official/nanomichi_ad{ + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"Kq" = ( +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall) +"Ks" = ( +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop2) +"Kw" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/filingcabinet, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "Kz" = ( @@ -8521,13 +9362,34 @@ /turf/open/floor/wood/birch, /area/ruin/space/has_grav/spacemall/shop2) "KA" = ( -/obj/structure/table, -/obj/machinery/paystand, /obj/effect/turf_decal/corner/opaque/grey/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/machinery/door/poddoor/shutters{ - id = icecream_kiosk +/obj/machinery/button/door{ + pixel_x = -24; + id = icecream_kiosk; + name = "Kiosk Shutters" + }, +/obj/machinery/camera/autoname{ + dir = 6; + network = list("mall") }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---",desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/obj/machinery/button/door{ + pixel_x = -25; + id = "icecream_kiosk"; + name = "Kiosk Shutters"; + dir = 4 + }, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/structure/closet/wall{ + pixel_y = 30 + }, +/obj/item/spacecash/bundle/c100, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "KB" = ( @@ -8540,21 +9402,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plasteel/showroomfloor, /area/ruin/space/has_grav/spacemall/shop2) -"KF" = ( -/obj/machinery/door/airlock{ - name = "Custodian Closet" - }, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) -"KG" = ( -/obj/effect/turf_decal/corner/transparent/green, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "KH" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/structure/chair{ @@ -8563,24 +9410,41 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) "KI" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/light, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "KJ" = ( -/obj/effect/turf_decal/corner/opaque/red{ +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ dir = 6 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall) +"KK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "KL" = ( /obj/effect/turf_decal/corner/transparent/blue{ dir = 4 @@ -8593,19 +9457,13 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"KM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/broken{ +"KN" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/shop) "KO" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/structure/cable{ @@ -8614,6 +9472,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) +"KP" = ( +/obj/effect/turf_decal/corner/opaque/red{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "KQ" = ( /obj/effect/turf_decal/corner/opaque/black/diagonal, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -8624,35 +9491,41 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"KS" = ( +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/shop2) "KT" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/airlock/maintenance_hatch{ + id_tag = staffdoors; + locked = 1; + name = "Kitchen" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 + dir = 1 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "KX" = ( -/obj/machinery/power/terminal{ +/obj/machinery/light{ dir = 8 }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shuttle) -"KZ" = ( -/obj/structure/flora/grass/jungle, -/turf/open/floor/grass, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/broken/directional/west{ + icon_state = "tube-broken" + }, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "La" = ( /obj/structure/cable{ @@ -8668,19 +9541,38 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Lg" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Lc" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 1 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/mirror{ + pixel_x = 30 }, -/turf/open/floor/plasteel, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + welded = 1 + }, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) +"Lf" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/small/directional/east, +/obj/structure/table, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "Lh" = ( /obj/structure/table/reinforced, /obj/item/gun/ballistic/automatic/pistol/commander/no_mag{ @@ -8715,18 +9607,25 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Ln" = ( -/obj/effect/turf_decal/corner/opaque/red{ - dir = 9 +"Lm" = ( +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/chair{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall) "Lp" = ( /obj/structure/window/reinforced/spawner, /obj/effect/turf_decal/corner/opaque/blue/diagonal, @@ -8754,6 +9653,26 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) +"Ls" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/effect/turf_decal/road/line/transparent/solgovblue, +/obj/machinery/camera/autoname{ + dir = 5; + network = list("mall") + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/effect/turf_decal/road/line/transparent/solgovblue, +/obj/machinery/camera/autoname{ + dir = 5; + network = list("mall") + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "Lu" = ( /obj/structure/cable{ icon_state = "2-4" @@ -8764,15 +9683,6 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"Lw" = ( -/obj/effect/decal/cleanable/wrapping, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) "Lx" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/opaque/blue/half, @@ -8797,19 +9707,16 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Lz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +"LD" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"LC" = ( -/obj/structure/railing{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 }, -/turf/open/space/basic, -/area/ruin/space/has_grav/spacemall/maint) +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/walnut, +/area/ruin/space/has_grav/spacemall/shop) "LF" = ( /obj/effect/turf_decal/road/line/transparent/solgovblue, /obj/effect/turf_decal/corner/transparent/black/diagonal, @@ -8841,9 +9748,19 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"LJ" = ( -/turf/open/floor/plating{ - light_range = 1 +"LI" = ( +/obj/machinery/camera/autoname{ + dir = 10; + network = list("mall") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"LJ" = ( +/turf/open/floor/plating{ + light_range = 1 }, /area/ruin/space/has_grav/spacemall/maint) "LK" = ( @@ -8852,28 +9769,52 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"LO" = ( -/obj/machinery/light/dim{ - dir = 8; - pixel_y = -15 +"LN" = ( +/obj/item/clothing/under/pants/classicjeans{ + pixel_y = -5 }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" +/obj/item/clothing/under/pants/classicjeans{ + pixel_y = -5 }, -/area/ruin/space/has_grav/spacemall) +/obj/item/clothing/under/pants/classicjeans{ + pixel_y = -5 + }, +/obj/item/clothing/suit/ianshirt, +/obj/item/clothing/suit/ianshirt, +/obj/item/clothing/suit/ianshirt, +/obj/item/clothing/under/dress/striped{ + pixel_y = 4 + }, +/obj/item/clothing/under/dress/striped{ + pixel_y = 4 + }, +/obj/item/clothing/under/dress/striped{ + pixel_y = 4 + }, +/obj/structure/kitchenspike{ + name = "clothing rack"; + can_buckle = 0 + }, +/obj/effect/turf_decal/box/white, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "LP" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 1 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"LR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" +"LS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "LT" = ( /obj/structure/cable{ icon_state = "4-8" @@ -8888,13 +9829,30 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "LU" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/effect/decal/cleanable/robot_debris/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/wooden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/warning/vacuum{ + pixel_x = -30 }, /turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"LV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) +"Ma" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/dorms) "Mb" = ( /obj/effect/decal/cleanable/greenglow, @@ -8918,9 +9876,23 @@ /obj/structure/railing, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) +"Mi" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) "Mj" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/grass, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "Mk" = ( /obj/structure/window/spawner{ @@ -8934,23 +9906,28 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Mm" = ( -/obj/effect/turf_decal/corner/opaque/red{ - dir = 5 +"Ml" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/walnut, +/area/ruin/space/has_grav/spacemall/shop) +"Mo" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/light{ - dir = 1 +/obj/structure/railing{ + dir = 4 }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/footprints, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"Mo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/secure, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/shuttle) "Mq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -8968,11 +9945,12 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall) "Mt" = ( -/obj/effect/spawner/lootdrop, -/obj/effect/spawner/lootdrop, -/obj/structure/rack, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/item/reagent_containers/food/snacks/spidereggsham, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "Mw" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/effect/turf_decal/siding/thinplating/light/corner{ @@ -8985,7 +9963,19 @@ /area/ruin/space/has_grav/spacemall) "Mz" = ( /turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/dorms) +"MA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "MC" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -9026,23 +10016,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plasteel/showroomfloor, /area/ruin/space/has_grav/spacemall/shop2) -"MK" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/closet/secure_closet/freezer/kitchen/wall{ - pixel_x = -30 - }, -/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/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/rice, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) "ML" = ( /obj/machinery/vending/boozeomat/all_access, /turf/open/floor/wood/walnut, @@ -9065,27 +10038,24 @@ /turf/open/floor/plasteel/showroomfloor, /area/ruin/space/has_grav/spacemall/shop2) "MO" = ( -/obj/machinery/door/airlock/public/glass{ - locked = 1; - name = "Pawn Shop" - }, -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"MR" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 + dir = 10 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"MR" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/carpet/blue, +/area/ruin/space/has_grav/spacemall/shop) "MS" = ( /obj/structure/cable{ icon_state = "1-2" @@ -9103,19 +10073,16 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall) "MU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/obj/machinery/light, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "MV" = ( /obj/effect/turf_decal/corner/opaque/blue/half, /obj/machinery/camera/autoname{ @@ -9142,68 +10109,74 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"Na" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/mob/living/simple_animal/hostile/poison/giant_spider/nurse, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"Nb" = ( -/obj/machinery/computer/arcade, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/eighties, -/area/ruin/space/has_grav/spacemall/shop2) -"Nc" = ( -/obj/structure/table/wood/reinforced, -/obj/machinery/button/door{ - normaldoorcontrol = 1; - id = staffdoors; - name = "Staff Lockdown"; - pixel_y = -7; - specialfunctions = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/maint) -"Ne" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, +"MZ" = ( /obj/structure/cable{ - icon_state = "1-8" + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 + dir = 4 }, -/turf/open/floor/carpet/green, +/obj/structure/spider_player/cocoon, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Nf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 +"Nc" = ( +/obj/structure/kitchenspike{ + name = "clothing rack"; + can_buckle = 0 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"Nh" = ( +/obj/item/clothing/suit/jacket/letterman_nanotrasen{ + pixel_y = -7 + }, +/obj/item/clothing/suit/jacket/letterman_nanotrasen{ + pixel_y = -7 + }, +/obj/item/clothing/suit/jacket/letterman_nanotrasen{ + pixel_y = -7 + }, +/obj/item/clothing/suit/jacket/letterman, +/obj/item/clothing/suit/jacket/letterman, +/obj/item/clothing/suit/jacket/letterman, +/obj/item/clothing/suit/jacket/letterman_red{ + pixel_y = 5 + }, +/obj/item/clothing/suit/jacket/letterman_red{ + pixel_y = 5 + }, +/obj/item/clothing/suit/jacket/letterman_red{ + pixel_y = 5 + }, +/obj/effect/turf_decal/box/white, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"Nf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 }, /obj/structure/disposalpipe/segment{ - dir = 2 + dir = 8 }, /turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"Ng" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/light/directional/west, +/obj/structure/table, +/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) "Ni" = ( /obj/effect/turf_decal/siding/wideplating/dark{ @@ -9252,6 +10225,14 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"Nq" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "Nr" = ( /obj/effect/turf_decal/siding/thinplating/dark, /obj/machinery/camera/autoname{ @@ -9267,22 +10248,41 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Nv" = ( -/obj/machinery/camera/autoname{ - dir = 9; - network = list("mall") +"Nt" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/spacemall/dorms) +"Nu" = ( +/obj/machinery/power/apc/auto_name/west, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "0-4" }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) +/obj/machinery/power/apc/auto_name/directional/west{ + start_charge = 0 + }, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "Nx" = ( /obj/structure/cable{ icon_state = "4-8" @@ -9298,6 +10298,15 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"Ny" = ( +/obj/structure/rack, +/obj/effect/turf_decal/box/white, +/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, +/obj/item/bodypart/l_leg, +/obj/item/organ/liver, +/obj/item/organ/stomach, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "NA" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 4 @@ -9326,24 +10335,41 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"NH" = ( -/obj/structure/railing{ - dir = 4 +"NG" = ( +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light_switch{ + pixel_y = -30 }, -/obj/structure/sign/warning/vacuum{ - pixel_x = -30 +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"NM" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "NP" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"NQ" = ( +/obj/structure/spider/eggcluster, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) "NR" = ( /obj/structure/railing/wood, /obj/effect/turf_decal/siding/wideplating/dark, @@ -9369,6 +10395,10 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/ruin/space/has_grav/spacemall/shop2) +"NU" = ( +/obj/machinery/computer/apc_control, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/maint) "NW" = ( /obj/effect/turf_decal/corner/transparent/blue/half{ dir = 1 @@ -9387,10 +10417,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"NZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/ruin/space/has_grav/spacemall/maint) "Oe" = ( /obj/structure/railing/wood{ dir = 8 @@ -9403,39 +10429,42 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Of" = ( -/obj/effect/turf_decal/siding/thinplating{ +"Oh" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/directional/south, +/obj/item/trash/raisins{ + pixel_y = 5 }, +/obj/structure/table, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"Og" = ( -/obj/machinery/light/dim{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, -/area/ruin/space/has_grav/spacemall) "Oi" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/chair{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 +/obj/machinery/light, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/chair{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall) "Oj" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -9446,6 +10475,21 @@ /obj/structure/spider/stickyweb, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) +"Ol" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "Ot" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -9487,18 +10531,45 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop) +"OG" = ( +/obj/effect/turf_decal/corner/opaque/red/half{ + dir = 8 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop2) "OH" = ( /obj/machinery/door/airlock/external/glass, /obj/structure/fans/tiny, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shuttle) "OI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/sign/departments/engineering{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "OJ" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/item/trash/tray{ @@ -9509,42 +10580,31 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) "OK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 +/obj/structure/table, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 5 }, -/obj/structure/spider/stickyweb, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/area/ruin/space/has_grav/spacemall/shuttle) "OM" = ( -/obj/machinery/door/airlock{ - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"OO" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 }, /turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) +"OP" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/microwave, +/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) "OQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "engishop_shutters"; - name = "Shop Shutters" - }, +/obj/structure/table/glass, +/obj/machinery/cell_charger, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "OS" = ( @@ -9553,20 +10613,39 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"OT" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/transparent/lime{ + dir = 4 + }, +/obj/item/folder, +/obj/item/pen, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "OU" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-4" +/mob/living/simple_animal/beachcarp/bass{ + name = "Bass Pro" }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel/showroomfloor, +/area/ruin/space/has_grav/spacemall/shop2) "OV" = ( /obj/structure/cable{ icon_state = "2-8" @@ -9576,16 +10655,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) -"OX" = ( -/obj/effect/decal/cleanable/blood/footprints{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 1; - icon_state = "blood2" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) "OY" = ( /obj/structure/rack, /obj/item/gun/energy/disabler{ @@ -9609,32 +10678,6 @@ }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) -"Pc" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"Pd" = ( -/obj/effect/turf_decal/corner/transparent/red/diagonal, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall) "Pf" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sink{ @@ -9643,6 +10686,15 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) +"Ph" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 4 + }, +/obj/effect/turf_decal/corner/transparent/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "Pi" = ( /obj/machinery/computer/security{ dir = 1; @@ -9651,21 +10703,22 @@ /obj/effect/turf_decal/corner/opaque/red/three_quarters, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"Pk" = ( -/obj/effect/decal/cleanable/wrapping, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/camera/autoname{ - dir = 9; - network = list("mall") +"Pj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/light/small/broken{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/shop) "Pl" = ( /obj/structure/fireplace, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ @@ -9681,6 +10734,27 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"Pp" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) +"Pr" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/item/paper{ + name = "Cheap Kalixcian Phrasebook"; + info = "Rsku suok sz zalo - My sugarcube is full of eels." + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) +"Ps" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) "Pu" = ( /obj/structure/window/reinforced{ dir = 1 @@ -9713,29 +10787,17 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall) "Pw" = ( -/obj/machinery/camera/autoname{ - dir = 5; - network = list("mall") - }, +/obj/effect/decal/cleanable/dirt/dust, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shop2) +"Px" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) -"Pz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/shop) -"PA" = ( -/obj/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "PB" = ( /obj/machinery/atmospherics/components/unary/tank/air{ piping_layer = 4 @@ -9749,6 +10811,15 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"PD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shuttle) "PE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 @@ -9795,21 +10866,44 @@ /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"PM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +"PO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ dir = 1 }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "PP" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = clothing_shutter +/obj/machinery/door/airlock{ + name = "Dorm 4" }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock{ + name = "Dorm 8"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "PQ" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/effect/turf_decal/road/line/transparent/solgovblue, @@ -9825,12 +10919,55 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) "PR" = ( -/obj/effect/turf_decal/corner/opaque/red{ - dir = 5 +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + dir = 4 + }, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/cable{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) +"PS" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "PV" = ( @@ -9852,25 +10989,37 @@ }, /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) -"Qa" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/random_computer_circuit_common, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"Qb" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +"PY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"Qd" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/opaque/red/full, -/obj/item/reagent_containers/food/snacks/donut/plain, -/turf/open/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"Qb" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "Qf" = ( /obj/structure/rack, @@ -9878,14 +11027,6 @@ /obj/effect/turf_decal/corner/transparent/black/diagonal, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"Qg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/dorms) "Qh" = ( /obj/structure/bookcase/random, /obj/structure/disposalpipe/segment{ @@ -9893,33 +11034,41 @@ }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) -"Qi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "Qm" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 1 +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"Qq" = ( -/obj/effect/turf_decal/corner/transparent/mauve/half{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 }, -/obj/structure/table, -/obj/item/storage/box/mousetraps{ - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"Qp" = ( +/obj/structure/rack, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/box/white, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/shop) +"Qq" = ( +/obj/structure/rack, +/obj/item/vending_refill/mining_equipment, +/obj/item/pickaxe/drill, +/obj/effect/turf_decal/siding/wideplating/dark/end, +/turf/open/floor/light, +/area/ruin/space/has_grav/spacemall/shop) +"Qs" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/structure/marker_beacon, +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) "Qx" = ( /obj/effect/turf_decal/corner/transparent/solgovgold/diagonal, /turf/open/floor/plasteel, @@ -9927,39 +11076,6 @@ "Qy" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"Qz" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shuttle) -"QA" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen" - }, -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) "QC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/structure/cable{ @@ -9997,14 +11113,13 @@ /obj/effect/turf_decal/siding/wideplating/dark/corner, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"QK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) +"QI" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/light/directional/east, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "QO" = ( /obj/item/dualsaber/toy, /obj/item/toy/redbutton{ @@ -10020,11 +11135,12 @@ /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop2) "QP" = ( -/obj/structure/rack, -/obj/effect/turf_decal/box/white, -/obj/item/binoculars, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "QQ" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -10059,13 +11175,36 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"Rc" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +"Ra" = ( +/obj/structure/railing, +/turf/open/space/basic, +/area/ruin/space/has_grav/spacemall/maint) +"Rg" = ( +/obj/machinery/door/airlock{ + name = "Dorm 6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/shop2) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock{ + name = "Dorm 10"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) "Rh" = ( /obj/structure/railing{ pixel_x = -9 @@ -10098,30 +11237,10 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Rr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"Rs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/dorms) -"Ru" = ( -/obj/machinery/computer/apc_control, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/maint) +"Rp" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/eighties, +/area/ruin/space/has_grav/spacemall/shop2) "Rw" = ( /obj/structure/cable{ icon_state = "1-2" @@ -10150,12 +11269,11 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"RA" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/transparent/green/full, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/instrument/piano_synth, -/turf/open/floor/plasteel, +"RC" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "RD" = ( /obj/structure/cable{ @@ -10169,17 +11287,15 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "RF" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Clothing Store" - }, -/obj/machinery/door/poddoor/shutters{ - id = clothing_shutter +/obj/machinery/door/airlock/freezer{ + name = "Freezer Room" }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/spacemall/dorms) "RG" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ @@ -10193,6 +11309,16 @@ /obj/structure/window/fulltile, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop) +"RI" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + normaldoorcontrol = 1; + id = staffdoors; + name = "Staff Lockdown"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "RL" = ( /obj/effect/turf_decal/corner/transparent/solgovgold/three_quarters, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -10200,14 +11326,31 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"RN" = ( +"RO" = ( /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/machinery/power/apc/auto_name/north, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"RO" = ( +"RP" = ( +/obj/effect/spawner/lootdrop, +/obj/effect/spawner/lootdrop/glowstick, +/obj/structure/rack, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"RR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, @@ -10219,16 +11362,60 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) -"RP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 2 +"RS" = ( +/obj/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"RU" = ( -/obj/machinery/shower{ - dir = 4 +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"RT" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"RU" = ( +/obj/machinery/shower{ + dir = 4 }, /obj/effect/decal/remains/human{ pixel_x = 5; @@ -10246,19 +11433,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/wood/birch, /area/ruin/space/has_grav/spacemall/shop2) -"RW" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "RY" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/structure/table, @@ -10273,21 +11447,15 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Sd" = ( -/mob/living/simple_animal/hostile/cockroach, -/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) "Se" = ( -/obj/structure/cable{ - icon_state = "2-4" +/obj/structure/chair/comfy/brown{ + dir = 4 }, -/turf/open/floor/plating{ - light_range = 1 +/obj/structure/disposalpipe/broken{ + dir = 8 }, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "Sf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ @@ -10312,6 +11480,16 @@ /obj/structure/spider/stickyweb, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) +"Sj" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) "Sk" = ( /obj/structure/railing/wood{ icon_state = "railing_corner"; @@ -10324,6 +11502,16 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"Sl" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) "Sm" = ( /obj/structure/table/wood/bar, /obj/effect/turf_decal/siding/thinplating, @@ -10331,19 +11519,44 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop) "Sp" = ( -/obj/structure/rack, -/obj/item/vending_refill/mining_equipment, -/obj/item/pickaxe/drill, -/obj/effect/turf_decal/siding/wideplating/dark/end, -/turf/open/floor/light, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) +"Sq" = ( +/obj/item/clothing/mask/gas/clown_hat{ + pixel_y = 2; + pixel_x = 1; + name = "tainted clown wig and mask" + }, +/obj/effect/decal/remains/human, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/shop) "Sr" = ( -/obj/structure/sign/departments/chemistry/pharmacy{ - pixel_y = -32 - }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/snacks/hotdog, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"Ss" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "St" = ( /obj/effect/turf_decal/corner/opaque/blue/three_quarters{ dir = 8 @@ -10358,56 +11571,37 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/shop2) -"Sx" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"Sz" = ( -/obj/effect/turf_decal/trimline/transparent/neutral/arrow_cw{ - dir = 8 - }, -/obj/effect/turf_decal/corner/transparent/black{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8 +"Su" = ( +/obj/machinery/door/airlock/public/glass{ + locked = 1; + name = "Pawn Shop" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"SA" = ( -/obj/effect/turf_decal/corner/opaque/grey/diagonal, -/obj/machinery/light/small{ - dir = 8 +"Sy" = ( +/obj/machinery/door/airlock, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" + }, +/area/ruin/space/has_grav/spacemall/dorms) +"SC" = ( +/obj/structure/flora/junglebush, +/turf/open/floor/grass, /area/ruin/space/has_grav/spacemall) "SE" = ( /obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 +/turf/open/floor/plating{ + light_range = 1 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/maint) "SF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 6 @@ -10417,24 +11611,40 @@ }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/shop) +"SI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ruin/space/has_grav/spacemall/maint) +"SJ" = ( +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) "SN" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/machinery/chem_master/condimaster, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) -"SQ" = ( -/obj/effect/turf_decal/siding/wood{ +"SR" = ( +/obj/effect/turf_decal/corner/opaque/red{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/maint) -"ST" = ( -/obj/structure/table_frame, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/blood, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/area/ruin/space/has_grav/spacemall/dorms) "SV" = ( +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"SW" = ( /obj/effect/turf_decal/corner/opaque/red/three_quarters{ dir = 8 }, @@ -10454,16 +11664,15 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "SY" = ( -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/effect/turf_decal/corner/transparent/green{ + dir = 1 }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/area/ruin/space/has_grav/spacemall/dorms) "SZ" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/effect/turf_decal/siding/thinplating/light/corner, @@ -10498,60 +11707,22 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop) -"Th" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/dorms) -"Tj" = ( +"Tf" = ( +/obj/machinery/door/airlock, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 2 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"Tk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) "Tm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"Tp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" - }, /area/ruin/space/has_grav/spacemall/maint) "Tq" = ( /obj/structure/railing/wood{ @@ -10564,13 +11735,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Tr" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) "Tt" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /turf/closed/wall, @@ -10585,6 +11749,13 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/shop2) +"Tw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) "Tx" = ( /obj/structure/cable{ icon_state = "0-4" @@ -10599,19 +11770,18 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"Tz" = ( -/obj/effect/turf_decal/corner/transparent/green{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) "TA" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" }, -/obj/item/toy/plush/snakeplushie, -/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall) +"TB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/nurse/midwife, +/turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) "TC" = ( /obj/machinery/light/small, @@ -10637,12 +11807,18 @@ /turf/open/floor/light, /area/ruin/space/has_grav/spacemall/shop) "TJ" = ( -/obj/structure/railing{ - dir = 4 +/obj/machinery/door/airlock, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" }, -/obj/structure/lattice, -/obj/structure/marker_beacon, -/turf/open/space/basic, /area/ruin/space/has_grav/spacemall/maint) "TK" = ( /obj/effect/turf_decal/corner/opaque/black/diagonal, @@ -10669,31 +11845,10 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"TQ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/maint) -"TS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, +"TO" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "TT" = ( @@ -10701,6 +11856,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/maint) +"TU" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) "TV" = ( /obj/structure/cable{ icon_state = "4-8" @@ -10717,30 +11880,28 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "TX" = ( -/obj/machinery/door/airlock/glass{ - name = "Break Room" +/obj/structure/cable{ + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 + dir = 6 }, -/turf/open/floor/wood, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "TY" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/beaker/synthflesh, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid{ - pixel_y = -5 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/storage/firstaid{ - pixel_y = -5 +/turf/open/floor/plating{ + light_range = 1 }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/shop2) +/area/ruin/space/has_grav/spacemall/maint) "TZ" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/corner/opaque/blue/half{ @@ -10755,12 +11916,49 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) "Ub" = ( -/obj/effect/turf_decal/corner/transparent/green, -/obj/structure/sign/poster/official/soft_cap_pop_art{ - pixel_y = -30 +/obj/effect/turf_decal/corner/transparent/mauve/half, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/dim/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"Uc" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/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/spacemall/maint) "Ue" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/effect/turf_decal/siding{ @@ -10790,6 +11988,11 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"Ui" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/arcade/amputation, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "Uj" = ( /obj/structure/railing{ dir = 4 @@ -10810,28 +12013,13 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shuttle) -"Ur" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, +"Un" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/opaque/blue/full, +/obj/item/storage/firstaid/advanced, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/area/ruin/space/has_grav/spacemall/maint) "Us" = ( /obj/effect/turf_decal/trimline/opaque/solgovblue/arrow_cw, /obj/effect/turf_decal/corner/transparent/black/diagonal, @@ -10859,6 +12047,13 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) +"Uv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-9" + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "Ux" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/structure/disposalpipe/segment{ @@ -10879,6 +12074,16 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"UC" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "UE" = ( /obj/effect/turf_decal/trimline/transparent/neutral/arrow_cw{ dir = 8 @@ -10894,36 +12099,34 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) "UF" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 }, /turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shuttle) +/area/ruin/space/has_grav/spacemall/maint) "UG" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/arcade/amputation, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/dorms) "UI" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/airlock/public/glass{ + name = "Hardware Store" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/machinery/door/poddoor/shutters{ + id = "engishop_shutters" }, /obj/structure/cable{ - icon_state = "2-4" + icon_state = "1-2" }, -/obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"UK" = ( -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) +/area/ruin/space/has_grav/spacemall/shop) "UL" = ( /obj/machinery/door/window{ dir = 8 @@ -10948,45 +12151,80 @@ name = "bathroom floor" }, /area/ruin/space/has_grav/spacemall/maint) -"UN" = ( -/obj/effect/turf_decal/corner/opaque/blue/half, -/obj/item/clothing/suit/jacket/leather/duster, -/obj/item/clothing/suit/jacket/leather/duster, -/obj/item/clothing/suit/jacket/leather/duster, -/obj/structure/kitchenspike{ - name = "clothing rack"; - can_buckle = 0 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"UO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) "UQ" = ( /obj/machinery/door/window, /turf/open/floor/wood/walnut, /area/ruin/space/has_grav/spacemall/shop) +"UT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "UU" = ( -/obj/structure/chair/sofa/right{ - dir = 1 +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 4 }, -/turf/open/floor/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -4 + }, +/obj/machinery/door/poddoor/shutters{ + id = shutters_kitchen + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "shutters_kitchen"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) +"UV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "UW" = ( /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "UZ" = ( -/obj/effect/turf_decal/corner/transparent/mauve/half{ - dir = 1 +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/shuttle) "Vb" = ( /obj/effect/turf_decal/siding/thinplating/light/corner{ dir = 1 @@ -10998,23 +12236,12 @@ /obj/effect/turf_decal/corner/transparent/green/diagonal, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) -"Vd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/spacemall/dorms) "Ve" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/table_frame, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "Vf" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 5 @@ -11037,6 +12264,28 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"Vh" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"Vj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) "Vk" = ( /obj/effect/turf_decal/corner/transparent/black/diagonal, /obj/structure/cable{ @@ -11049,15 +12298,48 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/dorms) "Vl" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"Vm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"Vn" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/item/kirbyplants/random, +/obj/machinery/button/door{ + pixel_y = -30; + id = shutters_kitchen; + name = "Kitchen Shutters" + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) "Vp" = ( /obj/structure/cable{ icon_state = "4-8" @@ -11086,79 +12368,70 @@ }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/maint) -"VB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 +"Vx" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 30 }, -/turf/closed/wall/r_wall, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"VC" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" +"Vz" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/mob/living/simple_animal/hostile/poison/giant_spider/nurse, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"VC" = ( +/obj/machinery/shower{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plasteel/showroomfloor{ + name = "bathroom floor" }, -/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "VE" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/dorms) -"VF" = ( -/obj/effect/turf_decal/box, -/obj/structure/closet/crate/critter, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/reagent_containers/food/snacks/spiderling, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/maint) -"VI" = ( +"VG" = ( /obj/machinery/door/airlock/public/glass{ - name = "Construction Zone" + name = "Music Store" }, -/obj/structure/barricade/wooden/crude, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plating, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop2) -"VK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +"VH" = ( +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) +"VP" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 2 }, +/obj/structure/spider/stickyweb, /turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shop2) -"VN" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-4" +/area/ruin/space/has_grav/spacemall/maint) +"VS" = ( +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/shuttle) -"VP" = ( -/obj/machinery/camera/autoname{ - dir = 10; - network = list("mall") +/obj/machinery/door/airlock{ + name = "Dorm 2"; + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/turf/closed/wall, +/area/ruin/space/has_grav/spacemall/dorms) "VT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 @@ -11175,6 +12448,16 @@ /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"VY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "VZ" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/structure/chair, @@ -11191,21 +12474,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/shop) -"Wc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) "We" = ( /obj/structure/cable{ icon_state = "1-4" @@ -11218,35 +12486,82 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"Wh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "Wi" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shuttle) -"Wo" = ( -/obj/machinery/shower{ - pixel_y = 15 +"Wm" = ( +/obj/structure/table/reinforced, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 10 }, -/turf/open/floor/plasteel/showroomfloor{ - name = "bathroom floor" +/obj/item/storage/secure/briefcase{ + pixel_y = 5; + pixel_x = -2 }, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) +"Wn" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"Wo" = ( +/obj/structure/table/wood, +/obj/item/trash/plate{ + pixel_x = 7 + }, +/obj/item/candle{ + pixel_y = 9 + }, +/obj/item/organ/liver{ + pixel_x = 7 + }, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "Wq" = ( /obj/structure/cable{ - icon_state = "1-4" + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 + dir = 4 }, +/obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "Wr" = ( /obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ @@ -11254,50 +12569,33 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/spacemall/shop2) -"Wt" = ( -/obj/item/clothing/mask/gas/clown_hat{ - pixel_y = 2; - pixel_x = 1; - name = "tainted clown wig and mask" - }, -/obj/effect/decal/remains/human, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/shop) -"Wv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/has_grav/spacemall/dorms) -"WE" = ( -/obj/machinery/light{ - dir = 4 +"Wu" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/departments/security{ + pixel_x = 31 }, +/obj/effect/turf_decal/corner/transparent/green, /turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"Wv" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/structure/window/fulltile, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop) -"WF" = ( -/obj/machinery/door/airlock/public/glass, +"Wz" = ( +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) +"WA" = ( +/obj/machinery/door/airlock/public/glass{ + locked = 1; + name = "Computer Store" + }, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop) -"WI" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) "WJ" = ( /obj/effect/turf_decal/corner/transparent/red/diagonal, /obj/effect/turf_decal/siding/thinplating/light/corner{ @@ -11323,78 +12621,71 @@ }, /obj/structure/table, /turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/shop2) -"WO" = ( -/obj/structure/window/spawner{ - dir = 1 - }, -/obj/item/toy/figure/assistant, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall/shop2) -"WX" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/item/kitchen/rollingpin, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) -"Xb" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/spacemall/shop) -"Xg" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 4 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -4 - }, -/obj/machinery/door/poddoor/shutters{ - id = shutters_kitchen - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) -"Xl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/area/ruin/space/has_grav/spacemall/shop2) +"WM" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, +/obj/structure/lattice, +/obj/structure/marker_beacon, +/turf/open/space/basic, /area/ruin/space/has_grav/spacemall/maint) -"Xm" = ( -/obj/machinery/door/airlock{ - locked = 1; - id_tag = staffdoors; - name = "Staff Area" +"WO" = ( +/obj/structure/window/spawner{ + dir = 1 }, +/obj/item/toy/figure/assistant, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall/shop2) +"WX" = ( +/obj/effect/turf_decal/corner/transparent/black/diagonal, +/obj/item/kitchen/rollingpin, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall/dorms) +"WY" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"Xa" = ( +/obj/structure/sign/warning/vacuum{ + pixel_y = 30 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"Xb" = ( +/turf/closed/wall/r_wall, +/area/ruin/space/has_grav/spacemall/shop) +"Xg" = ( +/obj/effect/turf_decal/box, +/mob/living/simple_animal/hostile/poison/giant_spider, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/dorms) -"Xn" = ( +/area/ruin/space/has_grav/spacemall/maint) +"Xm" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/critter, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/obj/item/reagent_containers/food/snacks/spiderling, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) +"Xn" = ( +/obj/structure/cable, +/obj/machinery/power/smes/magical{ + name = "power storage unit" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/turf/open/floor/plating, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/maint) "Xo" = ( /obj/structure/disposalpipe/junction/yjunction{ @@ -11402,9 +12693,55 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Xq" = ( +"Xp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/catwalk/over/plated_catwalk, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + environment_smash = 0 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) +"Xq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) +"Xs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "Xu" = ( /obj/effect/turf_decal/siding/wideplating/dark{ @@ -11415,22 +12752,18 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"Xv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +"Xw" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 2 + dir = 4 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) -"Xw" = ( -/obj/effect/turf_decal/box, -/obj/machinery/light/small, -/obj/structure/closet/crate/secure, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) +/area/ruin/space/has_grav/spacemall/dorms) "Xz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -11443,29 +12776,25 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"XC" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"XE" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/lattice/catwalk, +"XA" = ( /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "0-6" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "6-8" +/obj/structure/disposalpipe/segment{ + dir = 8 }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"XC" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/shop) "XG" = ( /obj/structure/cable{ icon_state = "1-6" @@ -11479,6 +12808,11 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"XJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/maint) "XL" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 6 @@ -11523,97 +12857,83 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"XQ" = ( +/obj/structure/spider/cocoon, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/maint) +"XS" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) "XT" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"XV" = ( -/obj/structure/frame/computer{ - dir = 8 +"XU" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 1 }, -/obj/effect/decal/cleanable/glass, -/obj/item/circuitboard/computer/shuttle/helm, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"XW" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"XX" = ( -/obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 10 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"Ya" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shuttle) -"Yb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" +/area/ruin/space/has_grav/spacemall/dorms) +"XV" = ( +/obj/machinery/door/airlock{ + name = "Dorm 5" }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) -"Ye" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/corner/transparent/green/diagonal, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) -"Yf" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Hardware Store" +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/door/poddoor/shutters{ - id = "engishop_shutters" +/obj/machinery/door/airlock{ + name = "Dorm 9"; + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) -"Yh" = ( -/obj/structure/table/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/paystand, -/turf/open/floor/carpet/blue, -/area/ruin/space/has_grav/spacemall/shop) -"Yi" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) +"XX" = ( +/obj/effect/turf_decal/corner/transparent/green{ + dir = 1 }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/maint) +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"Ye" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/spacemall) +"Yh" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/grass, +/area/ruin/space/has_grav/spacemall) "Yl" = ( /turf/open/floor/plasteel/showroomfloor{ name = "bathroom floor" @@ -11637,17 +12957,39 @@ /turf/closed/wall, /area/ruin/space/has_grav/spacemall/maint) "Ys" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/ruin/space/has_grav/spacemall/maint) +"Yt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 }, -/mob/living/simple_animal/hostile/poison/giant_spider/nurse, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Yt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +"Yw" = ( +/obj/effect/turf_decal/corner/opaque/red{ + dir = 6 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) +/area/ruin/space/has_grav/spacemall/dorms) "Yx" = ( /obj/structure/cable{ icon_state = "4-8" @@ -11691,25 +13033,16 @@ /obj/structure/table, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall/shop2) -"YE" = ( -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 1; - pixel_y = 20; - pixel_x = -10 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop) "YF" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/spacemall) +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/plating, +/area/ruin/space/has_grav/spacemall/maint) "YG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 @@ -11722,6 +13055,11 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) +"YH" = ( +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall) "YI" = ( /obj/structure/cable{ icon_state = "1-8" @@ -11745,18 +13083,6 @@ }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/shop) -"YL" = ( -/obj/machinery/door/airlock{ - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ruin/space/has_grav/spacemall/dorms) "YM" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -11771,29 +13097,22 @@ /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) "YN" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) -"YO" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - id_tag = staffdoors; - locked = 1; - name = "Kitchen" +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/chair{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/light, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/chair{ + dir = 8 }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/ruin/space/has_grav/spacemall/maint) +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall) "YQ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -11804,35 +13123,51 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"YS" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black/diagonal, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 +"YR" = ( +/obj/effect/turf_decal/corner/transparent/green, +/obj/machinery/camera/autoname{ + dir = 10; + network = list("mall") }, -/obj/item/kitchen/knife/plastic{ - pixel_x = 10 +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/machinery/door/airlock{ + name = "Dorm 1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, /turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"YT" = ( +/obj/machinery/light, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/spacemall) "YV" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/spacemall/dorms) -"YW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 +"YX" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/item/toy/plush/snakeplushie, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) "YY" = ( @@ -11840,19 +13175,57 @@ /obj/item/flashlight/lamp/green, /turf/open/floor/carpet/green, /area/ruin/space/has_grav/spacemall/maint) -"Zc" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 +"Zd" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/turf/open/floor/plating, +/turf/open/space/basic, /area/ruin/space/has_grav/spacemall/maint) -"Zd" = ( -/obj/effect/turf_decal/corner/transparent/green{ +"Ze" = ( +/obj/structure/barricade/security, +/obj/machinery/door/airlock/security/glass{ + locked = 1; + id_tag = staffdoors; + name = "Security Office" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/structure/barricade/security, +/obj/machinery/door/airlock/security/glass{ + locked = 1; + id_tag = "staffdoors"; + name = "Security Office"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/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/spacemall/dorms) "Zf" = ( @@ -11876,54 +13249,57 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) "Zh" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/effect/turf_decal/road/line/transparent/solgovblue, -/obj/machinery/camera/autoname{ - dir = 5; - network = list("mall") +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall/shop2) +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/dorms) "Zj" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"Zo" = ( -/obj/effect/turf_decal/corner/transparent/black/diagonal, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/dorms) "Zp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/siding/wood{ + dir = 5 }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/turf/open/floor/carpet/green, +/area/ruin/space/has_grav/spacemall/maint) "Zq" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/mop, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/shop2) +"Zs" = ( +/obj/effect/turf_decal/corner/transparent/red/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/spacemall) "Zt" = ( /obj/structure/railing/corner/wood{ dir = 4 }, -/obj/effect/turf_decal/siding/wideplating/dark/corner{ +/obj/effect/turf_decal/siding/wideplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"Zu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ dir = 4 }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, /turf/open/floor/plasteel, -/area/ruin/space/has_grav/spacemall) +/area/ruin/space/has_grav/spacemall/dorms) "Zx" = ( /obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/structure/disposalpipe/segment{ @@ -11936,48 +13312,98 @@ /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall) -"ZC" = ( -/obj/effect/turf_decal/corner/opaque/blue/three_quarters, -/obj/structure/cable{ - icon_state = "1-8" - }, +"ZB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 + dir = 4 }, /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/spacemall/shop2) -"ZF" = ( -/obj/machinery/light/small{ +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, +/obj/effect/turf_decal/corner/transparent/lime, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/ruin/space/has_grav/spacemall/dorms) +"ZD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, /obj/structure/disposalpipe/segment{ - dir = 2 + dir = 5 }, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) +"ZF" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/merge_conflict_marker{ + name = "---Merge Conflict Marker---", + desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." + }, +/obj/machinery/power/apc/auto_name/directional/south{ + start_charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/corner/transparent/green/diagonal, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) "ZG" = ( -/obj/effect/turf_decal/corner/transparent/green, -/obj/structure/sign/poster/official/nanomichi_ad{ - pixel_y = -30 +/obj/effect/turf_decal/corner/transparent/mauve/half{ + dir = 1 }, +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/spacemall/dorms) "ZH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plating, /area/ruin/space/has_grav/spacemall/maint) -"ZI" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/closed/wall, -/area/ruin/space/has_grav/spacemall/shop) "ZK" = ( /obj/structure/cable{ icon_state = "4-8" @@ -12026,6 +13452,38 @@ }, /turf/open/floor/wood, /area/ruin/space/has_grav/spacemall/shop) +"ZX" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black/diagonal, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/snacks/burger, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall) +"ZY" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) +"ZZ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/spacemall/dorms) (1,1,1) = {" Kh @@ -12098,22 +13556,22 @@ bw bw bw bw -nV +kZ BF yt -nV +kZ BF yt -nV +kZ BF yt -nV +kZ BF yt -nV +kZ BF yt -nV +zs BF bw Kh @@ -12144,26 +13602,26 @@ qK cs cs Yo -Wo +Dl kb -ec +VC yt -bt +dl JE yt -bt +dl JE yt -bt +dl JE yt -bt +dl JE yt -bt +dl JE yt -bt +dl JE bw Kh @@ -12191,29 +13649,29 @@ Kh Kh Kh qK -hK +oZ cs Yo dQ ar tS yt -eF +Rg yt yt -xk +XV yt yt -YL +PP yt yt -qi +pn yt yt -HF +nY yt yt -OM +nA yt bw Kh @@ -12244,27 +13702,27 @@ qK cs cs Yo -Wo +Dl PE -ec +VC yt -fI -Of -cY -oP -Of -Of -GY +xG +nH +ZY +ZZ +nH +nH +cW yt -LU -Tm -gH -cX -cF -nc -nc -Tm -wj +GU +oz +uk +wM +gz +PS +PS +oz +fU bw Kh Kh @@ -12298,23 +13756,23 @@ dQ PE dQ yt -mq -yX -yX -yX -yX -yX -vi -lf -Cw -Qi -FI -dI -dd -FI -FI -zO -KI +jo +Mz +Mz +Mz +Mz +Mz +hF +ps +ag +tB +qd +bZ +MA +qd +qd +Eh +Oh bw bw Kh @@ -12344,28 +13802,28 @@ cs cs cs Yo -Wo +Dl ji po -EL -Bv -yX -yX -yX -yX -yX -jy +Sy +TO +Mz +Mz +Mz +Mz +Mz +sJ yt -lH +iH pZ -lI -Zd -lI -lH -lH -SE -mx -wj +Ph +zJ +Ph +iH +iH +vW +Ol +fU bw Kh Kh @@ -12395,27 +13853,27 @@ cs cs Yo dQ -kF +sB dQ yt -dc -Ki -tY -cU -cU -cU -Ur +MO +xP +RT +JQ +JQ +JQ +ZF yt -jf -TX -jf +GV +Bz +GV yt -Rs -Rs +VE +VE yt -bV -zU -Hh +XX +tT +Dh bw bw Kh @@ -12449,24 +13907,24 @@ yt yt yt yt -QA +PR yt Ou -Bz +Jw bh ek yt -vJ -If -RP -Xv -tk -Jj +Xq +Cw +oR +jX +LS +GG yt -ue -GH -Wq -KG +dw +XU +fM +wI bw Kh Kh @@ -12492,31 +13950,31 @@ cs cs Yo hk -Ha -hF +Ng +OP RY -MK +bp RY wS -qV -FA +jf +bi yt yt yt yt yt yt -wo -Gd -Vd -Vd -Th -BS +Pp +Gl +UG +UG +uR +ZB yt yt -bV -HH -Ub +XX +RR +fH bw Kh Kh @@ -12538,7 +13996,7 @@ Kh Kh Kh qK -cs +HW cs Yo yn @@ -12549,24 +14007,24 @@ Nm Nm Nm xX -Ji +pT yt cB -JP -lL +es +qQ DE yt -OO -Hl -yX -yX -iG -Ii -Fj -yt -bV -HH -yH +Lc +Zh +Mz +Mz +Ej +rS +lH +VS +XX +RR +YR bw Kh Kh @@ -12590,33 +14048,33 @@ qK qK cs II -YO +KT IZ -Zo +zI dm SN AP WX OJ -xH -AT +qz +Sp yt -Ae -jL +DS +vl qy -fx +oL yt -VE -ub -tv -tv +Ma +xJ +BI BI -Ii -lX +qU +rS +yM yt -bV -HH -KG +XX +RR +Eg bw Kh Kh @@ -12641,7 +14099,7 @@ Zj cs No Yo -tO +DQ tO tO hP @@ -12649,24 +14107,24 @@ ip ns RY tO -nj -HL +Sl +RF BC Ec Vf -zN -yt -EH -gZ -gZ -OI -Lz -QK -UU +zN yt -bV -HH -kw +bb +uP +uP +QP +Px +ev +hS +yt +XX +RR +zW bw Kh Kh @@ -12692,31 +14150,31 @@ II zD Yo tO -Bx +JA tO tO tO tO tO tO -cx +Vn yt vs Ym -Wv +Nt YV yt -sF -BZ +gZ +mx yt yt -jf -kc -jf +GV +BU +GV yt -bV -HH -KG +XX +RR +Eg bw Kh Kh @@ -12741,15 +14199,15 @@ cs la Yo Yo -DO +fV Tt -Xg -zT -zT -zT -zT -zT -zT +UU +ea +ea +ea +ea +ea +ea yt yt yt @@ -12759,14 +14217,14 @@ yt yt yt yt -ue -bV -RO -bV -bV -bV -HH -ZG +Gd +XX +zd +XX +XX +XX +RR +Ko bw Kh Kh @@ -12791,7 +14249,7 @@ hK la Yo Kq -CB +Zs hZ hZ hZ @@ -12802,22 +14260,22 @@ hZ hZ hZ tZ -aQ +sR aZ -LO +dg Yl aZ -He +hB yt -Qm -Oi -sa -Nh -Nh -TS -oh -KG -bw +OT +TX +Zu +fg +fg +Cl +sW +Eg +rk Kh Kh Kh @@ -12840,7 +14298,7 @@ Yo cs la Yo -Pd +Lm BQ KH KH @@ -12850,7 +14308,7 @@ Lr KH KH hZ -pG +Oi tZ tZ tZ @@ -12859,14 +14317,14 @@ Yl tZ tZ yt -bV +XX vO -KG -KG -KG -qq -KG -tH +Eg +Eg +Eg +sF +Eg +Wu bw Kh Kh @@ -12883,9 +14341,9 @@ Kh Kh Kh bw -FP +xt gX -rB +Ub Yo cs la @@ -12902,19 +14360,19 @@ JF hZ JF tZ -aQ +sR aZ Yl Eb aZ -He +hB yt -uR +Cr qr -KG +Eg yt bH -VC +Xw bH yt bw @@ -12933,7 +14391,7 @@ Kh Kh Kh bH -pd +ZG wH zc Yo @@ -12945,7 +14403,7 @@ BQ JF JF cj -sc +SC ql JF JF @@ -12959,18 +14417,18 @@ VT tZ tZ yt -Tz -Lg -Gf +vz +bG +uZ yt -gk -kO -va -Ln -Hu +sY +nl +vL +EH +KP CN bw -Kh +qn Kh Kh Kh @@ -12983,11 +14441,11 @@ Kh Kh Kh bH -yy +fw AC CI -KF -PM +bE +FU AJ Yo mr @@ -13002,27 +14460,27 @@ gx hZ hN tZ -aQ +sR aZ Yl VT Yl Yn yt -bV +XX qr -KG +Eg yt -PR +qq OY jm MM wH -gh +fv bw Kh Kh -Kh +my Kh Kh Kh @@ -13033,7 +14491,7 @@ Kh Kh Kh bH -UZ +kc wH aV Yo @@ -13059,12 +14517,12 @@ VT Yl jq yt -bV +XX qr -kw +zW yt -PR -HT +qq +RI Iz Lh wH @@ -13083,11 +14541,11 @@ Kh Kh Kh bw -Qq +Jo mL -Db +HQ Yo -hK +bl la Yo JF @@ -13109,18 +14567,18 @@ DD Yl Ax yt -Gp -KT -KG +SY +Ci +Eg yt -Mm +IU BD BD Ju wH -xG +Wm bw -Kh +zE Kh Kh Kh @@ -13140,7 +14598,7 @@ Yo cs la Yo -xv +fn BQ hZ gx @@ -13148,26 +14606,26 @@ WJ pm Mw gx -eM +YH hZ -mC +YN tZ Yl Bm fW iv -Og +TA Yn yt yt -Xm +FS yt yt -SV -eL -oR -KJ -oR +SW +ez +sN +SR +Yw Pi bw Kh @@ -13184,11 +14642,11 @@ pH bP bw yt -Iq +Ke yt Yo Yo -MR +Uc Yo hZ Ux @@ -13203,7 +14661,7 @@ JX so tZ tZ -Ij +sI tZ tZ tZ @@ -13213,16 +14671,16 @@ UW oN UW yt -Qg -At -kI +Hx +Ze +eh yt yt yt bw bP bP -AD +iN pH Kh Kh @@ -13231,7 +14689,7 @@ Kh Kh pH pH -eP +ap UW dO Da @@ -13239,39 +14697,39 @@ UW UW UW LT -lw +Aw xD xD xD xD -dz -WI -dz +Vh +Sj +Vh xD xD xD xD Vb -eP +KX AH FT lr oY -eP +lg UW UW oN UW UW UW -ib +wq UW mg UW -eP +KX Ye tZ -NH +gi Wf pH pH @@ -13286,7 +14744,7 @@ qO Zg wd Zg -Na +Vz Zg jJ mW @@ -13311,18 +14769,18 @@ PV PV PV JY -AR -pu -OK -AN +AA +Hd +nQ +ii Ak AZ Kk jR vY -GU -xF -fd +IK +AQ +Jc rf pH pH @@ -13370,7 +14828,7 @@ HS Ut Sk UW -YF +zC UW yS HB @@ -13382,18 +14840,18 @@ pH UW qO XO -BG -KZ -gi -BG -pb -BG +uo +yq +iA +uo +Yh +uo nf tp tZ -lA -SA -gM +KA +Jb +Ee eY DP rf @@ -13412,12 +14870,12 @@ oj tZ zp fA -BG -BG +uo +uo zf -BG -BG -qn +uo +uo +gr hp UW tZ @@ -13432,18 +14890,18 @@ pH UW XT ZA -BG -HN -BG -BG -HN -BG +uo +Ps +uo +uo +Ps +uo ty jk tZ Eo Eo -KA +uO eY oI xr @@ -13458,18 +14916,18 @@ aU rf tZ Eo -Ie +EJ tZ qx Nn -BG -HN -BG -BG -HN -BG +uo +Ps +uo +uo +Ps +uo hp -EM +NG tZ aE hu @@ -13482,18 +14940,18 @@ pH UW LK VV -gi -BG -BG -BG -BG +iA +uo +uo +uo +uo zf nf rf tZ Eo gW -gM +Ee qo sE cE @@ -13512,11 +14970,11 @@ TM tZ zp fA -pb -BG -gi -BG -BG +Yh +uo +iA +uo +uo eJ hp UW @@ -13541,7 +14999,7 @@ dv QQ rf tZ -cv +dk tZ tZ Ov @@ -13570,9 +15028,9 @@ dv dv aF UW -ke +md tG -zH +ku bu rf pH @@ -13586,7 +15044,7 @@ LK pk UA pk -gb +Wn pk am Jr @@ -13606,7 +15064,7 @@ PC It rf rf -vj +zq rf rf NS @@ -13620,7 +15078,7 @@ Ni NA cK sX -vk +EG MH jz rf @@ -13631,7 +15089,7 @@ pH Kh pH pH -kh +kQ UW UW UW @@ -13639,19 +15097,19 @@ UW UW UW ZV -kG -jl +Vl jl jl jl jl jl +bK jl jl Lu jl -jl -kG +xK +Gn jl gI jO @@ -13662,16 +15120,16 @@ qu eZ fN UW -kh +iu QY UW UW UW -UW -kh +SV +rj Ye tZ -xf +sg TG pH pH @@ -13683,12 +15141,12 @@ Kh pH Xb pe -gp +dh pe pe Yo Yo -MR +bg pe pe pe @@ -13697,9 +15155,9 @@ pe pe pe pe -PP -RF -PP +gU +cX +gU pe pe Ek @@ -13740,12 +15198,12 @@ Yo cs la pe -CU +FB XM vd pe PF -gG +eo dE JM mv @@ -13755,22 +15213,22 @@ pe UW TV NR -BG -sc uo +SC +wm bM iB UW Cy -kz -kz -Nb +Rp +Rp +iq Aa DV qL nF Cy -oB +Nu MY vF Kh @@ -13787,8 +15245,8 @@ xz UQ xx Yo -RN -lU +lS +JD pe YK pe @@ -13798,20 +15256,20 @@ QE kC zM oo -vL +Nc Qy Co -PP +rd UW TV NR -BG -HN -mV +uo +Ps +VH bM PK pw -hz +Bi rA rA ey @@ -13837,34 +15295,34 @@ FG UQ CH Yo -yA +yK No pe pe pe -hW +KN pe iR GA GA KL -ni +LN Qy -UN -PP +Gz +rd UW TV NR -BG -Mj -nQ +uo +Gc +pz bM SX Hs Cy sr -kz -kz +Rp +Rp pX pS Gi @@ -13885,13 +15343,13 @@ Xb nC be FK -CP +LD Yo cs No pe -Wt -bK +Sq +df ZW pe nI @@ -13900,13 +15358,13 @@ Uj NW zR Qy -HK -PP +Ib +rd UW TV NR -nQ -tA +pz +bf zf bM zy @@ -13932,13 +15390,13 @@ Kh Kh Kh Xb -az +Ml fF lT Ey aq ZH -KM +Ir pe YK pe @@ -13948,23 +15406,23 @@ Wa LH HO hA -de +ov Qy Lx -PP +rd UW TV NR -BG -HN -gi +uo +Ps +iA bM SX UW Jx sr -kz -kz +Rp +Rp qv PJ kf @@ -13984,37 +15442,37 @@ Kh Xb Fr iM -wF +kL rN Yo cs -Tj +XA pe pe pe pe pe -bE -Yh +Iu +iy kn Pu -eC +kI Qy Dc -hI +CO UW TV NR -qn -BG +gr +uo eJ Bu SX UW Jx -sr +Fz JS -Jd +mZ Nr qN jw @@ -14038,10 +15496,10 @@ Yo Yo Yo cs -Tj +XA pe Ef -SY +nV wG pe MF @@ -14050,8 +15508,8 @@ hY Pu Ot Qy -uE -hI +xh +CO UW TV lE @@ -14060,7 +15518,7 @@ AF dv IF SX -mu +MU Cy Cy Cy @@ -14071,7 +15529,7 @@ Cy Yo Yo No -Ej +Se qK Kh Kh @@ -14082,46 +15540,46 @@ Kh Kh Kh qK -UK +zT sy NP zY zY zY -iH -fY +ma +wn zY -fm +YF Ly Yo dF -ng +MR nN vI AL -WE -mR +dH +lw pe -UO +rw XP RD wU Ug -Ik -sg +aT +ph Ka UW Jx -zu +wb gJ -Zh +Ls HM xQ DW Yo II oE -ii +Wo qK Kh Kh @@ -14132,23 +15590,23 @@ Kh Kh Kh qK -zt +xm cs bA II MS MS -OU -zk +vJ +OI MS -Sx +gf bA Yo Yo Yo Yo Yo -oK +aI Yo Yo Yo @@ -14167,11 +15625,11 @@ jK jp Us YB -Rc +AU Yo eu Ge -TA +YX qK Kh Kh @@ -14184,11 +15642,11 @@ Kh qK qK Yo -bl +ct No Yo Yo -dB +vx Yo Yo No @@ -14205,9 +15663,9 @@ LG is mO CF -nQ -BG -nQ +pz +uo +pz bM iB UW @@ -14235,29 +15693,29 @@ Oz Cc bs Kb -Xn +WY Yo -Kr -TQ -Dr +PY +io +HA Yo -jQ +Du MS MS yg MS MS MS -Yb +gk Po zD Yo dO TV Dn -BG -HN -BG +uo +Ps +uo bM SX Bc @@ -14282,14 +15740,14 @@ Kh Kh Kh Kh -yu +AN bA -bI +jI YI Yo -dw -Xq -Bt +VY +at +yH Yo Yo Yo @@ -14305,13 +15763,13 @@ pe UW TV Dn -BG -sc -BG +uo +SC +uo bM Ds jl -mB +JI bN xb KO @@ -14332,37 +15790,37 @@ Kh Kh Kh Kh -yu +AN bA No Yo Yo -pK +hw us -Vl -GM +UC +nt gC Yo -tF +RP dj pe -Jw -cf -QP -fV -zv +Gu +mp +gH +me +Ny RH mN TV Dn -BG -nQ -BG +uo +pz +uo bM SX ZM Cy -bB +uC WK lb aC @@ -14370,7 +15828,7 @@ fC HZ Yo No -Ys +um qK Kh Kh @@ -14382,18 +15840,18 @@ Kh Kh Kh Kh -yu +AN Ge No Yo PB -sW -sI -Ia +Qm +Xn +RS us gC Yo -Mt +qE zX uM qS @@ -14405,9 +15863,9 @@ qD UW TV Dn -BG -HN -Jf +uo +Ps +mH bM pM UW @@ -14433,37 +15891,37 @@ Kh Kh Kh qK -go +IR No Yo -fP -hS +gd +UT us -XX -Tk -ky +Xs +lz +rQ Yo -md +oh dK pe ry cP oo -nW +Ed Dm qD UW TV Dn -tA -BG +bf +uo eJ bM SX UW Jx rl -Cz +KS tl Dt Rl @@ -14482,16 +15940,16 @@ Kh Kh Kh Kh -yu +AN Ge -No -Yo -Ru -DS -sI -XE -LR -hf +No +Yo +NU +JP +Xn +sA +HR +HT Yo wE dJ @@ -14499,7 +15957,7 @@ pe he td sZ -yv +Qp hQ RH UW @@ -14512,13 +15970,13 @@ ds SX UW Jx -TY +Bk tQ -hd +wj TZ sw LG -nL +KI Xo AK qK @@ -14532,34 +15990,34 @@ Kh Kh Kh Kh -yu +AN Ge No Yo Yo -Hd -PA -iy -mb -hf +wQ +cY +nm +Uv +HT Yo cs Xz pe -mX +sx Sm lm -mU -Sd +tc +lI pe -UO +rw tE YQ El Rw zZ zZ -Bf +hI UW Jx vS @@ -14569,7 +16027,7 @@ TZ Dd Yo No -gU +qJ qK qK Kh @@ -14582,9 +16040,9 @@ Kh Kh Kh Kh -yu +AN NY -es +ZD cs Yo Yo @@ -14596,12 +16054,12 @@ Yo Yo Dy pe -Pz +tW ko Uu -mj +CT jb -WF +au jl uJ Cn @@ -14610,7 +16068,7 @@ HS HS Gk SX -Sr +Fe Cy yw Zx @@ -14619,7 +16077,7 @@ TZ pt Yo No -Ge +FA qK Kh Kh @@ -14635,14 +16093,14 @@ Kh qK sy sT -vh +Yt MS -nA +yZ MS MS MS MS -MU +Xp MS La pe @@ -14655,13 +16113,13 @@ pe UW TV Dn -BG -BG +uo +uo eJ bM PK pw -hB +Ae Tu CC Lp @@ -14684,10 +16142,10 @@ Kh Kh qK qK -fB +li zY zY -IR +Vx zY zY zY @@ -14696,29 +16154,29 @@ zY Qb No pe -iz -dk -px -OX -YE -ZI +kA +jP +Dg +ae +Hu +te UW TV Dn -BG -HN -gi +uo +Ps +iA bM SX -mu +YT Cy CW -xY +lh pQ St -ZC +ce Yo -vH +oM cr qK Kh @@ -14734,30 +16192,30 @@ Kh Kh Kh qK -yu -yd -yu +AN +Ss +AN qK qK -yu -yu +AN +AN qK qK Ge No pe -iN -nU -zs -XW -ST +jA +pr +kg +OQ +Ve qD hx TV Dn -qn -BG -BG +gr +uo +uo bM iB hx @@ -14769,7 +16227,7 @@ Cy Yo Yo No -Hc +Jp qK Kh Kh @@ -14783,12 +16241,12 @@ Kh Kh Kh Kh -fM +Ra LJ LJ LJ -fw -LJ +HK +EY LJ LJ LJ @@ -14805,19 +16263,19 @@ RH hx TV Dn -BG -BG +uo +uo zf bM SX UW Tx Mh -rr -Jp -aa +Jj +OG +zz ye -sn +NM zD Ge qK @@ -14833,41 +16291,41 @@ Kh Kh Kh Kh -Et -os -hb -os -os -hb -os -DQ +Zd +tf +WM +tf +tf +WM +tf +gS LJ -yu +AN Ge No pe jH -UG -kU -iq +Ui +lL +tH Qy -GL +Wv UW TV Dn -sc -HN -gi +SC +Ps +iA bM -UI +kl jl dT Rh -Yt -Wc -tf +DB +yc +Ic Yo -Rr +fc Xo AK qK @@ -14887,14 +16345,14 @@ Kh xN Wi Wi -vz +Ao Wi xN -fM +Ra LJ -yu +AN OB -qE +JV Td ch aK @@ -14905,16 +16363,16 @@ pe UW TV Dn -nQ -tA -BG +pz +bf +uo bM vA UW JZ vR iO -An +bW pR Yo eu @@ -14935,23 +16393,23 @@ Kh Kh Kh xN -UF -UF -UF -UF +jg +jg +jg +jg xN -Cf +Qs LJ -yu +AN Ge No pe Hy -rI -EJ -iP -ve -nT +Fa +db +ot +Pj +WA jl bq rT @@ -14961,10 +16419,10 @@ Oe bz Mq jl -IU -an +up +JK mY -DJ +HV fa Yo No @@ -14985,16 +16443,16 @@ Kh Kh Kh xN -Qz -KX -KX -VN +UZ +Bb +Bb +bt xN -fM +Ra LJ -yu +AN Ge -wv +nP pe pe pe @@ -15002,7 +16460,7 @@ pe pe pe pe -UO +rw Nx Nf Lj @@ -15035,37 +16493,37 @@ Kh Kh Kh xN -kd +Jz tu ID -ux +pD xN -fM +Ra LJ qK -pV +Xa No pe pl -OQ +fL Iy -aB +di iT pe UW AG -xA -fS -rJ -fS -YN +Ct +jM +nR +jM +yW jG UW Jx Tb +DX Tb -Tb -Ho +bD Yo No bA @@ -15085,14 +16543,14 @@ Kh Kh Kh xN -HQ +eC sb jD Ul xN -LC +qA LJ -yu +AN Ge eu pe @@ -15101,17 +16559,17 @@ XC ya vU yz -Yf +UI jl fz -YS +iV gg gg gg -vN +Sr Ds jl -lg +VG nG ah Di @@ -15135,18 +16593,18 @@ Kh Kh Kh OH -Ya -vD -qW -mp -iZ -mf -ae -lc +PD +wT +xO +Mo +rY +LV +mB +hf pL -Ve +tt pe -wc +bF XC sl ZK @@ -15154,11 +16612,11 @@ eg pe zx AG -By +HD gg TK gg -dh +dN jG hx Jx @@ -15185,14 +16643,14 @@ Kh Kh Kh xN -iC -mS +Aj +ss ID -Xw +vB xN -DQ -CK -yu +gS +TY +AN Ge No pe @@ -15204,13 +16662,13 @@ DH RG UW YG -lZ +lA gg fu gg -xm +GO SX -mu +MU Cy IG Go @@ -15235,16 +16693,16 @@ Kh Kh Kh fZ -qX -XV +OK +vr yC cO fZ -Cf -qG +Qs +fS qK Ge -vH +oM pe zS XC @@ -15254,11 +16712,11 @@ zi RG UW AG -rF +ub gg CQ DC -dh +dN jG UW Jx @@ -15290,9 +16748,9 @@ fZ fZ fZ fZ -fM -CK -yu +Ra +TY +AN Ge No pe @@ -15304,18 +16762,18 @@ kr RG UW YG -op +pN gg uF gg -af +px SX UW Jx Kz RV cL -aN +ax Yo No bA @@ -15333,19 +16791,19 @@ Kh Kh Kh Kh -Id -db -TJ -db -db -TJ -db -LC -CK -yu +Kf +iZ +Hb +iZ +iZ +Hb +iZ +qA +TY +AN OB -qE -gw +JV +ay lp XL XL @@ -15358,7 +16816,7 @@ KQ gg gg gg -ef +Mt jG UW Jx @@ -15383,15 +16841,15 @@ Kh Kh Kh Kh -fM +Ra LJ -Se -cR -bW -cR -cR -cR -DK +gR +id +zk +lZ +id +id +SE qK bA No @@ -15399,21 +16857,21 @@ pe ox TH Ry -wJ -Sp +EV +Qq pe -UO +rw YG -qA -Dp -ud -Dp -GF +XS +Nq +ZX +Nq +KJ SX UW Jx MN -wM +OU MJ KB Vt @@ -15434,9 +16892,9 @@ Kh Kh Kh qK -di -oz -di +ga +vC +ga qK qK qK @@ -15444,7 +16902,7 @@ qK qK qK bA -wv +Wq pe pe pe @@ -15453,7 +16911,7 @@ pe pe pe UW -Zp +gl yO cM yi @@ -15484,25 +16942,25 @@ Kh Kh qK qK -pp -nP -Mo -id +Mi +wO +Tm +LU hy Yo -GI +Wh rD zY -Zc -nu +RC +PO OC Fq -Sz +gq UE bc -lz +sQ pe -UW +SV YG QG HS @@ -15517,7 +16975,7 @@ Pf Al zB Yo -AI +MZ bA qK Kh @@ -15533,18 +16991,18 @@ Kh Kh Kh qK -xl -Lw -dW -IL +Ga +ET +Jg +jV TT -Qd +DI Yo Ge II Po -aI -HP +yJ +UF pe da Bj @@ -15555,9 +17013,9 @@ pe UW YG MD -qn -BG -gi +gr +uo +iA bM iB UW @@ -15565,7 +17023,7 @@ Jx Ks to Al -qC +vu Yo No bA @@ -15583,18 +17041,18 @@ Kh Kh Kh qK -Gy +Un Do -Cb -Ct -oZ -EE +EM +Xg +XJ +hC Yo go No Yo Yo -Pc +As pe pe pe @@ -15605,9 +17063,9 @@ pe UW YG ZA -BG -HN -BG +uo +Ps +uo bM SX dO @@ -15615,10 +17073,10 @@ Cy to ih tU -fO +Pw Yo No -Rz +iQ qK Kh Kh @@ -15635,10 +17093,10 @@ Kh qK hE Mb -VF -IL +Xm +jV eH -RA +kw Yo Ge No @@ -15655,15 +17113,15 @@ RH UW YG ZA -BG +uo zf -qn +gr bM SX UW Jx to -VK +fo br lD Yo @@ -15684,18 +17142,18 @@ Kh Kh qK fh -nk +gB Zf -au -Pk +vD +zF Tc Yo -Ge +KK No Yo yQ CJ -cn +mz pe eS qj @@ -15705,13 +17163,13 @@ RH UW YG ZA -BG -BG -BG +uo +uo +uo bM PK pw -VI +zv sD GE Al @@ -15735,7 +17193,7 @@ Kh qK Yo Yo -RW +pa Yo Yo Yo @@ -15755,9 +17213,9 @@ RH UW kN ZA -BG -HN -BG +uo +Ps +uo bM SX UW @@ -15788,37 +17246,37 @@ cs iI Po Po -bx +mM Po pL dP Yo Gq Cp -VP +LI pe MC Rn Rn Rn -MO +Su vY pi ZA -gi -BG +iA +uo eJ bM iB -mu +xw Cy to OV sp ny hh -uK -Zc +mf +RC qK Kh Kh @@ -15834,7 +17292,7 @@ Kh Kh qK cs -ag +EU cs cs cs @@ -15844,15 +17302,15 @@ Ge No Yo mt -uY +xR cs pe -Gz -cV -Qa +Pr +QI +vc Qf pe -UO +Vm Df dY ex @@ -15863,8 +17321,8 @@ Vp UW Jx re -wX -fO +fI +Pw Zq Yo No @@ -15903,10 +17361,10 @@ pe pe pe UW -BJ -Nv +Mj +ci gE -BA +uN pw pw fN @@ -15947,7 +17405,7 @@ MS MS MS MS -YW +JH dD XG ur @@ -15956,19 +17414,19 @@ Yo Yo Yo Yo -mD +IA Yo Yo Yo Yo Yo -Hk +TU Yo FN RU -NZ -rb -xJ +Ys +RO +UV qK Kh Kh @@ -15991,33 +17449,33 @@ Kh Kh qK NY -ZF +rg zY zY zY zY -Xl +VP AK Yo vX hO Sb Yo -ha -Bd -JO -ov -Pw -jI +ti +IP +If +bR +dd +Cx Vv Yo -sR +dM vV -FX -Tp +TJ +Aq UL mT -uy +BB qK qK Kh @@ -16053,21 +17511,21 @@ vX yR wt ht -Cm +ls Sg Ar YM Oj -ls +Vj Pa Yo -rS -ay +CK +bj qK qK qK qK -VB +SI qK Kh Kh @@ -16104,15 +17562,15 @@ OS cs Yo Pl -sB -Mz -Mz +Tw +SJ +SJ oq -FC +aB Qh Yo -ws -Ne +JR +rI qK Kh Kh @@ -16150,17 +17608,17 @@ Kh Kh Kh qK -kl -Tr +lN +Lf Yo Sf -SQ +wD Ah -Nc +EC YY cw -Yi -AB +OM +Tf fK Es qK @@ -16203,12 +17661,12 @@ qK qK qK qK -Fz -vP -xR +em +Zp +TB cC -uk -AA +HE +rH Iv qK qK @@ -16252,15 +17710,15 @@ Kh Kh Kh Kh -xC -xC -um -wV -JN +iX +iX +Km +NQ +Wz cQ -Dl -xC -xC +XQ +iX +iX Kh Kh Kh @@ -16303,13 +17761,13 @@ Kh Kh Kh Kh -xC -xC -xC -xC -xC -xC -xC +iX +iX +iX +iX +iX +iX +iX Kh Kh Kh diff --git a/_maps/RandomRuins/SpaceRuins/transport18.dmm b/_maps/RandomRuins/SpaceRuins/transport18.dmm index 8837044c657e..34a529a36338 100644 --- a/_maps/RandomRuins/SpaceRuins/transport18.dmm +++ b/_maps/RandomRuins/SpaceRuins/transport18.dmm @@ -60,9 +60,7 @@ icon_state = "6-10" }, /obj/item/stack/cable_coil/cut/red, -/obj/machinery/light/small/built{ - dir = 1 - }, +/obj/machinery/light/small/built/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating{ @@ -106,7 +104,7 @@ /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) "dH" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -127,7 +125,7 @@ /turf/template_noop, /area/template_noop) "et" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/vomit/old, /obj/item/trash/plate{ @@ -183,7 +181,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, @@ -241,9 +239,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/transport18aft) "gD" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/machinery/suit_storage_unit/open, /obj/effect/turf_decal/industrial/fire{ dir = 1 @@ -254,7 +250,7 @@ /area/ruin/space/has_grav/transport18mid) "gY" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom, +/obj/item/radio/intercom/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/transport18mid) @@ -285,7 +281,7 @@ /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) "iW" = ( -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/plumbing/tank, /obj/effect/decal/cleanable/dirt, @@ -293,7 +289,7 @@ /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) "iZ" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -326,7 +322,7 @@ /obj/structure/closet/crate/large{ name = "damp crate" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) @@ -391,9 +387,7 @@ /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) "lf" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/plumbing/tank, /obj/effect/decal/cleanable/dirt, @@ -503,9 +497,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/transport18mid) @@ -560,7 +552,7 @@ /area/ruin/space/has_grav/transport18mid) "nL" = ( /obj/structure/bed, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/airless, @@ -585,9 +577,7 @@ /obj/item/storage/cans/sixbeer, /obj/item/storage/cans/sixbeer, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/stack/sheet/mineral/wood, /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plasteel/dark/airless, @@ -596,7 +586,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, @@ -697,8 +687,8 @@ /turf/open/floor/plasteel, /area/ruin/space/transport18aft) "qY" = ( -/obj/machinery/light/broken, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/light/broken/directional/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/industrial/fire, /obj/effect/decal/cleanable/dirt/dust, @@ -721,9 +711,7 @@ /area/ruin/space/transport18aft) "rV" = ( /obj/structure/table/reinforced, -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/item/trash/plate{ pixel_x = -5 }, @@ -745,9 +733,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/transport18mid) @@ -790,9 +776,7 @@ /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) "ur" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -1034,7 +1018,7 @@ /area/ruin/space/has_grav/transport18mid) "Ah" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband, +/obj/item/radio/intercom/wideband/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/airless, @@ -1056,7 +1040,7 @@ "Bv" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark/airless, @@ -1080,7 +1064,7 @@ /turf/closed/wall, /area/ruin/space/has_grav/transport18mid) "CH" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -1124,9 +1108,7 @@ /turf/closed/wall/rust, /area/ruin/space/has_grav/transport18mid) "Dr" = ( -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/airless, @@ -1140,26 +1122,20 @@ "DF" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) "DM" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) "EB" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ruin/space/transport18aft) @@ -1233,9 +1209,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/transport18mid) "Hd" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/vomit/old, @@ -1309,7 +1283,7 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/transport18mid) "Jl" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-2" }, @@ -1401,9 +1375,7 @@ /area/ruin/space/transport18aft) "MA" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small/built{ - dir = 1 - }, +/obj/machinery/light/small/built/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark/airless, @@ -1593,9 +1565,7 @@ /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) "TD" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/fluff/paper/stack{ @@ -1640,7 +1610,7 @@ "Va" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) @@ -1713,7 +1683,7 @@ /obj/structure/closet/crate/large{ name = "damp crate" }, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark/airless, /area/ruin/space/has_grav/transport18mid) diff --git a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm index 7fe5d970fe7e..ca6fd4e7274e 100644 --- a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm +++ b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm @@ -36,9 +36,7 @@ /area/ruin/space/has_grav/powered/aesthetic) "j" = ( /obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) "k" = ( @@ -138,12 +136,6 @@ initial_gas_mix = "TEMP=2.7" }, /area/ruin/unpowered/no_grav) -"D" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel/airless{ - icon_state = "recharge_floor_asteroid" - }, -/area/ruin/unpowered/no_grav) "E" = ( /obj/effect/turf_decal/sand, /turf/open/floor/plasteel/airless, @@ -199,19 +191,15 @@ /obj/structure/chair/comfy/black{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) "P" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) "R" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating{ initial_gas_mix = "TEMP=2.7" @@ -366,9 +354,9 @@ k k k f -D +E J -I +E d "} (10,1,1) = {" @@ -400,7 +388,7 @@ k k k f -D +E L E I diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_abandoned_mechbay.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_abandoned_mechbay.dmm index 84cc9e76653f..55df97d17056 100644 --- a/_maps/RandomRuins/WasteRuins/wasteplanet_abandoned_mechbay.dmm +++ b/_maps/RandomRuins/WasteRuins/wasteplanet_abandoned_mechbay.dmm @@ -2,9 +2,7 @@ "ae" = ( /obj/structure/rack, /obj/item/mecha_ammo/lmg, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "ar" = ( @@ -83,9 +81,7 @@ "bC" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "bL" = ( @@ -171,9 +167,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "cB" = ( @@ -235,13 +229,11 @@ /turf/open/floor/concrete/slab_4, /area/ruin/wasteplanet/abandoned_mechbay/mainhall) "de" = ( -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 25 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "dk" = ( @@ -304,7 +296,7 @@ /obj/effect/turf_decal/trimline/transparent/neutral/filled/warning{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -323,10 +315,7 @@ /turf/open/floor/plating/asteroid/wasteplanet, /area/ruin/wasteplanet/abandoned_mechbay) "ec" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "ee" = ( @@ -479,14 +468,13 @@ dir = 4 }, /obj/effect/decal/cleanable/generic, -/obj/machinery/light/broken{ - dir = 2 - }, +/obj/machinery/light/broken/directional/south, /obj/machinery/button/door{ - dir = 1; + dir = 4; id = "mechbay2"; - pixel_y = -24; - name = "Bay Shutters" + pixel_y = -7; + name = "Bay Shutters"; + pixel_x = -24 }, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) @@ -555,6 +543,7 @@ /obj/effect/turf_decal/trimline/transparent/neutral/filled/warning{ dir = 4 }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "fE" = ( @@ -624,7 +613,7 @@ "fX" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance/four, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "fY" = ( @@ -703,10 +692,7 @@ /obj/machinery/camera/autoname{ dir = 5 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "gO" = ( @@ -727,7 +713,7 @@ /obj/machinery/atmospherics/components/trinary/filter/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -787,9 +773,7 @@ "ht" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/washing_machine, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "hu" = ( @@ -855,10 +839,7 @@ /obj/effect/turf_decal/trimline/transparent/neutral/filled/warning{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "iu" = ( @@ -869,10 +850,7 @@ /obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "iy" = ( @@ -880,19 +858,14 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "iB" = ( /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/plasteel/tech, /area/ruin/wasteplanet/abandoned_mechbay/engineering) "iG" = ( @@ -927,10 +900,7 @@ /obj/effect/turf_decal/spline/fancy/opaque/grey{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/concrete/slab_4, /area/ruin/wasteplanet/abandoned_mechbay/mainhall) "jx" = ( @@ -980,10 +950,7 @@ /obj/machinery/camera/autoname{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "kf" = ( @@ -997,7 +964,9 @@ /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "ks" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 @@ -1028,13 +997,13 @@ dir = 4 }, /obj/effect/decal/cleanable/oil, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/machinery/button/door{ id = "mechbay3"; - pixel_y = 24; - name = "Bay Shutters" + pixel_y = 7; + name = "Bay Shutters"; + pixel_x = -24; + dir = 4 }, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) @@ -1053,7 +1022,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -1103,16 +1072,14 @@ /area/ruin/wasteplanet/abandoned_mechbay/bay1) "ln" = ( /obj/structure/tank_dispenser, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "lt" = ( /obj/effect/turf_decal/box/white, /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "ly" = ( @@ -1136,15 +1103,14 @@ dir = 8 }, /obj/effect/decal/cleanable/generic, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "lK" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/effect/turf_decal/trimline/transparent/neutral/filled/corner{ dir = 4 }, @@ -1160,9 +1126,7 @@ /obj/effect/turf_decal/spline/fancy/opaque/grey{ dir = 4 }, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/concrete/slab_4, /area/ruin/wasteplanet/abandoned_mechbay/mainhall) "lR" = ( @@ -1170,9 +1134,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "lT" = ( @@ -1241,7 +1203,7 @@ /obj/machinery/camera/autoname{ dir = 10 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/concrete/slab_1, /area/ruin/wasteplanet/abandoned_mechbay) "mE" = ( @@ -1295,9 +1257,7 @@ /area/ruin/wasteplanet/abandoned_mechbay/bay1) "nr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "ny" = ( @@ -1305,21 +1265,14 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/broken/directional/east, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "nA" = ( /obj/structure/table/reinforced, /obj/item/kitchen/fork, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) @@ -1337,19 +1290,14 @@ "nJ" = ( /obj/machinery/power/terminal, /obj/structure/cable, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/plasteel/tech, /area/ruin/wasteplanet/abandoned_mechbay/engineering) "nR" = ( /obj/effect/turf_decal/trimline/transparent/neutral/filled/warning{ dir = 8 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "oa" = ( @@ -1370,10 +1318,7 @@ dir = 8 }, /obj/effect/gibspawner/human, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "oq" = ( @@ -1392,9 +1337,7 @@ "or" = ( /obj/machinery/autolathe, /obj/effect/turf_decal/box, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/tech/grid, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "ov" = ( @@ -1425,7 +1368,7 @@ /area/ruin/wasteplanet/abandoned_mechbay/bay2) "pa" = ( /obj/structure/rack, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/item/shard, /turf/open/floor/plasteel/dark, @@ -1464,7 +1407,8 @@ dir = 4 }, /obj/machinery/door/airlock/engineering{ - name = "Mech Lab" + name = "Mech Lab"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -1515,7 +1459,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "qJ" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/wasteplanet, /area/ruin/wasteplanet/abandoned_mechbay) "qN" = ( @@ -1523,7 +1467,7 @@ dir = 1 }, /obj/effect/turf_decal/box/white, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "qO" = ( @@ -1659,7 +1603,8 @@ "ss" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ - id = "exitwindow" + id = "exitwindow"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/wasteplanet/abandoned_mechbay/commandcontrol) @@ -1703,18 +1648,15 @@ /obj/item/stack/sheet/mineral/uranium/twenty, /obj/structure/table, /obj/effect/turf_decal/industrial/warning, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ruin/wasteplanet/abandoned_mechbay/engineering) "sV" = ( /obj/effect/turf_decal/trimline/transparent/neutral/filled/warning{ dir = 8 }, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/machinery/light/broken/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "sX" = ( @@ -1736,9 +1678,7 @@ dir = 9 }, /obj/effect/decal/cleanable/blood/footprints, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel/white, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "tr" = ( @@ -1753,9 +1693,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood, -/obj/machinery/light/broken{ - dir = 2 - }, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plasteel, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "tC" = ( @@ -1769,10 +1707,7 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "tE" = ( @@ -1808,7 +1743,7 @@ "tT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-8" }, @@ -1846,9 +1781,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 }, @@ -1972,9 +1905,7 @@ /turf/open/floor/concrete/slab_1, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "vO" = ( -/obj/machinery/light/dim{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /obj/effect/decal/cleanable/blood/drip, /obj/effect/turf_decal/spline/fancy/opaque/grey{ dir = 1 @@ -2004,20 +1935,12 @@ /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "vW" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom{ - pixel_y = 7; - pixel_x = -9; - dir = 8 - }, +/obj/item/radio/intercom/directional/east, /obj/item/paperplane{ pixel_y = -3; pixel_x = -5 }, -/obj/item/radio/intercom{ - pixel_y = 7; - pixel_x = 3; - dir = 8 - }, +/obj/item/radio/intercom/directional/east, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 10 }, @@ -2109,10 +2032,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "wL" = ( @@ -2136,7 +2056,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -2169,7 +2089,7 @@ /obj/effect/turf_decal/trimline/transparent/neutral/filled/warning{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -2181,7 +2101,7 @@ dir = 8; network = list("cricket") }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-2" }, @@ -2198,7 +2118,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/hatch{ - name = "Crew Quarters" + name = "Crew Quarters"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -2351,9 +2272,7 @@ /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/box/white, /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "AP" = ( @@ -2462,9 +2381,7 @@ /obj/effect/spawner/lootdrop/donkpockets, /obj/effect/spawner/lootdrop/donkpockets, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/food/salt, /obj/item/soap/nanotrasen, /turf/open/floor/plasteel/tech/grid, @@ -2500,7 +2417,7 @@ /turf/open/floor/concrete/slab_1, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "Cm" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/closet/emcloset, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) @@ -2541,13 +2458,13 @@ dir = 4 }, /obj/effect/decal/cleanable/oil, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /obj/machinery/button/door{ id = "mechbay4"; - pixel_y = 24; - name = "Bay Shutters" + pixel_y = 7; + name = "Bay Shutters"; + pixel_x = -24; + dir = 4 }, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) @@ -2606,7 +2523,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -2665,9 +2582,7 @@ }, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/cleanable/oil, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "DU" = ( @@ -2675,7 +2590,8 @@ /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "DY" = ( /obj/machinery/door/airlock/engineering{ - name = "Mech Lab" + name = "Mech Lab"; + dir = 4 }, /obj/effect/decal/cleanable/glass, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2699,10 +2615,7 @@ /obj/effect/turf_decal/trimline/transparent/neutral/filled/corner{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "Ef" = ( @@ -2743,9 +2656,7 @@ "Fb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/decal/cleanable/blood/tracks, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "Fk" = ( @@ -2773,12 +2684,13 @@ /obj/effect/turf_decal/trimline/transparent/neutral/filled/warning{ dir = 4 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/button/door{ - dir = 1; + dir = 4; id = "mechbay1"; - pixel_y = -24; - name = "Bay Shutters" + pixel_y = -7; + name = "Bay Shutters"; + pixel_x = -24 }, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) @@ -2860,9 +2772,7 @@ /obj/structure/bed/dogbed{ name = "McKinnon's Bed" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /mob/living/simple_animal/pet/fox{ dir = 8; name = "McKinnon" @@ -2874,7 +2784,7 @@ /turf/open/floor/plating/asteroid/wasteplanet, /area/ruin/wasteplanet/abandoned_mechbay) "Hj" = ( -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /mob/living/simple_animal/hostile/syndicate/melee{ name = "Syndicate Mech Pilot" }, @@ -2933,9 +2843,7 @@ /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/cobweb, /obj/effect/turf_decal/box/white, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "HC" = ( @@ -2977,9 +2885,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 }, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/plasteel/tech, /area/ruin/wasteplanet/abandoned_mechbay/engineering) "HR" = ( @@ -3123,7 +3029,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, +/obj/machinery/light/directional/south, /mob/living/simple_animal/hostile/syndicate/melee{ name = "Syndicate Mech Pilot" }, @@ -3180,7 +3086,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/chair/office{ dir = 4; name = "Command and Control"; @@ -3260,7 +3166,9 @@ /turf/open/floor/plasteel/tech/grid, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "Lw" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, @@ -3271,7 +3179,8 @@ /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "LF" = ( /obj/machinery/door/airlock/hatch{ - name = "Crew Quarters" + name = "Crew Quarters"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -3302,10 +3211,7 @@ "LL" = ( /obj/effect/turf_decal/trimline/transparent/neutral/filled/corner, /obj/effect/decal/cleanable/oil, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "LO" = ( @@ -3322,10 +3228,8 @@ /obj/structure/cable{ icon_state = "1-4" }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/light/dim/directional/west, /obj/structure/cable, /turf/open/floor/plasteel/tech, /area/ruin/wasteplanet/abandoned_mechbay/engineering) @@ -3385,9 +3289,7 @@ /turf/open/floor/concrete/slab_1, /area/ruin/wasteplanet/abandoned_mechbay/mainhall) "MK" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/effect/turf_decal/spline/fancy/opaque/grey{ dir = 8 }, @@ -3447,10 +3349,7 @@ dir = 4 }, /obj/item/shard, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "Nq" = ( @@ -3492,10 +3391,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -24 - }, +/obj/item/radio/intercom/directional/west, /mob/living/simple_animal/hostile/syndicate{ name = "Syndicate Engineer"; desc = "Death to bad mechanics." @@ -3536,6 +3432,7 @@ /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "Oc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "Og" = ( @@ -3569,18 +3466,15 @@ /obj/structure/chair/sofa{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/plasteel, /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "OY" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/snacks/donut/jelly/choco, /obj/effect/turf_decal/box/white, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "Pf" = ( @@ -3611,10 +3505,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -24 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "PN" = ( @@ -3670,10 +3561,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, @@ -3700,9 +3588,7 @@ /obj/effect/turf_decal/trimline/transparent/neutral/filled/corner{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "QP" = ( @@ -3759,9 +3645,7 @@ /obj/item/stock_parts/cell/super, /obj/item/stock_parts/scanning_module/adv, /obj/item/stock_parts/scanning_module/adv, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "RG" = ( @@ -3807,14 +3691,6 @@ }, /turf/open/floor/concrete/slab_4, /area/ruin/wasteplanet/abandoned_mechbay/mainhall) -"RR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ruin/wasteplanet/abandoned_mechbay/bay1) "RT" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3837,9 +3713,7 @@ /area/ruin/wasteplanet/abandoned_mechbay/bay1) "Sd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/bay2) @@ -3851,13 +3725,8 @@ /obj/item/stack/cable_coil, /obj/effect/turf_decal/box/white, /obj/effect/decal/cleanable/glass, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/tech/grid, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "Sm" = ( @@ -3889,7 +3758,7 @@ /obj/effect/decal/cleanable/blood/footprints{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-8" }, @@ -3929,10 +3798,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "Tb" = ( @@ -3957,16 +3823,14 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/concrete/slab_1, /area/ruin/wasteplanet/abandoned_mechbay/mainhall) "Tt" = ( /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/closet/secure{ name = "Pilot Equipment" }, @@ -4012,10 +3876,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "Un" = ( @@ -4025,9 +3886,7 @@ }, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "UH" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid/wasteplanet, /area/ruin/wasteplanet/abandoned_mechbay) "UK" = ( @@ -4095,7 +3954,8 @@ /area/ruin/wasteplanet/abandoned_mechbay/crewquarters) "VJ" = ( /obj/machinery/door/airlock/hatch{ - name = "Laundry" + name = "Laundry"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -4133,7 +3993,7 @@ /obj/machinery/camera/autoname{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/concrete/slab_1, /area/ruin/wasteplanet/abandoned_mechbay) "Wt" = ( @@ -4230,9 +4090,7 @@ /obj/machinery/computer/security{ dir = 4 }, -/obj/item/radio/intercom/wideband{ - pixel_y = 31 - }, +/obj/item/radio/intercom/wideband/directional/north, /obj/effect/turf_decal/box, /turf/open/floor/plasteel/tech/grid, /area/ruin/wasteplanet/abandoned_mechbay/commandcontrol) @@ -4246,9 +4104,7 @@ /obj/effect/turf_decal/spline/fancy/opaque/grey{ dir = 8 }, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/concrete/slab_4, /area/ruin/wasteplanet/abandoned_mechbay/mainhall) "XV" = ( @@ -4296,10 +4152,7 @@ /obj/item/storage/firstaid/medical, /obj/item/storage/firstaid/regular, /obj/item/storage/firstaid/regular, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/white, /area/ruin/wasteplanet/abandoned_mechbay/mechlab) "YC" = ( @@ -4324,15 +4177,13 @@ dir = 1 }, /obj/machinery/camera/autoname, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/concrete/slab_4, /area/ruin/wasteplanet/abandoned_mechbay/mainhall) "YP" = ( /obj/effect/turf_decal/box/white, /obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/wasteplanet/abandoned_mechbay/bay2) "YR" = ( @@ -4357,9 +4208,7 @@ /obj/machinery/camera/autoname{ dir = 4 }, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/bay1) @@ -4404,9 +4253,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ruin/wasteplanet/abandoned_mechbay/bay1) "Zx" = ( @@ -5544,7 +5391,7 @@ wo RJ QL Oc -RR +QL YZ bP uy diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_crash_kitchen.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_crash_kitchen.dmm index 7ac1ef2f2d23..7290a4b06c7f 100644 --- a/_maps/RandomRuins/WasteRuins/wasteplanet_crash_kitchen.dmm +++ b/_maps/RandomRuins/WasteRuins/wasteplanet_crash_kitchen.dmm @@ -32,13 +32,6 @@ "dr" = ( /turf/closed/wall/mineral/titanium, /area/ruin/unpowered) -"dA" = ( -/obj/structure/extinguisher_cabinet, -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/ruin/unpowered) "fE" = ( /obj/structure/curtain/bounty, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -62,10 +55,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/carpet/nanoweave/purple, /area/ruin/unpowered) "im" = ( @@ -164,10 +154,7 @@ pixel_x = 6; pixel_y = 6 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -204,7 +191,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -272,13 +259,15 @@ /turf/open/floor/wood, /area/ruin/unpowered) "yB" = ( -/obj/machinery/door/airlock/public/glass, /obj/machinery/door/firedoor/border_only{ dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /turf/open/floor/plasteel/tech/grid, /area/ruin/unpowered) "yE" = ( @@ -328,6 +317,7 @@ /obj/structure/chair{ dir = 8 }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/carpet/nanoweave/purple, /area/ruin/unpowered) "HV" = ( @@ -385,9 +375,7 @@ /area/ruin/unpowered) "QS" = ( /obj/structure/chair/comfy/teal, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/wood, /area/ruin/unpowered) "Rt" = ( @@ -408,9 +396,7 @@ }, /area/ruin/unpowered) "Sh" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/door/window/westright, /obj/structure/window/reinforced/spawner, /obj/machinery/atmospherics/components/binary/pump/layer2, @@ -444,12 +430,15 @@ pixel_y = -24 }, /obj/structure/closet/emcloset/wall{ - pixel_x = 32 + pixel_x = 28; + dir = 8 }, /turf/open/floor/plasteel/tech, /area/ruin/unpowered) "TZ" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -652,7 +641,7 @@ Vy dr br vc -dA +Nb pa Nb pa diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_fortress_of_solitide.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_fortress_of_solitide.dmm index ec2bf72f87ea..b13527261b7a 100644 --- a/_maps/RandomRuins/WasteRuins/wasteplanet_fortress_of_solitide.dmm +++ b/_maps/RandomRuins/WasteRuins/wasteplanet_fortress_of_solitide.dmm @@ -65,22 +65,17 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ruin/powered) -"aD" = ( +"aE" = ( /obj/machinery/door/airlock/maintenance{ - name = "The Throneroom" - }, -/obj/effect/decal/cleanable/blood, -/obj/item/assembly/mousetrap/armed, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + name = "Funny Creature Storage"; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/barricade/wooden, +/obj/item/restraints/legcuffs/beartrap{ + armed = 1; + trap_damage = 1 }, -/turf/open/floor/carpet/royalblack, +/turf/open/floor/plating, /area/ruin/powered) "aH" = ( /obj/effect/decal/cleanable/dirt, @@ -143,10 +138,10 @@ }, /turf/open/floor/carpet/royalblack, /area/ruin/powered) -"bp" = ( +"br" = ( /obj/effect/mob_spawn/human/corpse/assistant, /obj/effect/decal/cleanable/blood, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/rust, /area/ruin/powered) "bs" = ( @@ -159,6 +154,22 @@ /obj/structure/sign/poster/contraband/rip_badger, /turf/closed/wall/r_wall/rust, /area/ruin/powered) +"bv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Grey Fortress"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "bz" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/chair/plastic, @@ -345,7 +356,7 @@ "dp" = ( /obj/structure/headpike, /obj/effect/decal/cleanable/generic, -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "dv" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -399,6 +410,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/powered) +"dY" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/rust, +/area/ruin/powered) "ec" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -425,13 +442,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/rust, /area/ruin/powered) -"ei" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 +"ej" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Throneroom"; + dir = 4 }, -/turf/open/floor/plating/rust, +/obj/effect/decal/cleanable/blood, +/obj/item/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/royalblack, /area/ruin/powered) "ep" = ( /obj/effect/spawner/lootdrop/maintenance/two, @@ -550,6 +577,14 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/rust, /area/ruin/powered) +"fk" = ( +/obj/machinery/door/airlock/bananium{ + name = "Clown Embassy"; + dir = 4 + }, +/obj/item/grown/bananapeel, +/turf/open/floor/mineral/bananium, +/area/ruin/powered) "fn" = ( /obj/effect/gibspawner/human, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -563,12 +598,6 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"fo" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/powered) "fr" = ( /obj/structure/table, /obj/item/stack/sheet/mineral/wood, @@ -644,12 +673,6 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"fU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "The Barracks Part 4" - }, -/turf/open/floor/plating, -/area/ruin/powered) "ga" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -670,6 +693,10 @@ /obj/item/clothing/gloves/color/fyellow, /turf/open/floor/plating, /area/ruin/powered) +"go" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/mineral/bananium, +/area/ruin/powered) "gp" = ( /mob/living/simple_animal/hostile/rat, /obj/effect/decal/cleanable/dirt/dust, @@ -684,6 +711,16 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) +"gq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/coin, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ruin/powered) "gr" = ( /obj/structure/rack, /obj/item/trash/sosjerky, @@ -772,6 +809,12 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) +"hV" = ( +/obj/effect/mob_spawn/human/corpse/assistant, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/ruin/powered) "hW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -840,17 +883,6 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"iE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Funny Creature Storage" - }, -/obj/structure/barricade/wooden, -/obj/item/restraints/legcuffs/beartrap{ - armed = 1; - trap_damage = 1 - }, -/turf/open/floor/plating, -/area/ruin/powered) "iH" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/blood/old, @@ -977,6 +1009,10 @@ /obj/item/evidencebag, /turf/open/floor/plating, /area/ruin/powered) +"jH" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/rust, +/area/ruin/powered) "jM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1005,6 +1041,17 @@ /obj/structure/sign/poster/contraband/space_cube, /turf/closed/wall/r_wall/rust, /area/ruin/powered) +"jY" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Armoire"; + dir = 4 + }, +/obj/item/restraints/legcuffs/beartrap{ + armed = 1; + trap_damage = 1 + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "kb" = ( /obj/machinery/door/airlock/maintenance{ name = "The Grey Fortress" @@ -1061,12 +1108,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) -"kv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chirurgeon's Theatre" - }, -/turf/open/floor/plating, -/area/ruin/powered) "kw" = ( /obj/machinery/vending/sovietsoda, /turf/open/floor/wood, @@ -1080,13 +1121,6 @@ /obj/structure/sign/poster/contraband/xenofauna_parasite, /turf/closed/wall/r_wall/rust, /area/ruin/powered) -"kF" = ( -/mob/living/simple_animal/hostile/rat{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/ruin/powered) "kK" = ( /obj/effect/decal/cleanable/blood, /obj/effect/mob_spawn/human/clown/corpse, @@ -1160,22 +1194,8 @@ /area/ruin/powered) "ll" = ( /obj/structure/headpike, -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) -"lm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/item/assembly/mousetrap/armed, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ruin/powered) "lp" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1220,6 +1240,13 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/ruin/powered) +"lK" = ( +/mob/living/simple_animal/hostile/rat{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ruin/powered) "lL" = ( /obj/item/mecha_parts/mecha_equipment/generator, /turf/open/floor/plating/rust, @@ -1290,6 +1317,13 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) +"mo" = ( +/obj/item/spear, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/ruin/powered) "mv" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sign/poster/contraband/missing_gloves, @@ -1448,12 +1482,35 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"nF" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/item/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ruin/powered) "nH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/rust, /area/ruin/powered) +"nJ" = ( +/obj/structure/rack, +/obj/item/pneumatic_cannon/pie, +/obj/item/reagent_containers/spray/waterflower/lube, +/obj/machinery/light/small/directional/east, +/turf/open/floor/mineral/bananium, +/area/ruin/powered) "nK" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance/five, @@ -1583,10 +1640,10 @@ /obj/item/trash/waffles, /turf/open/floor/plating, /area/ruin/powered) -"oR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Throneroom Desk" - }, +"oS" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/rust, /area/ruin/powered) "oU" = ( @@ -1606,7 +1663,7 @@ /area/ruin/powered) "oW" = ( /obj/structure/flora/rock, -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "oX" = ( /obj/structure/sign/poster/contraband/pgf, @@ -1757,6 +1814,12 @@ /obj/item/assembly/mousetrap/armed, /turf/open/floor/plating, /area/ruin/powered) +"qx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/glass, +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ruin/powered) "qE" = ( /obj/effect/decal/cleanable/oil/streak, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -1815,12 +1878,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ruin/powered) -"qS" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "qT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, @@ -1836,6 +1893,13 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) +"ra" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -28 + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "rl" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/cannabis{ @@ -1913,6 +1977,10 @@ /obj/item/trash/tray, /turf/open/floor/plating, /area/ruin/powered) +"rR" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plating/rust, +/area/ruin/powered) "rU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/oil, @@ -1925,28 +1993,12 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"rY" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "sg" = ( /mob/living/simple_animal/hostile/rat{ dir = 1 }, /turf/open/floor/plating/rust, /area/ruin/powered) -"sk" = ( -/obj/effect/mob_spawn/human/corpse/assistant, -/obj/effect/decal/cleanable/blood, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/powered) "sl" = ( /mob/living/simple_animal/hostile/rat, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2001,12 +2053,6 @@ }, /turf/open/floor/plating, /area/ruin/powered) -"sG" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/bananium, -/area/ruin/powered) "sH" = ( /obj/effect/decal/cleanable/blood, /obj/effect/mob_spawn/human/corpse/assistant, @@ -2098,9 +2144,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/powered) +"tP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/rust, +/area/ruin/powered) "tR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "tT" = ( /obj/machinery/door/airlock/maintenance{ @@ -2172,6 +2223,13 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"uP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Laboratorium"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "uS" = ( /obj/effect/decal/cleanable/glass, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2349,6 +2407,15 @@ /obj/effect/decal/cleanable/greenglow/filled, /turf/open/floor/plating, /area/ruin/powered) +"wg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Galley"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/grown/bananapeel, +/turf/open/floor/plating, +/area/ruin/powered) "wi" = ( /obj/structure/window/spawner/north, /mob/living/carbon/monkey, @@ -2417,6 +2484,21 @@ /obj/item/photo, /turf/open/floor/plating/rust, /area/ruin/powered) +"wJ" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ruin/powered) "wM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 @@ -2475,6 +2557,12 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"xW" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/rust, +/area/ruin/powered) "yb" = ( /obj/item/nullrod/hypertool, /obj/effect/decal/cleanable/blood/old, @@ -2497,15 +2585,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating/rust, /area/ruin/powered) -"yj" = ( -/obj/structure/closet/cardboard, -/mob/living/simple_animal/hostile/retaliate/poison/snake, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/powered) "yl" = ( /obj/structure/falsewall/gold, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2519,6 +2598,12 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"yp" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/ruin/powered) "yw" = ( /obj/structure/sign/poster/contraband/masked_men, /turf/closed/wall/r_wall/rust, @@ -2569,15 +2654,6 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"yX" = ( -/obj/structure/rack, -/obj/item/pneumatic_cannon/pie, -/obj/item/reagent_containers/spray/waterflower/lube, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/bananium, -/area/ruin/powered) "yZ" = ( /obj/structure/sign/poster/contraband/tools, /turf/closed/wall/r_wall/rust, @@ -2631,6 +2707,34 @@ /obj/structure/statue/sandstone/assistant, /turf/open/floor/plating/rust, /area/ruin/powered) +"zy" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/ash/large, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/cigbutt{ + pixel_x = 11 + }, +/obj/item/cigbutt{ + pixel_y = 15 + }, +/obj/item/cigbutt{ + pixel_y = -8 + }, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 7 + }, +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating/rust, +/area/ruin/powered) "zC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, @@ -2645,12 +2749,6 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"zD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "The Barracks Part 2" - }, -/turf/open/floor/plating, -/area/ruin/powered) "zE" = ( /obj/item/mecha_parts/mecha_equipment/weapon/energy/laser, /obj/effect/decal/cleanable/dirt/dust, @@ -2658,7 +2756,7 @@ /area/ruin/powered) "zG" = ( /obj/item/gun/ballistic/automatic/pistol/commander, -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "zK" = ( /turf/closed/indestructible/reinforced, @@ -2893,6 +2991,24 @@ icon_state = "wood-broken6" }, /area/ruin/powered) +"By" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Gauntlet"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ruin/powered) "BA" = ( /obj/machinery/door/airlock/maintenance{ name = "The Other Serpentorium" @@ -2976,7 +3092,6 @@ /area/ruin/powered) "Ce" = ( /obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/random, /turf/closed/wall/r_wall/rust, /area/ruin/powered) "Cf" = ( @@ -3020,6 +3135,13 @@ /obj/item/reagent_containers/food/snacks/soup/clownstears, /turf/open/floor/plating, /area/ruin/powered) +"CE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chirurgeon's Theatre"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "CF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -3147,21 +3269,6 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"DZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "The Grey Fortress" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "Eb" = ( /obj/item/spear, /turf/open/floor/plating, @@ -3196,6 +3303,10 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"Eg" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/ruin/powered) "Ei" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/blood/old, @@ -3215,29 +3326,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating/rust, /area/ruin/powered) -"Es" = ( -/obj/effect/mob_spawn/human/corpse/whitesands/survivor, -/obj/effect/decal/cleanable/blood, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/powered) -"Et" = ( -/obj/machinery/door/airlock/maintenance/glass{ - name = "Waiting Lobby" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ruin/powered) "Ex" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 @@ -3317,13 +3405,21 @@ /obj/item/cigbutt, /turf/open/floor/plating, /area/ruin/powered) +"Fc" = ( +/mob/living/simple_animal/hostile/rat{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil/streak, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/rust, +/area/ruin/powered) "Fh" = ( /obj/effect/decal/remains/human, /obj/item/clothing/head/helmet{ pixel_y = 1 }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "Fl" = ( /obj/effect/decal/cleanable/robot_debris, @@ -3464,15 +3560,33 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/oil, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) +"GP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "The Reliquary"; + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/item/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 + dir = 4 }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plating/rust, +/turf/open/floor/plating, /area/ruin/powered) "GR" = ( /obj/effect/decal/cleanable/blood, @@ -3554,14 +3668,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) -"Ik" = ( -/obj/machinery/door/airlock/maintenance{ - name = "The Galley" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/grown/bananapeel, -/turf/open/floor/plating, -/area/ruin/powered) "Im" = ( /obj/structure/closet/crate/trashcart, /obj/item/toy/plush/among{ @@ -3569,7 +3675,7 @@ pixel_y = -1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "In" = ( /obj/effect/decal/cleanable/blood/tracks{ @@ -3592,22 +3698,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/powered) -"Iu" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Throneroom Reception" - }, -/obj/item/assembly/mousetrap/armed, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "Iv" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/generic, @@ -3636,7 +3726,7 @@ /turf/open/floor/plating/rust, /area/ruin/powered) "IA" = ( -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "IB" = ( /obj/item/storage/fancy/cigarettes/cigpack_robustgold, @@ -3683,12 +3773,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/ruin/powered) -"IP" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/glass, -/obj/machinery/light, -/turf/open/floor/plating, -/area/ruin/powered) "IU" = ( /obj/structure/filingcabinet/security, /obj/effect/decal/cleanable/dirt/dust, @@ -3921,12 +4005,11 @@ }, /turf/open/floor/plating, /area/ruin/powered) -"KY" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "The Reliquary" +"Lb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Grey Fortress"; + dir = 4 }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/item/assembly/mousetrap/armed, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, @@ -3936,7 +4019,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/plating/rust, /area/ruin/powered) "Lc" = ( /obj/effect/gibspawner/robot, @@ -3956,35 +4039,12 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating, /area/ruin/powered) -"Ls" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash/large, -/obj/item/cigbutt, -/obj/item/cigbutt{ - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/cigbutt{ - pixel_x = 11 - }, -/obj/item/cigbutt{ - pixel_y = 15 - }, -/obj/item/cigbutt{ - pixel_y = -8 - }, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 7 - }, -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -8 - }, -/obj/machinery/light/small{ - dir = 4 +"Lu" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Barracks Part 4"; + dir = 8 }, -/turf/open/floor/plating/rust, +/turf/open/floor/plating, /area/ruin/powered) "Lv" = ( /obj/effect/decal/cleanable/blood/old, @@ -4079,6 +4139,13 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating/rust, /area/ruin/powered) +"Nc" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -28 + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "Nd" = ( /obj/structure/bed, /turf/open/floor/plating/rust, @@ -4257,6 +4324,13 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/rust, /area/ruin/powered) +"Oq" = ( +/obj/structure/closet/cardboard, +/mob/living/simple_animal/hostile/retaliate/poison/snake, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/ruin/powered) "Or" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, @@ -4287,16 +4361,6 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating/rust, /area/ruin/powered) -"OA" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/powered) -"OB" = ( -/obj/machinery/light, -/turf/open/floor/plating/rust, -/area/ruin/powered) "OE" = ( /obj/effect/decal/cleanable/food/pie_smudge, /obj/effect/decal/cleanable/cobweb, @@ -4339,21 +4403,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/powered) -"OY" = ( -/obj/machinery/door/airlock/maintenance{ - name = "The Grey Fortress" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "Pb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/generic, @@ -4425,6 +4474,22 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) +"PJ" = ( +/obj/machinery/door/airlock/maintenance/glass{ + name = "Waiting Lobby"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ruin/powered) "PM" = ( /obj/structure/closet/cardboard, /mob/living/simple_animal/hostile/retaliate/poison/snake, @@ -4450,16 +4515,6 @@ /obj/effect/gibspawner/generic, /turf/open/floor/plating/rust, /area/ruin/powered) -"Qd" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/coin, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ruin/powered) "Qf" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer{ @@ -4568,16 +4623,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/ruin/powered) -"QU" = ( -/mob/living/simple_animal/hostile/rat{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil/streak, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "Rc" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt/dust, @@ -4630,7 +4675,8 @@ /area/ruin/powered) "RG" = ( /obj/machinery/door/airlock/maintenance{ - name = "The Serpentorium" + name = "The Serpentorium"; + dir = 4 }, /turf/open/floor/plating, /area/ruin/powered) @@ -4643,13 +4689,6 @@ /mob/living/carbon/monkey/punpun, /turf/open/floor/plating, /area/ruin/powered) -"RV" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/ruin/powered) "RX" = ( /obj/effect/spawner/lootdrop/maintenance/four, /obj/structure/table/wood/poker, @@ -4696,10 +4735,12 @@ "Sy" = ( /obj/structure/headpike, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/lowpressure, +/turf/open/floor/plating/asteroid/wasteplanet, /area/overmap_encounter/planetoid/rockplanet/explored) "SC" = ( -/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4780,23 +4821,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/powered) -"Th" = ( -/obj/machinery/door/airlock/maintenance{ - name = "The Gauntlet" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/assembly/mousetrap/armed, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ruin/powered) "Ti" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb, @@ -4868,6 +4892,12 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) +"TD" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 28 + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "TE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/glass, @@ -4924,14 +4954,6 @@ }, /turf/open/floor/plating/rust, /area/ruin/powered) -"TV" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/powered) "TX" = ( /obj/structure/table/reinforced, /obj/effect/mob_spawn/human/corpse/damaged, @@ -4968,11 +4990,6 @@ /obj/structure/sign/poster/contraband/the_griffin, /turf/closed/wall/r_wall/rust, /area/ruin/powered) -"Uo" = ( -/obj/item/spear, -/obj/machinery/light, -/turf/open/floor/plating/rust, -/area/ruin/powered) "Uq" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow, @@ -4980,6 +4997,13 @@ /obj/item/clothing/gloves/color/fyellow, /turf/open/floor/plating/rust, /area/ruin/powered) +"Uv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Throneroom Desk"; + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "UA" = ( /obj/effect/decal/cleanable/generic, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -5023,6 +5047,27 @@ }, /turf/open/floor/plating, /area/ruin/powered) +"UK" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/ruin/powered) +"UM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Throneroom Reception"; + dir = 4 + }, +/obj/item/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/rust, +/area/ruin/powered) "UR" = ( /obj/structure/falsewall/reinforced, /turf/open/floor/plating, @@ -5045,6 +5090,11 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating/rust, /area/ruin/powered) +"UW" = ( +/obj/item/spear, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/rust, +/area/ruin/powered) "Vd" = ( /obj/effect/mob_spawn/human/corpse/damaged, /obj/effect/decal/cleanable/blood, @@ -5101,6 +5151,13 @@ /obj/effect/mob_spawn/human/corpse/pirate, /turf/open/floor/plating/rust, /area/ruin/powered) +"VH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Barracks Part 2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/powered) "VJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/restraints/legcuffs/beartrap{ @@ -5121,22 +5178,23 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating/rust, /area/ruin/powered) -"VN" = ( -/obj/machinery/door/airlock/bananium{ - name = "Clown Embassy" +"Wl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "The Reliquary"; + dir = 4 }, -/obj/item/grown/bananapeel, -/turf/open/floor/mineral/bananium, -/area/ruin/powered) -"VO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Armoire" +/obj/effect/mapping_helpers/airlock/locked, +/obj/item/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/restraints/legcuffs/beartrap{ - armed = 1; - trap_damage = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plating/rust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, /area/ruin/powered) "Wn" = ( /obj/vehicle/ridden/wheelchair, @@ -5299,17 +5357,11 @@ }, /turf/open/floor/plating, /area/ruin/powered) -"XQ" = ( -/obj/machinery/door/airlock/maintenance, -/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" - }, +"XL" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/directional/north, +/obj/effect/mob_spawn/human/corpse/damaged/whitesands/survivor, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/ruin/powered) "XR" = ( @@ -5349,12 +5401,6 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating/rust, /area/ruin/powered) -"Yc" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light, -/turf/open/floor/plating/rust, -/area/ruin/powered) "Yd" = ( /obj/structure/rack, /obj/item/trash/plate, @@ -5463,6 +5509,12 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/rust, /area/ruin/powered) +"YS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/ruin/powered) "YT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -5516,12 +5568,6 @@ /obj/item/flashlight/glowstick, /turf/open/floor/plating, /area/ruin/powered) -"Zi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "The Laboratorium" - }, -/turf/open/floor/plating, -/area/ruin/powered) "Zo" = ( /mob/living/simple_animal/hostile/cat_butcherer{ dir = 4 @@ -5720,7 +5766,7 @@ xx BK xx xx -Iu +UM xx xx xx @@ -5745,7 +5791,7 @@ dn xx xx bC -VN +fk bC xx bG @@ -5877,7 +5923,7 @@ xx rJ xx xx -VN +fk bC Xe Xe @@ -5903,7 +5949,7 @@ SF bG UU sH -rY +oS TJ YO xx @@ -5919,7 +5965,7 @@ XF dT bC OE -sG +go Hp av zh @@ -5945,13 +5991,13 @@ bG ee pR RY -fU +Lu bG Xe So xx xx -zD +VH xx Xe PT @@ -6025,13 +6071,13 @@ in "} (11,1,1) = {" xx -VO +jY dn xx -Et +PJ xx RY -oR +Uv MA kO av @@ -6091,7 +6137,7 @@ xx hW xx Fb -Ls +zy Jc xx cX @@ -6099,7 +6145,7 @@ we VK nt Pr -yX +nJ xx zV HY @@ -6204,13 +6250,13 @@ xx xx bG xx -aD +ej xx xx xx bG bG -XQ +wJ xx xx xx @@ -6227,7 +6273,7 @@ Xe Xe xx xx -XQ +wJ fi xx xx @@ -6247,9 +6293,9 @@ in xx Hp tY -sk +hV vG -OA +Eg tY av bG @@ -6289,13 +6335,13 @@ in "} (17,1,1) = {" xx -Es +XL Ol av ec kS vl -IP +qx bG cE JW @@ -6332,7 +6378,7 @@ in in "} (18,1,1) = {" -fi +xx Xm Qm XF @@ -6341,7 +6387,7 @@ XF Qm QT bG -XQ +wJ bG xx Xe @@ -6377,7 +6423,7 @@ in "} (19,1,1) = {" xx -Eb +mo Ou av Vd @@ -6421,13 +6467,13 @@ in "} (20,1,1) = {" xx -TV +YS kD Xt iZ Yb wx -Uo +UW xx YF xx @@ -6471,7 +6517,7 @@ Hp vG av Mv -lz +ra Ce vD xx @@ -6553,13 +6599,13 @@ in "} (23,1,1) = {" xx -RV +tP Pq HC AN av iK -OB +rR bG TH Vp @@ -6597,7 +6643,7 @@ in "} (24,1,1) = {" xx -av +TD bs XF In @@ -6653,7 +6699,7 @@ jM BA av zv -Qd +gq xx CF RY @@ -6673,7 +6719,7 @@ Hp Ub Xs xx -OY +bv RY xx zs @@ -6684,14 +6730,14 @@ IA IA "} (26,1,1) = {" -fi -fo +xx +UK IE wq dP XF kD -kF +lK xx jM xx @@ -6706,7 +6752,7 @@ dn bG RY dg -iE +aE et bN xx @@ -6735,8 +6781,8 @@ mP zL av nM -pR -fi +Nc +xx vD dI av @@ -6749,7 +6795,7 @@ dC fh xx IO -ei +dY oq FH SM @@ -6773,7 +6819,7 @@ IA "} (28,1,1) = {" xx -Hp +yp kD eS Dl @@ -6817,13 +6863,13 @@ IA "} (29,1,1) = {" xx -qS +jH PS Ky bj Db rO -bp +br xx CF xx @@ -6860,7 +6906,7 @@ IA ll "} (30,1,1) = {" -fi +xx CT tY av @@ -6875,7 +6921,7 @@ oQ iI mV xx -lm +nF xx xx dn @@ -6883,7 +6929,7 @@ xx xx Xe Xe -Ik +wg xx xx et @@ -6893,7 +6939,7 @@ xx Xe Xe xx -DZ +Lb xx hD Im @@ -6949,13 +6995,13 @@ IA "} (32,1,1) = {" xx -QU +Fc hZ av hW Eb av -Yc +xW xx PE IY @@ -7013,7 +7059,7 @@ xx bG xx xx -Zi +uP xx SG xx @@ -7022,7 +7068,7 @@ xx Xe Xe Xe -kv +CE xx xx xx @@ -7041,7 +7087,7 @@ xx xx xx xx -KY +Wl xx xx xx @@ -7050,7 +7096,7 @@ bG xx YP bG -Th +By RY bG wz @@ -7069,7 +7115,7 @@ lA Xt RY OV -yj +Oq Jp xx in @@ -7085,7 +7131,7 @@ zK zK zK xx -KY +GP xx zK zK @@ -7129,7 +7175,7 @@ zK xx xx xx -KY +Wl xx xx xx diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_lab.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_lab.dmm index 8c4571a6e351..617cde29db7b 100644 --- a/_maps/RandomRuins/WasteRuins/wasteplanet_lab.dmm +++ b/_maps/RandomRuins/WasteRuins/wasteplanet_lab.dmm @@ -347,6 +347,13 @@ /obj/machinery/porta_turret/syndicate/energy, /turf/open/floor/plating/rust, /area/ruin/powered) +"pT" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/mono, +/area/ruin/powered) "qg" = ( /obj/effect/turf_decal/corner/transparent/neutral/diagonal, /obj/machinery/plate_press, @@ -509,7 +516,9 @@ /turf/open/floor/plasteel/white, /area/ruin/powered) "wM" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /turf/open/floor/plasteel/mono, /area/ruin/powered) "wT" = ( @@ -814,8 +823,10 @@ /turf/open/floor/plasteel, /area/ruin/powered) "QL" = ( -/obj/machinery/door/airlock/public/glass, /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /turf/open/floor/plasteel/mono, /area/ruin/powered) "QR" = ( @@ -1158,7 +1169,7 @@ Rw Rw Rw GR -QL +pT QL Rw Rw @@ -1536,7 +1547,7 @@ Rw Rw Rw GR -QL +pT wM GR dD diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_ore_proccessing_facility.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_ore_proccessing_facility.dmm index bc8d5d54b026..cdf8afc5809b 100644 --- a/_maps/RandomRuins/WasteRuins/wasteplanet_ore_proccessing_facility.dmm +++ b/_maps/RandomRuins/WasteRuins/wasteplanet_ore_proccessing_facility.dmm @@ -41,9 +41,7 @@ /turf/open/floor/plating/rust, /area/ruin/powered) "ch" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/conveyor/auto{ id = "rockplanet_ore_process" }, @@ -120,7 +118,7 @@ dir = 1; id = "rockplanet_ore_process" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/rust, /area/ruin/powered) "jA" = ( @@ -170,15 +168,20 @@ smoothing_groups = null }, /area/ruin/powered) +"lC" = ( +/obj/machinery/door/airlock/mining{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating/rust, +/area/ruin/powered) "lW" = ( /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/wasteplanet, /area/ruin/powered) "mg" = ( /obj/effect/mob_spawn/human/corpse/cargo_tech, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/rust, /area/ruin/powered) "mE" = ( @@ -231,7 +234,7 @@ /turf/open/floor/plating/rust, /area/ruin/powered) "pv" = ( -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /turf/open/floor/plating/rust, /area/ruin/powered) "pJ" = ( @@ -251,9 +254,7 @@ /turf/open/floor/plating/rust, /area/ruin/powered) "qb" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/railing{ dir = 8 }, @@ -321,7 +322,7 @@ /turf/open/floor/plating/rust, /area/ruin/powered) "uB" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/rust, /area/ruin/powered) "vV" = ( @@ -329,7 +330,7 @@ dir = 4; id = "rockplanet_ore_process" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/rust, /area/ruin/powered) "wi" = ( @@ -475,9 +476,7 @@ dir = 1; id = "rockplanet_ore_process" }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/rust, /area/ruin/powered) "FH" = ( @@ -495,9 +494,6 @@ /obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/plating/rust, /area/ruin/powered) -"GO" = ( -/turf/closed/indestructible/fakedoor, -/area/ruin/powered) "Hr" = ( /obj/machinery/conveyor/auto{ id = "rockplanet_ore_process" @@ -644,7 +640,7 @@ /turf/open/floor/plating/rust, /area/ruin/powered) "NZ" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/closet/secure_closet/miner, /turf/open/floor/plating/rust, /area/ruin/powered) @@ -653,9 +649,7 @@ dir = 8; id = "rockplanet_ore_process" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/rust, /area/ruin/powered) "Pd" = ( @@ -718,9 +712,7 @@ dir = 8; id = "rockplanet_ore_process" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/rust, /area/ruin/powered) "WV" = ( @@ -767,9 +759,7 @@ }, /area/ruin/powered) "ZL" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/rust, /area/ruin/powered) @@ -956,7 +946,7 @@ rx rx rx rx -Gv +lC rx rx rx @@ -1119,7 +1109,7 @@ rx rx rx rx -Gv +lC rx rx qk @@ -1457,7 +1447,7 @@ bE bE bE bE -GO +bE bE MX bE diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_tarpit.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_tarpit.dmm index 6dd03ed7c02e..552fd5006b34 100644 --- a/_maps/RandomRuins/WasteRuins/wasteplanet_tarpit.dmm +++ b/_maps/RandomRuins/WasteRuins/wasteplanet_tarpit.dmm @@ -145,9 +145,7 @@ /obj/effect/turf_decal/siding/white{ dir = 4 }, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete, @@ -169,7 +167,7 @@ /turf/open/floor/concrete/pavement, /area/ruin/unpowered) "my" = ( -/obj/machinery/light/dim, +/obj/machinery/light/dim/directional/south, /turf/open/floor/concrete, /area/ruin/unpowered) "mM" = ( @@ -363,9 +361,7 @@ /turf/open/floor/concrete/pavement, /area/ruin/unpowered) "yW" = ( -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/concrete, /area/ruin/unpowered) "zu" = ( @@ -381,9 +377,7 @@ /turf/open/floor/plating/asteroid/wasteplanet, /area/ruin/unpowered) "AO" = ( -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/concrete, /area/ruin/unpowered) "Bk" = ( @@ -615,9 +609,7 @@ "UZ" = ( /obj/structure/table, /obj/item/pickaxe/drill, -/obj/machinery/light/dim{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete, /area/ruin/unpowered) diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_unhonorable.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_unhonorable.dmm index f8f61c6fb4de..65f068c1164b 100644 --- a/_maps/RandomRuins/WasteRuins/wasteplanet_unhonorable.dmm +++ b/_maps/RandomRuins/WasteRuins/wasteplanet_unhonorable.dmm @@ -2,25 +2,22 @@ "a" = ( /turf/template_noop, /area/template_noop) -"b" = ( -/turf/open/floor/plating/rust, -/area/ruin) "c" = ( /obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/ruin) "e" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "i" = ( /obj/effect/gibspawner, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "j" = ( /obj/item/grenade/syndieminibomb, /obj/item/ammo_box/magazine/aknt, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "k" = ( /obj/structure/radioactive/stack, @@ -32,7 +29,7 @@ pixel_x = -15; pixel_y = -9 }, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "m" = ( /obj/effect/radiation, @@ -40,9 +37,7 @@ /area/ruin) "n" = ( /obj/item/ammo_box/magazine/aknt, -/turf/open/floor/plating/rust{ - initial_gas_mix = "plasma=70000;TEMP=293.15" - }, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "o" = ( /obj/structure/fence/door, @@ -51,16 +46,16 @@ "p" = ( /obj/item/stack/sheet/mineral/uranium/five, /obj/effect/mine/shrapnel, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "q" = ( /obj/structure/table/reinforced, /obj/item/gun/ballistic/automatic/assualt/ak47/nt, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "r" = ( /obj/item/stack/sheet/mineral/uranium/five, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "s" = ( /obj/structure/fence/corner{ @@ -71,26 +66,22 @@ "t" = ( /obj/item/stack/sheet/mineral/uranium/five, /obj/structure/radioactive/stack, -/turf/open/floor/plating/rust, -/area/ruin) -"u" = ( -/obj/effect/radiation, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "v" = ( /obj/machinery/door/airlock/vault, /obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin/powered) "x" = ( /obj/item/stack/sheet/mineral/uranium/five, /obj/structure/radioactive, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "y" = ( /obj/structure/table/reinforced, /obj/item/gun/energy/e_gun/nuclear, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "z" = ( /obj/structure/sign/warning/radiation, @@ -99,7 +90,7 @@ "A" = ( /obj/item/grenade/frag, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "B" = ( /turf/closed/wall/r_wall/rust, @@ -107,7 +98,7 @@ "C" = ( /obj/item/ammo_box/magazine/aknt, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "D" = ( /obj/structure/fence, @@ -119,19 +110,15 @@ "G" = ( /obj/item/stack/sheet/mineral/uranium/five, /obj/effect/gibspawner, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "H" = ( /obj/item/grenade/stingbang, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "I" = ( /obj/item/flashlight/lantern, -/turf/open/floor/plating/rust, -/area/ruin) -"J" = ( -/obj/structure/radioactive, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "K" = ( /obj/effect/mine/shrapnel, @@ -151,7 +138,7 @@ "P" = ( /obj/effect/gibspawner, /obj/structure/radioactive/waste, -/turf/open/floor/plating/rust, +/turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) "Q" = ( /obj/structure/fence/corner, @@ -183,14 +170,6 @@ }, /turf/open/floor/plating/asteroid/rockplanet/lit, /area/ruin) -"Y" = ( -/obj/item/ammo_box/magazine/aknt, -/turf/open/floor/plating/rust, -/area/ruin) -"Z" = ( -/obj/effect/mine/shrapnel, -/turf/open/floor/plating/rust, -/area/ruin) (1,1,1) = {" c @@ -234,7 +213,7 @@ a B B x -J +U e i t @@ -252,11 +231,11 @@ a (4,1,1) = {" B B -J +U G -b +M j -b +M F B S @@ -292,8 +271,8 @@ F B q A -u -b +m +M I B O @@ -310,10 +289,10 @@ O B B l -Y +n i C -Z +K v M M @@ -331,7 +310,7 @@ F r p H -b +M i B O @@ -348,10 +327,10 @@ O F F P -b +M e r -J +U B F M diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm index d4e9e1c9ba66..c2b590c0746e 100644 --- a/_maps/RandomZLevels/Academy.dmm +++ b/_maps/RandomZLevels/Academy.dmm @@ -67,7 +67,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/carpet, /area/awaymission/academy/headmaster) "an" = ( @@ -152,9 +152,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood, /area/awaymission/academy/headmaster) "aB" = ( @@ -168,9 +166,7 @@ /turf/open/floor/carpet, /area/awaymission/academy/headmaster) "aD" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/carpet, /area/awaymission/academy/headmaster) "aE" = ( @@ -187,9 +183,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/carpet, /area/awaymission/academy/headmaster) "aI" = ( @@ -222,9 +216,7 @@ /turf/open/floor/carpet, /area/awaymission/academy/headmaster) "aO" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/carpet, /area/awaymission/academy/headmaster) "aP" = ( @@ -356,7 +348,7 @@ /turf/open/floor/wood, /area/awaymission/academy/headmaster) "bn" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/awaymission/academy/headmaster) "bo" = ( @@ -457,9 +449,7 @@ /turf/closed/wall/mineral/titanium, /area/awaymission/academy/classrooms) "bI" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/awaymission/academy/headmaster) "bJ" = ( @@ -473,15 +463,11 @@ /turf/open/floor/plasteel/dark, /area/awaymission/academy/headmaster) "bL" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/awaymission/academy/headmaster) "bM" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -625,9 +611,7 @@ /area/awaymission/academy/headmaster) "ch" = ( /obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/showroomfloor, /area/awaymission/academy/headmaster) "ci" = ( @@ -682,9 +666,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "cr" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "ct" = ( @@ -840,9 +822,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "cT" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -908,18 +888,14 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "db" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/awaymission/academy/classrooms) "dc" = ( /turf/open/floor/wood, /area/awaymission/academy/classrooms) "dd" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/awaymission/academy/classrooms) "de" = ( @@ -956,9 +932,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "dj" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -1016,9 +990,7 @@ /turf/open/floor/circuit/green, /area/awaymission/academy/classrooms) "dr" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) @@ -1107,9 +1079,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/academy/classrooms) "dG" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/chem_master/condimaster, /turf/open/floor/plasteel/white, /area/awaymission/academy/classrooms) @@ -1263,9 +1233,7 @@ /turf/open/floor/plasteel/grimy, /area/awaymission/academy/classrooms) "eh" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/grimy, /area/awaymission/academy/classrooms) "ei" = ( @@ -1437,9 +1405,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "eF" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/red{ dir = 4 }, @@ -1545,9 +1511,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/academy/classrooms) "eP" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/grimy, /area/awaymission/academy/classrooms) "eQ" = ( @@ -1653,9 +1617,7 @@ /area/awaymission/academy/classrooms) "fa" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/item/reagent_containers/food/snacks/burger/spell, /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 @@ -1973,7 +1935,7 @@ /turf/open/floor/carpet, /area/awaymission/academy/classrooms) "fC" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/red{ dir = 4 }, @@ -2116,9 +2078,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "fV" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "fW" = ( @@ -2126,9 +2086,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "fX" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/awaymission/academy/classrooms) "fY" = ( @@ -2313,9 +2271,7 @@ /turf/open/floor/plating, /area/awaymission/academy/classrooms) "gv" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/white, /obj/effect/turf_decal/corner/opaque/white{ dir = 4 @@ -2327,15 +2283,11 @@ /turf/open/floor/engine/cult, /area/awaymission/academy/academycellar) "gy" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/grimy, /area/awaymission/academy/academyaft) "gz" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -2359,7 +2311,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "gB" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "gC" = ( @@ -2478,9 +2430,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/classrooms) "gQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /mob/living/simple_animal/hostile/bear, /turf/open/floor/plating, /area/awaymission/academy/classrooms) @@ -2670,9 +2620,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "hp" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "hq" = ( @@ -2840,9 +2788,7 @@ /turf/open/floor/plating, /area/awaymission/academy/academyaft) "hQ" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "hR" = ( @@ -2917,9 +2863,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "id" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "ie" = ( @@ -3051,9 +2995,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "iw" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -3063,21 +3005,15 @@ /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "ix" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/awaymission/academy/academyaft) "iy" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/awaymission/academy/academyaft) "iz" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -3113,9 +3049,7 @@ /obj/structure/toilet{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -3125,9 +3059,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "iE" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/rack, /obj/item/stack/sheet/metal, /turf/open/floor/plasteel, @@ -3140,9 +3072,7 @@ /obj/structure/toilet{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -3168,9 +3098,7 @@ /turf/open/floor/engine, /area/awaymission/academy/academyaft) "iL" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/engine, /area/awaymission/academy/academyaft) "iM" = ( @@ -3180,9 +3108,7 @@ /obj/structure/toilet{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/vomit, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -3380,9 +3306,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/carpet, /area/awaymission/academy/academyaft) "jl" = ( @@ -3390,9 +3314,7 @@ /turf/closed/wall, /area/awaymission/academy/academyaft) "jm" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/carpet, /area/awaymission/academy/academyaft) "jn" = ( @@ -3590,7 +3512,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "jM" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, @@ -3601,7 +3523,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/academyaft) "jN" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, @@ -3642,9 +3564,7 @@ /turf/closed/wall/r_wall, /area/awaymission/academy/academygate) "jT" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/grass, /area/awaymission/academy/academygate) "jU" = ( @@ -3804,7 +3724,7 @@ /turf/open/floor/plating, /area/awaymission/academy/academygate) "kv" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/carpet, /area/awaymission/academy/academygate) "kw" = ( @@ -4084,9 +4004,7 @@ /turf/open/floor/vault, /area/awaymission/academy/academyengine) "lu" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/awaymission/academy/academyengine) "lv" = ( @@ -4162,7 +4080,7 @@ "lK" = ( /obj/effect/immovablerod{ dir = 4; - + }, /obj/structure/cable, /obj/structure/cable{ @@ -4177,7 +4095,7 @@ /turf/open/floor/plating, /area/awaymission/academy/academyengine) "lM" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/academy/academyengine) "lN" = ( @@ -4276,9 +4194,7 @@ /area/awaymission/academy/academyengine) "mf" = ( /obj/structure/constructshell, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/awaymission/academy/academyengine) "mg" = ( @@ -4286,9 +4202,7 @@ /turf/open/floor/vault, /area/awaymission/academy/academyengine) "mh" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/vault, /area/awaymission/academy/academyengine) "mi" = ( @@ -4326,24 +4240,18 @@ /turf/open/floor/plating, /area/awaymission/academy/academyengine) "mp" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/awaymission/academy/academyengine) "mq" = ( /turf/open/floor/plasteel, /area/awaymission/academy/academyengine) "mr" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/awaymission/academy/academyengine) "ms" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/light, /area/awaymission/academy/academyengine) "mt" = ( @@ -4353,9 +4261,7 @@ /turf/open/floor/wood, /area/awaymission/academy/academyengine) "mv" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/awaymission/academy/academyengine) "mw" = ( @@ -4452,7 +4358,7 @@ /turf/open/floor/plasteel, /area/awaymission/academy/academyengine) "mR" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/awaymission/academy/academyengine) "mS" = ( diff --git a/_maps/RandomZLevels/SnowCabin.dmm b/_maps/RandomZLevels/SnowCabin.dmm index 6c5c0dfd7635..6a9c7242a058 100644 --- a/_maps/RandomZLevels/SnowCabin.dmm +++ b/_maps/RandomZLevels/SnowCabin.dmm @@ -128,7 +128,7 @@ /turf/closed/wall/mineral/wood, /area/awaymission/cabin) "ay" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/item/storage/backpack/bannerpack{ pixel_y = 7 }, @@ -147,9 +147,7 @@ /obj/structure/toilet{ dir = 8 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 }, @@ -159,9 +157,7 @@ /obj/structure/toilet{ dir = 4 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = 32 }, @@ -189,9 +185,7 @@ /turf/open/floor/plasteel/freezer, /area/awaymission/cabin) "aI" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/table/wood, /turf/open/floor/wood, /area/awaymission/cabin) @@ -206,9 +200,7 @@ /area/awaymission/cabin) "aK" = ( /obj/structure/table/optable, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/white, /area/awaymission/cabin) "aL" = ( @@ -341,7 +333,7 @@ /turf/open/floor/carpet, /area/awaymission/cabin) "bh" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/awaymission/cabin) "bi" = ( @@ -362,9 +354,7 @@ /turf/open/floor/plasteel/freezer, /area/awaymission/cabin) "bk" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/freezer, /area/awaymission/cabin) "bl" = ( @@ -374,9 +364,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "bn" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/awaymission/cabin) "bo" = ( @@ -392,20 +380,16 @@ /turf/open/floor/wood, /area/awaymission/cabin) "bq" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/vending/cigarette, /turf/open/floor/carpet, /area/awaymission/cabin) "br" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/wood, /area/awaymission/cabin) "bs" = ( -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = 32 }, /turf/open/floor/wood, @@ -567,9 +551,7 @@ /turf/open/floor/wood/cold, /area/awaymission/cabin/snowforest) "bT" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/item/instrument/guitar, /obj/item/instrument/violin, /obj/item/instrument/accordion, @@ -589,9 +571,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "bW" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/table, /obj/machinery/microwave, /obj/effect/turf_decal/corner/opaque/white{ @@ -607,9 +587,7 @@ /turf/open/floor/plasteel/freezer, /area/awaymission/cabin) "bY" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/processor, /turf/open/floor/plasteel/freezer, /area/awaymission/cabin) @@ -731,15 +709,11 @@ /obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ dir = 1 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/white, /area/awaymission/cabin) "cv" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white, /area/awaymission/cabin) "cB" = ( @@ -813,9 +787,7 @@ }, /area/awaymission/cabin) "cU" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/awaymission/cabin) "cV" = ( @@ -1157,7 +1129,7 @@ /turf/open/floor/plating, /area/awaymission/cabin) "ec" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -1167,7 +1139,7 @@ /turf/open/floor/plating, /area/awaymission/cabin) "ee" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/carpet, /area/awaymission/cabin) "ef" = ( @@ -1204,9 +1176,7 @@ /turf/open/floor/plating/snowed, /area/awaymission/cabin/snowforest) "en" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -2442,7 +2412,7 @@ /turf/open/floor/plating, /area/awaymission/cabin) "gN" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/space_heater, /turf/open/floor/plating, @@ -2906,13 +2876,6 @@ name = "soviet floor" }, /area/awaymission/cabin/caves/sovietcave) -"io" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) "ip" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/airlock/hatch, @@ -3261,9 +3224,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/cabin) "jr" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/closet/secure_closet/personal/cabinet{ anchored = 1 }, @@ -3275,9 +3236,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "js" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/table, /obj/item/storage/firstaid/regular, /obj/item/storage/firstaid/brute, @@ -3285,9 +3244,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/cabin) "jt" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/closet/secure_closet/personal/cabinet{ anchored = 1 }, @@ -3299,9 +3256,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "ju" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/closet/secure_closet/personal/cabinet{ anchored = 1 }, @@ -3313,9 +3268,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "jv" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/closet/secure_closet/personal/cabinet{ anchored = 1 }, @@ -3327,9 +3280,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "jw" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/closet/secure_closet/personal/cabinet{ anchored = 1 }, @@ -3432,9 +3383,7 @@ /area/awaymission/cabin/lumbermill) "jN" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium/red{ name = "soviet floor" }, @@ -3619,9 +3568,7 @@ /turf/open/floor/wood, /area/awaymission/cabin/caves) "kk" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/tank_dispenser/oxygen, /turf/open/floor/wood, /area/awaymission/cabin) @@ -3837,18 +3784,14 @@ /area/awaymission/cabin/caves/sovietcave) "kG" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/plastitanium/red{ name = "soviet floor" }, /area/awaymission/cabin/caves/sovietcave) "kH" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/plastitanium/red{ name = "soviet floor" }, @@ -3879,9 +3822,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/item/clothing/head/helmet/r_trapper, /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/plastitanium/red{ name = "soviet floor" }, @@ -4267,11 +4208,11 @@ /area/awaymission/cabin/caves) "lH" = ( /obj/effect/decal/remains/human, -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /turf/open/floor/plating/asteroid/snow, /area/awaymission/cabin/caves) "lI" = ( -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /turf/open/floor/plating/asteroid/snow, /area/awaymission/cabin/caves) "lJ" = ( @@ -4474,9 +4415,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/cabin/caves) "mf" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/asteroid/snow{ floor_variance = 0; icon_state = "snow_dug"; @@ -4499,9 +4438,7 @@ }, /area/awaymission/cabin/caves) "mh" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/asteroid/snow{ floor_variance = 0; icon_state = "snow_dug"; @@ -4737,7 +4674,7 @@ /area/awaymission/cabin/caves) "mI" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium/red{ name = "soviet floor" }, @@ -4779,9 +4716,7 @@ }, /area/awaymission/cabin/caves/sovietcave) "mO" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium/red{ name = "soviet floor" @@ -5173,15 +5108,11 @@ }, /area/awaymission/cabin/caves/sovietcave) "nN" = ( -/obj/machinery/light/small{ - dir = 2 - }, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood, /area/awaymission/cabin) "nO" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks{ dir = 8 @@ -5189,7 +5120,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "nS" = ( -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -32 }, /turf/open/floor/wood, @@ -5252,9 +5183,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "sg" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/carpet, /area/awaymission/cabin) "sp" = ( @@ -5283,9 +5212,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "yk" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/musician/piano{ desc = "Very theatrical."; icon_state = "piano"; @@ -5320,9 +5247,7 @@ /turf/open/floor/plating, /area/awaymission/cabin) "CP" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/awaymission/cabin) @@ -5349,9 +5274,7 @@ /turf/open/floor/wood, /area/awaymission/cabin) "GT" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/cabin) @@ -35498,7 +35421,7 @@ kk aq aq aq -io +br az az an diff --git a/_maps/RandomZLevels/caves.dmm b/_maps/RandomZLevels/caves.dmm index f524d963eef2..e9bfd9048d14 100644 --- a/_maps/RandomZLevels/caves.dmm +++ b/_maps/RandomZLevels/caves.dmm @@ -228,9 +228,7 @@ }, /area/awaymission/caves/BMP_asteroid/level_three) "aL" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating{ initial_gas_mix = "n2=23;o2=14" }, @@ -254,9 +252,7 @@ }, /area/awaymission/caves/BMP_asteroid/level_three) "aO" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating{ initial_gas_mix = "n2=23;o2=14" }, @@ -296,9 +292,7 @@ }, /area/awaymission/caves/BMP_asteroid/level_three) "aU" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, +/obj/machinery/light/small/built/directional/east, /obj/structure/sign/warning/pods{ desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine."; name = "\improper MECH TUNNEL PASSAGE B1 TO A2"; @@ -557,9 +551,7 @@ name = "\improper MECH TUNNEL PASSAGE A2 TO B1"; pixel_x = 32 }, -/obj/machinery/light/small/built{ - dir = 4 - }, +/obj/machinery/light/small/built/directional/east, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14" }, @@ -596,9 +588,7 @@ }, /area/awaymission/caves/BMP_asteroid) "bW" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14" }, @@ -712,9 +702,7 @@ }, /area/awaymission/caves/research) "co" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/filingcabinet, /obj/item/paper/fluff/awaymissions/caves/omega, /turf/open/floor/plasteel{ @@ -833,9 +821,7 @@ }, /area/awaymission/caves/research) "cG" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14" }, @@ -860,9 +846,7 @@ }, /area/awaymission/caves/BMP_asteroid/level_two) "cM" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating{ initial_gas_mix = "n2=23;o2=14" }, @@ -984,9 +968,7 @@ }, /area/awaymission/caves/research) "dc" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/warning/pods{ desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine."; name = "\improper MECH TUNNEL PASSAGE A2 TO A1"; @@ -1003,7 +985,7 @@ }, /area/awaymission/caves/research) "de" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel{ initial_gas_mix = "n2=23;o2=14" }, @@ -1075,9 +1057,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid/level_two) "dq" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, +/obj/machinery/light/small/built/directional/east, /obj/structure/spider/stickyweb, /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid/level_two) @@ -1144,9 +1124,7 @@ /turf/open/floor/wood, /area/awaymission/caves/northblock) "dE" = ( -/obj/machinery/light/small/built{ - dir = 8 - }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/wood, /area/awaymission/caves/northblock) "dF" = ( @@ -1155,9 +1133,7 @@ /turf/open/floor/wood, /area/awaymission/caves/northblock) "dG" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/awaymission/caves/northblock) "dH" = ( @@ -1189,9 +1165,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/northblock) "dN" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/awaymission/caves/northblock) "dO" = ( @@ -1215,7 +1189,7 @@ /turf/open/floor/plating, /area/awaymission/caves/northblock) "dS" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/awaymission/caves/northblock) "dT" = ( @@ -1244,9 +1218,7 @@ /turf/open/floor/wood, /area/awaymission/caves/northblock) "dZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/awaymission/caves/northblock) @@ -1255,9 +1227,7 @@ /turf/open/floor/wood, /area/awaymission/caves/northblock) "eb" = ( -/obj/machinery/light/small/built{ - dir = 8 - }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/wood{ initial_gas_mix = "n2=23;o2=14" }, @@ -1341,9 +1311,7 @@ }, /area/awaymission/caves/northblock) "eq" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid) "er" = ( @@ -1391,9 +1359,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid) "ez" = ( -/obj/machinery/light/small/built{ - dir = 1 - }, +/obj/machinery/light/small/built/directional/north, /obj/machinery/suit_storage_unit/mining{ desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; name = "rusted suit storage unit" @@ -1459,9 +1425,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid) "eM" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/table, /obj/item/storage/toolbox/electrical, /obj/item/multitool, @@ -1496,7 +1460,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid) "eS" = ( -/obj/machinery/light/small/built, +/obj/machinery/light/small/built/directional/south, /obj/machinery/suit_storage_unit/mining{ desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; name = "rusted suit storage unit" @@ -1531,9 +1495,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/listeningpost) "eZ" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/awaymission/caves/listeningpost) "fa" = ( @@ -1579,9 +1541,7 @@ }, /area/awaymission/caves/BMP_asteroid/level_two) "ff" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14" }, @@ -1647,9 +1607,7 @@ name = "\improper MECH TUNNEL PASSAGE A1 TO A2"; pixel_x = -32 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14" }, @@ -1660,9 +1618,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid) "fr" = ( -/obj/machinery/light/small/built{ - dir = 1 - }, +/obj/machinery/light/small/built/directional/north, /obj/structure/spider/stickyweb, /mob/living/simple_animal/hostile/poison/giant_spider/hunter, /turf/open/floor/plasteel, @@ -1738,7 +1694,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid) "fE" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14" }, @@ -1783,9 +1739,7 @@ /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid) "fM" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/awaymission/caves/BMP_asteroid) "fN" = ( @@ -1793,9 +1747,7 @@ /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) "fO" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/dark{ initial_gas_mix = "n2=23;o2=14" }, @@ -1891,9 +1843,7 @@ }, /area/awaymission/caves/BMP_asteroid/level_two) "ge" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14" }, @@ -2010,9 +1960,7 @@ /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) "gA" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/dark{ initial_gas_mix = "n2=23;o2=14" }, @@ -2037,9 +1985,7 @@ }, /area/awaymission/caves/BMP_asteroid) "gE" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel{ initial_gas_mix = "n2=23;o2=14" }, @@ -2129,9 +2075,7 @@ }, /area/awaymission/caves/BMP_asteroid) "gT" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) "gU" = ( diff --git a/_maps/RandomZLevels/challenge.dmm b/_maps/RandomZLevels/challenge.dmm index 44e207a8a350..e69d07f5780f 100644 --- a/_maps/RandomZLevels/challenge.dmm +++ b/_maps/RandomZLevels/challenge.dmm @@ -164,9 +164,7 @@ /turf/open/floor/plating/airless, /area/awaymission/challenge/main) "aJ" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/airless, /area/awaymission/challenge/main) "aK" = ( @@ -178,9 +176,7 @@ /turf/open/floor/plasteel/airless, /area/awaymission/challenge/main) "aM" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/airless, /area/awaymission/challenge/main) "aN" = ( @@ -220,9 +216,7 @@ /turf/open/floor/plating/airless, /area/awaymission/challenge/main) "aU" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/airless, /area/awaymission/challenge/main) "aV" = ( @@ -332,14 +326,14 @@ /turf/open/floor/plating, /area/awaymission/challenge/main) "bj" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/challenge/main) "bk" = ( /obj/machinery/power/emitter/ctf{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/challenge/main) "bl" = ( @@ -374,9 +368,7 @@ /turf/open/floor/plating, /area/awaymission/challenge/main) "bp" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/awaymission/challenge/main) "bq" = ( @@ -444,16 +436,12 @@ /turf/open/floor/plating/airless, /area/awaymission/challenge/main) "by" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel, /area/awaymission/challenge/main) "bz" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel, /area/awaymission/challenge/main) @@ -581,9 +569,7 @@ /area/awaymission/challenge/main) "bR" = ( /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/recharger{ pixel_y = 4 }, @@ -603,7 +589,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/airless, /area/awaymission/challenge/main) "bU" = ( @@ -616,13 +602,11 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/airless, /area/awaymission/challenge/main) "bW" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/filingcabinet, /turf/open/floor/carpet, /area/awaymission/challenge/end) @@ -645,9 +629,7 @@ /turf/open/floor/wood, /area/awaymission/challenge/end) "ca" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/rack, /obj/item/clothing/suit/armor/heavy, /turf/open/floor/wood, @@ -659,7 +641,7 @@ /obj/structure/chair{ dir = 1 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ name = "Station Intercom (General)"; pixel_y = 28 }, @@ -681,7 +663,7 @@ /turf/open/floor/plating, /area/awaymission/challenge/end) "cg" = ( -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ name = "Station Intercom (General)"; pixel_x = -27 }, @@ -822,15 +804,11 @@ /turf/open/floor/circuit, /area/awaymission/challenge/end) "cD" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/circuit, /area/awaymission/challenge/end) "cE" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/circuit, /area/awaymission/challenge/end) "cF" = ( @@ -838,9 +816,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/challenge/end) "cG" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/circuit, /area/awaymission/challenge/end) "cH" = ( @@ -1134,7 +1110,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/challenge/end) "do" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/circuit, /area/awaymission/challenge/end) "dp" = ( diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index afc3df9026fd..1209466f4d99 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -72,6 +72,16 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/hive) +"aq" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/generic, +/obj/effect/turf_decal/corner/transparent/neutral, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) "as" = ( /obj/structure/alien/weeds, /obj/structure/alien/resin/wall, @@ -163,22 +173,6 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/hive) -"aN" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) -"aR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) "aS" = ( /obj/item/stack/ore/iron{ pixel_x = 7; @@ -230,6 +224,14 @@ }, /turf/open/floor/plasteel/dark, /area/awaymission/moonoutpost19/syndicate) +"bf" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/awaymission/moonoutpost19/arrivals) "bj" = ( /obj/structure/alien/weeds, /obj/structure/bed/nest, @@ -246,18 +248,6 @@ "bl" = ( /turf/closed/mineral/random/high_chance, /area/awaymission/moonoutpost19/hive) -"bv" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/freezer{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) "bw" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" @@ -266,15 +256,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"bA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) "bB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ @@ -286,29 +267,45 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"bE" = ( -/obj/machinery/light{ +"bF" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/syndicate) +"bH" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25; - req_access = null; - req_access_txt = "150" +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_x = 32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ +/turf/open/floor/plating{ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"bF" = ( -/obj/structure/toilet{ +"bJ" = ( +/obj/structure/closet/l3closet, +/obj/machinery/light/small/broken/directional/south, +/obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, -/turf/open/floor/plasteel/freezer{ +/obj/effect/turf_decal/corner/opaque/white{ + dir = 4 + }, +/turf/open/floor/plasteel{ heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/syndicate) +/area/awaymission/moonoutpost19/research) +"bK" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "bO" = ( /obj/machinery/door/airlock/public/glass{ name = "Break Room" @@ -431,6 +428,17 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"cz" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/corner/opaque/purple, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "cD" = ( /obj/machinery/mineral/processing_unit_console{ machinedir = 8 @@ -448,6 +456,13 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/syndicate) +"cH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) "cR" = ( /turf/open/floor/plasteel{ dir = 8; @@ -557,48 +572,6 @@ }, /turf/closed/wall, /area/awaymission/moonoutpost19/syndicate) -"dh" = ( -/obj/structure/chair/wood, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25; - req_access = null; - req_access_txt = "150" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/syndicate) -"di" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/syndicate) -"dj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) -"dk" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25; - req_access = null; - req_access_txt = "150" - }, -/turf/open/floor/wood{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) "do" = ( /turf/open/floor/plasteel{ dir = 8; @@ -658,16 +631,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"dt" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "150" - }, -/obj/item/spacecash/bundle/c50, -/turf/open/floor/wood{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) "du" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ @@ -795,13 +758,6 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/main) -"dL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/awaymission/moonoutpost19/syndicate) "dM" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/airless, @@ -863,36 +819,26 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/main) -"dV" = ( -/obj/structure/alien/weeds/node, -/obj/structure/alien/resin/wall, -/turf/open/floor/plating/asteroid{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dW" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, +"dU" = ( +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/syndicate) -"dY" = ( -/obj/machinery/light/small, +/area/awaymission/moonoutpost19/arrivals) +"dV" = ( +/obj/structure/alien/weeds/node, +/obj/structure/alien/resin/wall, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/main) "dZ" = ( /turf/closed/wall/r_wall/rust, /area/awaymission/moonoutpost19/research) @@ -963,18 +909,6 @@ /obj/structure/alien/weeds, /turf/open/floor/engine, /area/awaymission/moonoutpost19/research) -"eo" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/structure/alien/weeds, -/obj/structure/alien/egg/burst, -/obj/machinery/camera{ - c_tag = "Xenobiology Containment North"; - network = list("mo19x") - }, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) "ep" = ( /obj/machinery/sparker{ desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating."; @@ -1007,15 +941,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"ev" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "eA" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, @@ -1024,6 +949,15 @@ /obj/structure/alien/weeds/node, /turf/open/floor/engine, /area/awaymission/moonoutpost19/research) +"eC" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "eF" = ( /obj/structure/alien/weeds, /obj/structure/bed/nest, @@ -1054,36 +988,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"fg" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 25; - req_access = null - }, -/obj/structure/alien/weeds, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) -"fh" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/structure/alien/weeds, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "fi" = ( /obj/structure/closet/crate/freezer, /obj/structure/alien/weeds, @@ -1109,46 +1013,23 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"fn" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/processor, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 25; - req_access = null - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/awaymission/moonoutpost19/arrivals) "fp" = ( /obj/structure/alien/weeds, /obj/structure/bed/nest, /obj/effect/mob_spawn/facehugger, /turf/open/floor/engine, /area/awaymission/moonoutpost19/research) -"fB" = ( -/obj/structure/closet/crate/bin, -/obj/item/clothing/gloves/color/latex, -/obj/item/trash/chips, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 +"fq" = ( +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -25; + req_access = null }, -/turf/open/floor/plasteel{ +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/arrivals) "fF" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; @@ -1198,18 +1079,6 @@ /obj/structure/alien/weeds, /turf/open/floor/engine, /area/awaymission/moonoutpost19/research) -"fK" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/structure/alien/weeds, -/obj/machinery/camera{ - c_tag = "Xenobiology Containment East"; - dir = 8; - network = list("mo19x") - }, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) "fL" = ( /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating{ @@ -1334,14 +1203,6 @@ icon_state = "platingdmg3" }, /area/awaymission/moonoutpost19/research) -"gy" = ( -/obj/machinery/light/small, -/obj/structure/closet/toolcloset, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "gz" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating{ @@ -1379,27 +1240,6 @@ /obj/structure/alien/weeds, /turf/open/floor/plasteel/white, /area/awaymission/moonoutpost19/research) -"gI" = ( -/obj/structure/table, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/structure/alien/weeds, -/turf/open/floor/plasteel/white, -/area/awaymission/moonoutpost19/research) -"gJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_social, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_queen, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_adult, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_psych, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/facehugger, -/obj/structure/alien/weeds, -/turf/open/floor/plasteel/white, -/area/awaymission/moonoutpost19/research) "gL" = ( /obj/structure/table, /obj/machinery/reagentgrinder, @@ -1462,16 +1302,6 @@ /obj/structure/alien/weeds, /turf/open/floor/engine, /area/awaymission/moonoutpost19/research) -"hb" = ( -/obj/machinery/light/broken, -/obj/structure/alien/weeds, -/obj/machinery/camera{ - c_tag = "Xenobiology Containment South"; - dir = 1; - network = list("mo19x") - }, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) "hc" = ( /obj/machinery/sparker{ desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating."; @@ -1483,20 +1313,6 @@ /obj/structure/alien/resin/wall, /turf/open/floor/engine, /area/awaymission/moonoutpost19/research) -"he" = ( -/obj/machinery/airalarm{ - pixel_y = 25; - req_access = null; - req_access_txt = "150" - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) "hj" = ( /turf/open/floor/plasteel/white{ heat_capacity = 1e+006 @@ -1510,6 +1326,15 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/hive) +"ho" = ( +/obj/machinery/airalarm/directional/east{ + req_access = null; + req_access_txt = "150" + }, +/turf/open/floor/wood{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/syndicate) "hp" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -1622,18 +1447,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"hP" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "hQ" = ( /obj/machinery/door/airlock{ name = "Unit 2" @@ -1683,31 +1496,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"hV" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/arrivals) -"hW" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/machinery/light/small/broken, -/obj/machinery/camera{ - c_tag = "Research Director's Office"; - dir = 1; - network = list("mo19","mo19r") - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/awaymission/moonoutpost19/research) "ie" = ( /obj/machinery/door/airlock/medical{ name = "Research Division"; @@ -1718,19 +1506,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"ij" = ( -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -25; - req_access = null - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "ik" = ( /obj/structure/sink{ dir = 8; @@ -1744,15 +1519,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"il" = ( -/obj/item/soap/nanotrasen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "im" = ( /turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 @@ -1782,17 +1548,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"iw" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "ix" = ( /obj/machinery/door/airlock{ name = "Unit 1" @@ -1824,17 +1579,12 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"iF" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer{ +"iC" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark{ heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/syndicate) "iG" = ( /obj/machinery/door/airlock{ name = "Private Restroom" @@ -2005,16 +1755,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"jv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" - }, -/area/awaymission/moonoutpost19/arrivals) "jw" = ( /obj/machinery/vending/snack, /obj/structure/sign/poster/contraband/eat{ @@ -2026,6 +1766,13 @@ icon_state = "floorscorched2" }, /area/awaymission/moonoutpost19/arrivals) +"jy" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "jA" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating{ @@ -2049,14 +1796,6 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/arrivals) -"jD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "jF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ @@ -2077,24 +1816,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"jJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) -"jK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "jL" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -2112,6 +1833,16 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"jN" = ( +/obj/machinery/space_heater, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/official/build{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "jO" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -2123,34 +1854,11 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"jZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/item/clothing/neck/tie/black, -/obj/item/clothing/under/suit/black, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel{ +"ka" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/arrivals) "ke" = ( @@ -2161,16 +1869,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"ki" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/warning{ - dir = 6 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "km" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -2194,13 +1892,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"kz" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "kA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/closed{ @@ -2279,26 +1970,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"kJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) -"kO" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "kP" = ( /obj/item/stack/rods, /obj/structure/grille/broken, @@ -2385,15 +2056,6 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/main) -"lj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/asteroid{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/arrivals) "lm" = ( /obj/machinery/door/airlock{ id_tag = "awaydorm1"; @@ -2408,20 +2070,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"lo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/chair/wood, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 25; - req_access = null - }, -/turf/open/floor/carpet{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "lp" = ( /turf/open/floor/plating{ heat_capacity = 1e+006; @@ -2511,16 +2159,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"lL" = ( -/obj/structure/table/wood, -/obj/item/lighter, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/carpet{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "lM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -2565,19 +2203,6 @@ /obj/item/clothing/suit/hooded/chaplain_hoodie, /turf/open/floor/plasteel/dark, /area/awaymission/moonoutpost19/arrivals) -"lU" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains. The skeleton is sitting upright with its legs tucked in and hands still holding onto its arms." - }, -/obj/item/gun/ballistic/shotgun/sc_pump, -/turf/open/floor/plasteel/showroomfloor{ - heat_capacity = 1e+006; - initial_temperature = 273.15 - }, -/area/awaymission/moonoutpost19/arrivals) "lW" = ( /obj/structure/table, /obj/item/storage/lockbox, @@ -2594,15 +2219,6 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/awaymission/moonoutpost19/arrivals) -"ma" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) "mb" = ( /turf/open/floor/mineral/titanium/blue, /area/awaymission/moonoutpost19/arrivals) @@ -2612,15 +2228,6 @@ }, /turf/open/floor/mineral/titanium/blue, /area/awaymission/moonoutpost19/arrivals) -"md" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) "me" = ( /obj/structure/closet/emcloset, /turf/open/floor/mineral/titanium/blue, @@ -2699,15 +2306,6 @@ /obj/item/storage/box/donkpockets, /turf/open/floor/mineral/titanium/blue, /area/awaymission/moonoutpost19/arrivals) -"mq" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) "mr" = ( /turf/open/floor/mineral/titanium/yellow, /area/awaymission/moonoutpost19/arrivals) @@ -2722,15 +2320,6 @@ /obj/effect/landmark/awaystart, /turf/open/floor/mineral/titanium/blue, /area/awaymission/moonoutpost19/arrivals) -"mu" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) "mv" = ( /obj/structure/sign/warning/vacuum{ desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; @@ -2741,22 +2330,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"my" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "awaydorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/carpet{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "mz" = ( /obj/structure/chair/wood{ dir = 8 @@ -2783,13 +2356,6 @@ }, /turf/open/floor/plasteel/dark, /area/awaymission/moonoutpost19/arrivals) -"mD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/chair/comfy/beige, -/turf/open/floor/plasteel/dark, -/area/awaymission/moonoutpost19/arrivals) "mE" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/bottle/whiskey{ @@ -2860,15 +2426,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"mO" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/arrivals) "mQ" = ( /obj/effect/decal/cleanable/blood/tracks{ desc = "Your instincts say you shouldn't be following these."; @@ -2907,19 +2464,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"mT" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 25; - req_access = null - }, -/turf/open/floor/carpet{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "mU" = ( /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating{ @@ -2932,20 +2476,6 @@ /obj/item/pen, /turf/open/floor/mineral/titanium/blue, /area/awaymission/moonoutpost19/arrivals) -"mW" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"mY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) "na" = ( /obj/structure/bed, /obj/item/bedsheet, @@ -3001,20 +2531,6 @@ /obj/structure/filingcabinet, /turf/open/floor/mineral/titanium/blue, /area/awaymission/moonoutpost19/arrivals) -"ng" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"nh" = ( -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) "ni" = ( /turf/open/floor/plasteel{ dir = 8; @@ -3024,19 +2540,6 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"nj" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged2"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) "nk" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/candy, @@ -3060,15 +2563,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"np" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/asteroid{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/arrivals) "nq" = ( /obj/effect/decal/cleanable/blood/tracks{ desc = "Your instincts say you shouldn't be following these."; @@ -3114,14 +2608,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"nA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "nB" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating{ @@ -3300,14 +2786,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"nU" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/carpet{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "nV" = ( /obj/structure/disposalpipe/segment, /obj/effect/spawner/structure/window/reinforced, @@ -3425,6 +2903,16 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/research) +"oI" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; + req_access_txt = "150" + }, +/obj/item/spacecash/bundle/c50, +/turf/open/floor/wood{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/syndicate) "oK" = ( /obj/structure/table, /obj/machinery/recharger{ @@ -3492,24 +2980,20 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"pu" = ( -/obj/structure/table, -/obj/item/cartridge/signal/toxins, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - pixel_y = 25 +"pC" = ( +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 9 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/obj/machinery/light/small/broken/directional/north, +/obj/effect/turf_decal/industrial/warning{ + dir = 9 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/turf/open/floor/plating{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/plasteel, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/syndicate) "pG" = ( /obj/effect/decal/cleanable/food/egg_smudge, /obj/effect/turf_decal/corner/opaque/white{ @@ -3520,6 +3004,16 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/arrivals) +"pR" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "qd" = ( /obj/machinery/power/port_gen/pacman/super{ name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" @@ -3576,20 +3070,20 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"qB" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 +"qK" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/space_cube{ + pixel_x = -32 }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/corner/opaque/purple, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 }, -/turf/open/floor/plasteel/white{ +/turf/open/floor/plasteel{ heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/syndicate) "qM" = ( /obj/item/stack/rods, /obj/item/shard{ @@ -3623,19 +3117,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"qO" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) "ra" = ( /obj/structure/alien/weeds, /obj/effect/turf_decal/corner/opaque/red, @@ -3651,6 +3132,16 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) +"rc" = ( +/obj/machinery/light/broken/directional/north, +/obj/structure/alien/weeds, +/obj/structure/alien/egg/burst, +/obj/machinery/camera{ + c_tag = "Xenobiology Containment North"; + network = list("mo19x") + }, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) "re" = ( /obj/effect/decal/cleanable/blood/tracks{ desc = "Your instincts say you shouldn't be following these."; @@ -3664,22 +3155,31 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"rg" = ( -/obj/structure/tank_dispenser/oxygen{ - oxygentanks = 9 +"ro" = ( +/obj/structure/table, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/newscaster/directional/north{ + pixel_y = -30 }, -/obj/machinery/light/small/broken{ +/obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 +/obj/effect/turf_decal/corner/opaque/white{ + dir = 4 }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) +"rr" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/toolcloset, +/obj/item/clothing/gloves/color/yellow, /turf/open/floor/plating{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 + heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/syndicate) +/area/awaymission/moonoutpost19/research) "rt" = ( /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ @@ -3708,6 +3208,15 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/research) +"rA" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "rB" = ( /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ @@ -3820,6 +3329,12 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"sk" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/syndicate) "sn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/closed{ @@ -3951,6 +3466,19 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"tH" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "tK" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4 @@ -4020,6 +3548,23 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/arrivals) +"un" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/table, +/obj/item/storage/box, +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -25; + req_access = null + }, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "ut" = ( /obj/structure/rack, /obj/item/clothing/suit/space/syndicate/orange, @@ -4082,23 +3627,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/arrivals) -"uO" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/syndicate) "uW" = ( /obj/effect/turf_decal/corner/opaque/purple{ dir = 8 @@ -4142,6 +3670,22 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) +"vx" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/unlocked{ + pixel_y = 25; + req_access = null + }, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "vF" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/industrial/warning/dust{ @@ -4167,6 +3711,12 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) +"wf" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "wi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -4201,6 +3751,19 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"wv" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/small/directional/west, +/obj/item/trash/cheesie, +/obj/item/trash/can, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "wz" = ( /obj/machinery/door/firedoor/closed{ opacity = 0 @@ -4212,6 +3775,34 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"wE" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/awaymission/moonoutpost19/arrivals) +"wI" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/obj/item/paper/fluff/awaymissions/moonoutpost19/welcome, +/obj/machinery/camera{ + c_tag = "Arrivals South"; + dir = 8; + network = list("mo19") + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "wN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/bar, @@ -4236,31 +3827,16 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"xc" = ( -/obj/machinery/button/door{ - id = "Awaybiohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -25; - req_access_txt = "201" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/computer/security{ - desc = "Used to access the various cameras on the outpost."; - dir = 4; - network = list("mo19r","mo19") - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 +"xi" = ( +/obj/structure/table/wood, +/obj/item/lighter, +/obj/machinery/newscaster/directional/north{ + pixel_x = 30 }, -/turf/open/floor/plasteel{ +/turf/open/floor/carpet{ heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/arrivals) "xk" = ( /obj/structure/rack, /obj/effect/decal/cleanable/dirt, @@ -4273,6 +3849,22 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) +"xl" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Bar"; + dir = 8; + network = list("mo19") + }, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "xm" = ( /obj/machinery/button/door{ id = "awaykitchen"; @@ -4288,27 +3880,35 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/arrivals) -"xB" = ( -/obj/machinery/light/small{ - dir = 8 +"xn" = ( +/obj/machinery/light/broken/directional/east, +/obj/machinery/airalarm/unlocked{ + dir = 8; + pixel_x = 25; + req_access = null }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/industrial/warning/dust{ - dir = 6 +/obj/effect/turf_decal/corner/opaque/purple, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 }, -/turf/open/floor/plating/airless, +/area/awaymission/moonoutpost19/research) +"xC" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/window/reinforced, +/turf/open/floor/mineral/titanium/yellow, /area/awaymission/moonoutpost19/arrivals) -"xK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +"xJ" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/obj/structure/sign/poster/contraband/hacking_guide{ - pixel_x = 32 +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 }, -/turf/open/floor/plating{ +/turf/open/floor/plasteel{ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) @@ -4339,6 +3939,13 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"yg" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "yD" = ( /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -4374,6 +3981,31 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"zj" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) +"zl" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light/small/broken/directional/west, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_social, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_queen, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_adult, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_psych, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/facehugger, +/obj/structure/alien/weeds, +/turf/open/floor/plasteel/white, +/area/awaymission/moonoutpost19/research) +"zs" = ( +/obj/machinery/light/small/broken/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "zy" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/industrial/warning/dust{ @@ -4381,6 +4013,23 @@ }, /turf/open/floor/plating/airless, /area/awaymission/moonoutpost19/main) +"zB" = ( +/obj/machinery/newscaster/directional/north{ + pixel_y = -30 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"zG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "zO" = ( /obj/item/cigbutt, /obj/effect/turf_decal/corner/transparent/bar, @@ -4424,22 +4073,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"Ag" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - icon_state = "ltrails_2" - }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "Ai" = ( /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -4597,6 +4230,18 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"BN" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/moonoutpost19/arrivals) "BQ" = ( /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 @@ -4620,18 +4265,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"Ch" = ( -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/awaymission/moonoutpost19/research) "Cz" = ( /obj/item/cigbutt, /obj/effect/decal/cleanable/dirt, @@ -4695,6 +4328,19 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) +"CU" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/structure/alien/weeds, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "CV" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -4709,6 +4355,16 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/research) +"CY" = ( +/obj/machinery/light/broken/directional/east, +/obj/structure/alien/weeds, +/obj/machinery/camera{ + c_tag = "Xenobiology Containment East"; + dir = 8; + network = list("mo19x") + }, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) "Db" = ( /obj/effect/decal/cleanable/blood/tracks{ desc = "Your instincts say you shouldn't be following these."; @@ -4721,6 +4377,12 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"Dp" = ( +/obj/structure/table, +/obj/machinery/light/small/broken/directional/east, +/obj/structure/alien/weeds, +/turf/open/floor/plasteel/white, +/area/awaymission/moonoutpost19/research) "DC" = ( /obj/effect/decal/cleanable/food/flour, /obj/effect/turf_decal/corner/opaque/white{ @@ -4760,6 +4422,13 @@ icon_state = "platingdmg1" }, /area/awaymission/moonoutpost19/research) +"En" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/syndicate) "Eq" = ( /obj/machinery/atmospherics/pipe/manifold{ dir = 4 @@ -4769,28 +4438,6 @@ }, /turf/open/floor/plasteel/white, /area/awaymission/moonoutpost19/research) -"Es" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/welcome, -/obj/machinery/camera{ - c_tag = "Arrivals South"; - dir = 8; - network = list("mo19") - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "Ev" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/industrial/warning{ @@ -4847,6 +4494,29 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) +"ET" = ( +/obj/machinery/button/door{ + id = "Awaybiohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -25; + req_access_txt = "201" + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/computer/security{ + desc = "Used to access the various cameras on the outpost."; + dir = 4; + network = list("mo19r","mo19") + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "EW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -4879,6 +4549,22 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) +"Ff" = ( +/obj/structure/table, +/obj/item/cartridge/signal/toxins, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/moonoutpost19/research) "Fg" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30 @@ -4904,16 +4590,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"Fx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/awaymission/moonoutpost19/arrivals) "FE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red{ @@ -4923,24 +4599,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"FF" = ( -/obj/machinery/light/small, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Arrivals North"; - dir = 1; - network = list("mo19") - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "FM" = ( /obj/structure/window/reinforced{ dir = 1 @@ -4987,6 +4645,19 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"Ga" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/airalarm/directional/north{ + req_access = null; + req_access_txt = "150" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 9 + }, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/syndicate) "Gb" = ( /obj/structure/table, /obj/effect/turf_decal/corner/opaque/white{ @@ -5009,23 +4680,11 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"Gf" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Bar"; - dir = 8; - network = list("mo19") - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 +"Gg" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/asteroid{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/arrivals) "Gn" = ( @@ -5041,6 +4700,22 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"Gy" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/small/broken/directional/north, +/obj/machinery/airalarm/unlocked{ + pixel_y = 25; + req_access = null + }, +/obj/item/paper/fluff/awaymissions/moonoutpost19/log/gerald, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/moonoutpost19/research) "GC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -5063,6 +4738,16 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) +"GN" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/freezer{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/syndicate) "GS" = ( /obj/item/newspaper, /obj/structure/cable{ @@ -5181,6 +4866,23 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"HZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"Ia" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel{ + dir = 8; + heat_capacity = 1e+006; + icon_state = "damaged2"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) "Ic" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red, @@ -5237,25 +4939,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"It" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/light/small/broken, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/evacuation, -/obj/machinery/camera{ - c_tag = "Research Division"; - dir = 1; - network = list("mo19","mo19r") - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "Iw" = ( /obj/structure/table, /obj/effect/turf_decal/corner/opaque/white{ @@ -5315,16 +4998,50 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"IP" = ( -/obj/machinery/light/small{ +"IO" = ( +/obj/machinery/newscaster/directional/north{ + pixel_y = -30 + }, +/obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/industrial/warning/dust{ - dir = 10 +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 }, -/turf/open/floor/plating/airless, -/area/awaymission/moonoutpost19/arrivals) +/turf/open/floor/plasteel, +/area/awaymission/moonoutpost19/research) +"Jd" = ( +/obj/structure/table, +/obj/item/storage/firstaid/fire, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) +"Je" = ( +/obj/machinery/light/small/broken/directional/west, +/obj/machinery/camera{ + c_tag = "Xenobiology"; + dir = 4; + network = list("mo19","mo19r") + }, +/obj/effect/turf_decal/corner/opaque/white, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "Jo" = ( /obj/structure/window/reinforced{ dir = 1 @@ -5370,6 +5087,13 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) +"JG" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "JI" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/industrial/warning/dust{ @@ -5408,49 +5132,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"JP" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 25; - req_access = null - }, -/obj/effect/turf_decal/corner/opaque/purple, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) -"JU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -25; - req_access = null - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) -"Ka" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "Kd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning/corner{ @@ -5460,9 +5141,21 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"Ke" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/warning, +"Ki" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/light/small/broken/directional/south, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/evacuation, +/obj/machinery/camera{ + c_tag = "Research Division"; + dir = 1; + network = list("mo19","mo19r") + }, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 8 + }, /turf/open/floor/plasteel/white{ heat_capacity = 1e+006 }, @@ -5561,36 +5254,39 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"Lo" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/airalarm{ - pixel_y = 25; +"Lg" = ( +/obj/machinery/airalarm/directional/east{ req_access = null; req_access_txt = "150" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 +/obj/machinery/light/broken/directional/east, +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 4 }, -/turf/open/floor/plating{ - heat_capacity = 1e+006 +/turf/open/floor/plasteel{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"LC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +"Ls" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 }, /obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 8; + c_tag = "Arrivals North"; + dir = 1; network = list("mo19") }, -/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/effect/turf_decal/corner/opaque/white, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 }, -/turf/open/floor/plasteel, /area/awaymission/moonoutpost19/arrivals) "LD" = ( /obj/effect/turf_decal/corner/transparent/neutral{ @@ -5649,35 +5345,29 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"LX" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 +"LI" = ( +/obj/structure/chair, +/obj/machinery/light/small/directional/east, +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"LV" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/machinery/light/small/broken/directional/south, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("mo19","mo19r") }, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 + dir = 2 }, +/turf/open/floor/plasteel, /area/awaymission/moonoutpost19/research) -"Mb" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "Mk" = ( /obj/machinery/computer/monitor/secret, /obj/effect/turf_decal/industrial/warning{ @@ -5738,6 +5428,17 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) +"Mx" = ( +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east{ + req_access = null; + req_access_txt = "150" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/syndicate) "MB" = ( /obj/item/radio/off, /obj/item/screwdriver{ @@ -5784,6 +5485,19 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/arrivals) +"MV" = ( +/obj/machinery/light/small/broken/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) "MY" = ( /obj/machinery/door/poddoor/preopen{ desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; @@ -5815,6 +5529,16 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) +"Nm" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/industrial/warning{ + dir = 6 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "Nn" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, @@ -5844,24 +5568,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/research) -"Ny" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 25; - req_access = null - }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/log/gerald, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/awaymission/moonoutpost19/research) "ND" = ( /obj/structure/window/reinforced{ dir = 8 @@ -5890,21 +5596,6 @@ }, /turf/open/floor/plating/airless, /area/awaymission/moonoutpost19/main) -"NS" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/trash/cheesie, -/obj/item/trash/can, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "NW" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5963,6 +5654,13 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) +"Or" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "Os" = ( /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ @@ -5988,23 +5686,38 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"OT" = ( -/obj/structure/table, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/machinery/newscaster{ - pixel_y = -30 +"OK" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 8; + network = list("mo19") }, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/white{ - dir = 4 + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/moonoutpost19/arrivals) +"OP" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/arrivals) +"OS" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating/asteroid{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/arrivals) "OY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -6025,6 +5738,57 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) +"Pc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"Pj" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/item/clothing/neck/tie/black, +/obj/item/clothing/under/suit/black, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"Pk" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 9; + icon_state = "ltrails_1" + }, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) "Pn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/loading, @@ -6035,6 +5799,20 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) +"Po" = ( +/obj/structure/closet/crate/bin, +/obj/item/clothing/gloves/color/latex, +/obj/item/trash/chips, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/north, +/obj/effect/turf_decal/corner/opaque/white, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "Pp" = ( /obj/structure/chair/office/light{ dir = 1; @@ -6058,21 +5836,6 @@ icon_state = "platingdmg3" }, /area/awaymission/moonoutpost19/research) -"Ps" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/awaymission/moonoutpost19/arrivals) "PG" = ( /obj/structure/cable{ icon_state = "2-8" @@ -6082,6 +5845,16 @@ icon_state = "panelscorched" }, /area/awaymission/moonoutpost19/syndicate) +"PI" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "PN" = ( /obj/structure/cable{ icon_state = "2-4" @@ -6127,6 +5900,11 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"Qj" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/chair/comfy/beige, +/turf/open/floor/plasteel/dark, +/area/awaymission/moonoutpost19/arrivals) "Qq" = ( /obj/effect/decal/cleanable/xenoblood, /obj/effect/decal/cleanable/xenoblood/xgibs, @@ -6176,6 +5954,13 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) +"QI" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/asteroid{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/arrivals) "QK" = ( /obj/structure/table, /obj/item/folder/red, @@ -6187,18 +5972,13 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"QL" = ( -/obj/machinery/space_heater, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/poster/official/build{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006 +"QS" = ( +/obj/machinery/newscaster/directional/north{ + pixel_y = 30 }, -/area/awaymission/moonoutpost19/research) +/obj/machinery/light/small/directional/north, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) "QZ" = ( /obj/structure/table, /obj/item/trash/plate, @@ -6210,18 +5990,12 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"Rj" = ( -/obj/machinery/door/firedoor, -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel{ +"Rd" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark{ heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/syndicate) "Rk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red{ @@ -6236,20 +6010,6 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"Rq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) "Rz" = ( /obj/machinery/vending/medical{ req_access_txt = "201" @@ -6280,6 +6040,14 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"RP" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel{ + dir = 8; + heat_capacity = 1e+006; + icon_state = "floorscorched1" + }, +/area/awaymission/moonoutpost19/arrivals) "RX" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/sand/plating, @@ -6355,6 +6123,20 @@ }, /turf/open/floor/plating/airless, /area/awaymission/moonoutpost19/main) +"SH" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + icon_state = "ltrails_2" + }, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "SI" = ( /obj/effect/turf_decal/industrial/warning/corner, /turf/open/floor/plasteel{ @@ -6372,6 +6154,17 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"SN" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/remains/human{ + desc = "They look like human remains. The skeleton is sitting upright with its legs tucked in and hands still holding onto its arms." + }, +/obj/item/gun/ballistic/shotgun/sc_pump, +/turf/open/floor/plasteel/showroomfloor{ + heat_capacity = 1e+006; + initial_temperature = 273.15 + }, +/area/awaymission/moonoutpost19/arrivals) "SQ" = ( /obj/machinery/power/terminal{ dir = 1 @@ -6448,16 +6241,12 @@ }, /turf/open/floor/plasteel, /area/awaymission/moonoutpost19/research) -"To" = ( -/obj/machinery/light/small{ - dir = 4 +"TA" = ( +/obj/machinery/newscaster/directional/north{ + pixel_x = 30 }, -/obj/effect/decal/cleanable/generic, -/obj/effect/turf_decal/corner/transparent/neutral, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/turf/open/floor/carpet{ + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "TL" = ( @@ -6489,24 +6278,6 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"TR" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 9; - icon_state = "ltrails_1" - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) "Ua" = ( /obj/structure/cable{ icon_state = "1-2" @@ -6515,26 +6286,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) -"Ub" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology"; - dir = 4; - network = list("mo19","mo19r") - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "Uc" = ( /obj/structure/cable{ icon_state = "1-2" @@ -6546,6 +6297,11 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"Ue" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/awaymission/moonoutpost19/syndicate) "Un" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning{ @@ -6555,18 +6311,15 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"Ut" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +"UE" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/chair/wood, +/obj/machinery/airalarm/unlocked{ + dir = 8; + pixel_x = 25; + req_access = null }, -/turf/open/floor/plasteel{ +/turf/open/floor/carpet{ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) @@ -6593,6 +6346,13 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) +"UT" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) "UV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6620,6 +6380,25 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"Vc" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/awaymission/moonoutpost19/arrivals) +"Vd" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) "Vg" = ( /obj/structure/table, /obj/item/book/manual/chef_recipes{ @@ -6676,21 +6455,24 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"VO" = ( -/obj/machinery/light/small{ - dir = 8 - }, +"Vz" = ( +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/space_cube{ - pixel_x = -32 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, +/area/awaymission/moonoutpost19/arrivals) +"VE" = ( +/obj/structure/chair/wood, +/obj/machinery/airalarm/directional/west{ + req_access = null; + req_access_txt = "150" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, /area/awaymission/moonoutpost19/syndicate) "VP" = ( /obj/effect/turf_decal/corner/transparent/neutral{ @@ -6744,16 +6526,16 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"Wr" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 +"Wn" = ( +/obj/machinery/light/broken/directional/south, +/obj/structure/alien/weeds, +/obj/machinery/camera{ + c_tag = "Xenobiology Containment South"; + dir = 1; + network = list("mo19x") }, -/area/awaymission/moonoutpost19/arrivals) +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) "Ww" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/port_gen/pacman/super{ @@ -6794,19 +6576,19 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"WF" = ( -/obj/structure/closet/l3closet, -/obj/machinery/light/small/broken, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +"WD" = ( +/obj/machinery/airalarm/directional/north{ + req_access = null; + req_access_txt = "150" }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 }, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, -/area/awaymission/moonoutpost19/research) +/area/awaymission/moonoutpost19/syndicate) "WL" = ( /obj/structure/disposalpipe/segment{ desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; @@ -6826,6 +6608,17 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"Xj" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/airalarm/unlocked{ + dir = 8; + pixel_x = 25; + req_access = null + }, +/turf/open/floor/carpet{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "Xm" = ( /obj/structure/table/reinforced, /obj/structure/alien/weeds, @@ -6878,12 +6671,10 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"XG" = ( +"Xv" = ( /obj/structure/table, /obj/machinery/cell_charger, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/item/stock_parts/cell/high, /obj/item/paper/fluff/awaymissions/moonoutpost19/engineering, /obj/effect/turf_decal/industrial/warning{ @@ -6960,24 +6751,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"Yd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 25; - req_access = null - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/arrivals) "Yh" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7009,26 +6782,6 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"Yp" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25; - req_access = null; - req_access_txt = "150" - }, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) "Yu" = ( /obj/structure/chair{ dir = 4 @@ -7046,6 +6799,26 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"YM" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating/asteroid{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/research) +"YO" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma, +/obj/machinery/light/small/broken/directional/north, +/obj/machinery/airalarm/unlocked{ + pixel_y = 25; + req_access = null + }, +/obj/structure/alien/weeds, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "YP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning{ @@ -7064,6 +6837,22 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) +"YU" = ( +/obj/machinery/light/directional/east, +/obj/machinery/processor, +/obj/machinery/airalarm/unlocked{ + dir = 8; + pixel_x = 25; + req_access = null + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/moonoutpost19/arrivals) "YX" = ( /obj/effect/turf_decal/corner/opaque/white{ dir = 8 @@ -7124,6 +6913,29 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"Zq" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "awaydorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/obj/machinery/newscaster/directional/north{ + pixel_y = 32 + }, +/turf/open/floor/carpet{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) +"Zt" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) "Zy" = ( /obj/structure/alien/weeds, /obj/effect/turf_decal/corner/opaque/purple, @@ -7206,6 +7018,23 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) +"ZQ" = ( +/obj/machinery/light/directional/west, +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/syndicate) +"ZV" = ( +/obj/machinery/door/firedoor, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "ZY" = ( /obj/structure/cable{ icon_state = "4-8" @@ -33070,9 +32899,9 @@ ba ba ld lX -mq +HZ mr -mW +LI lX ld ba @@ -33832,7 +33661,7 @@ yW se ST dZ -iF +rA iZ dZ zh @@ -33840,11 +33669,11 @@ eJ hI ba ld -ma +Pc mc mr mc -ng +cH ld ba ba @@ -34076,11 +33905,11 @@ ba ba ba eJ -QL +jN Ez fN fN -gy +rr eI Ez ea @@ -34092,7 +33921,7 @@ ea iG dZ ea -Mb +OP Jw hI ba @@ -34598,7 +34427,7 @@ gA eJ ws ea -pu +Ff MC IC Tm @@ -34611,11 +34440,11 @@ In io ba ld -md +QS ms mI ms -nh +zB ld ba ba @@ -34855,12 +34684,12 @@ eJ eI Ez ea -Ny +Gy MC oH CV Pp -hW +LV ea js GC @@ -35117,11 +34946,11 @@ IC MC Nt IC -Ch +IO ea jt GC -FF +Ls hI lc ld @@ -35383,9 +35212,9 @@ io ld lD lD -mu +UT mr -mY +xC lD lD ld @@ -35623,7 +35452,7 @@ ea JN Fg Yu -xc +ET IJ fV Kz @@ -35888,9 +35717,9 @@ uW hu Zk is -Ke +JG ea -jv +RP GC In io @@ -36398,14 +36227,14 @@ fV fV fV Kz -It +Ki eI ea dZ dZ ea hJ -Yd +vx Ob hI hI @@ -36420,7 +36249,7 @@ hI hI hI hI -IP +bf ba ba ba @@ -36647,7 +36476,7 @@ ee eu Qa Hf -Ag +SH RN Db re @@ -36674,7 +36503,7 @@ sw sw YP zZ -nA +bK nK Wf Iy @@ -36901,14 +36730,14 @@ ba ba eb ef -ev +zs Vu BR Zy Gn -qB +cz TL -JP +xn hj hj hj @@ -36926,7 +36755,7 @@ lg SI yO Un -Es +wI yO yO yO @@ -37155,7 +36984,7 @@ ba ba ba ba -dY +YM ea ea dZ @@ -37173,12 +37002,12 @@ Wm ZO ea HD -ki +Nm eI Zz Zp jF -kO +Or Jx Bq io @@ -37191,7 +37020,7 @@ hI nB nL hI -Fx +wE ba ba ba @@ -37434,13 +37263,13 @@ ea ea hI ub -kz +jy hJ hJ hJ io ba -mO +Gg ba ba ba @@ -37674,7 +37503,7 @@ ba ba ba ea -fg +YO uD eu Ix @@ -37931,18 +37760,18 @@ ba ba ba dZ -fh +CU Yh ee Hv fk KT dZ -fB +Po hj hj hj -WF +bJ dZ ba ba @@ -38192,14 +38021,14 @@ fi Yh ee Xp -gI +Dp WB ea Qa hz hj hF -OT +ro ea ba ba @@ -38447,13 +38276,13 @@ eg eI NI Ev -Rj +ZV eJ eI eJ ea Tj -LX +Jd Sb Gb Iw @@ -38701,12 +38530,12 @@ ba dZ tK tK -Ub +Je fk af fk gr -gJ +zl gW ea dZ @@ -38716,12 +38545,12 @@ ea dZ ea ba -hV +ka hI -Rq +dU kE hI -lj +QI ba ba ba @@ -38985,7 +38814,7 @@ ba ba ba ba -np +OS ba nC ja @@ -39757,7 +39586,7 @@ hI hI hJ hJ -jZ +Pj nF kE kB @@ -39955,7 +39784,7 @@ ac ac ac aU -bv +GN bF aU LF @@ -39999,18 +39828,18 @@ ba ba ba ba -hV +ka hJ jb -jD +wf BI jF qf -qO +Vd LD LD LD -TR +Pk Kv ni nq @@ -40269,13 +40098,13 @@ Wk wb mQ kF -nj +Ia Wk ux wb Hz BQ -To +aq TQ jC ba @@ -40468,7 +40297,7 @@ ac ac aU bd -VO +qK YQ wo aU @@ -40480,10 +40309,10 @@ Nc Jy Bu aU -rg +pC Hn aU -dL +Ue ba ba ba @@ -40535,7 +40364,7 @@ hJ hI hI hJ -lj +QI ba ba ba @@ -40755,7 +40584,7 @@ ba ba ba ec -eo +rc eq eq eq @@ -40763,7 +40592,7 @@ fJ eq eq en -hb +Wn ec ba ba @@ -40780,7 +40609,7 @@ kT ln lK hJ -my +Zq mS na hJ @@ -40982,14 +40811,14 @@ ac ac aU aU -he +WD Fj vw bP Wx fI Ic -Yp +Lg cX Ic do @@ -41034,18 +40863,18 @@ jF BI hI kU -lo -lL +UE +xi hJ mz -mT +Xj nb hJ nr hI nI ln -nU +TA hJ ba ba @@ -41239,7 +41068,7 @@ ac ac ac aU -uO +xJ NY Nn aU @@ -41282,13 +41111,13 @@ ea ba ba hI -hP +zG hJ -iw +eC hJ jg jF -Ka +pR hI hJ hJ @@ -41750,11 +41579,11 @@ ac at Fe FE -aN +Rd QE uB Qv -bA +ZQ rt at cd @@ -41762,7 +41591,7 @@ ca ZM aU cZ -dh +VE dq aU ac @@ -41787,7 +41616,7 @@ el eH eB fp -fK +CY eH eH eq @@ -41797,13 +41626,13 @@ ba ba hI hR -ij +fq im iz jh jF jG -kJ +yg hJ hJ lN @@ -42019,7 +41848,7 @@ ca We cT da -di +En dr aU ac @@ -42315,7 +42144,7 @@ hI iy hJ hI -jJ +Vz jG jG UW @@ -42533,7 +42362,7 @@ Pa ZM cU db -dj +sk ds aU ac @@ -42568,11 +42397,11 @@ ba ba hI hT -il +zj iz iP hI -jK +Zt jF jF JJ @@ -42778,20 +42607,20 @@ ac at nd oS -aR +iC HK Os rD -bE +Mx Iq at -dW +MV rB ra aU dc -dk -dt +ho +oI aU ac ac @@ -42840,7 +42669,7 @@ ba ba JI NK -xB +Vc ba ba ba @@ -43299,7 +43128,7 @@ ac ac at sJ -XG +Xv KL Gd at @@ -43342,12 +43171,12 @@ hI hJ hJ hJ -NS +wv AO AO AO Te -JU +un AO Xt mB @@ -44069,7 +43898,7 @@ ac ac ac at -Lo +Ga Kd PG oh @@ -44112,15 +43941,15 @@ ba ba io Aa -Ut +tH AO zO AO tF AO -Gf +xl AO -Wr +PI hI hJ ba @@ -44327,7 +44156,7 @@ ac ac at vu -xK +bH ZI RL at @@ -44366,7 +44195,7 @@ ba ba ba ba -hV +ka hJ hJ iT @@ -44892,7 +44721,7 @@ yD xm lR lS -mD +Qj io ba ba @@ -45659,13 +45488,13 @@ yD DC pG yD -LC +OK yD lT ml hI hI -lj +QI ba ba ba @@ -45912,9 +45741,9 @@ ba ba hI gL -Ps +BN MK -fn +YU uJ hJ lu @@ -46689,7 +46518,7 @@ ba ba hI lx -lU +SN mo hI ba diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm index 541aea27580b..e354a8b00c03 100644 --- a/_maps/RandomZLevels/research.dmm +++ b/_maps/RandomZLevels/research.dmm @@ -274,9 +274,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/engineering) "aW" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/tank_dispenser, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -293,13 +291,8 @@ /turf/open/floor/plating/asteroid/airless, /area/space/nearstation) "aZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 4 @@ -382,7 +375,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/engineering) "bj" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/asteroid/airless, /area/awaymission/research/exterior) "bk" = ( @@ -671,9 +664,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/engineering) "bO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, @@ -776,15 +767,11 @@ }, /area/awaymission/research/interior/engineering) "ch" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/awaymission/research/interior/maint) "ci" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/window/reinforced, /obj/structure/closet/emcloset, /turf/open/floor/plasteel/dark, @@ -835,10 +822,7 @@ "ct" = ( /obj/structure/table, /obj/item/storage/firstaid/regular, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/gateway) "cx" = ( @@ -917,9 +901,7 @@ id = "cryopodg2"; name = "panic lockdown button" }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -934,9 +916,7 @@ /area/awaymission/research/interior/genetics) "cI" = ( /obj/machinery/computer/scan_consolenew, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -1246,9 +1226,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "dq" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -1322,9 +1300,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/genetics) "dv" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -1373,9 +1349,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "dC" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/awaymission/research/interior/maint) "dD" = ( @@ -1393,9 +1367,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/security) "dE" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -1427,9 +1399,7 @@ /obj/structure/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -1475,9 +1445,7 @@ /obj/item/clothing/suit/armor/vest/bulletproof, /obj/item/clothing/head/helmet/bulletproof, /obj/item/clothing/head/helmet/bulletproof, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -1491,9 +1459,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/security) "dK" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "dL" = ( @@ -1687,9 +1653,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "ej" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 8 @@ -1707,9 +1671,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "el" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, @@ -1786,9 +1748,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/security) "er" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "es" = ( @@ -1816,9 +1776,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/cryo) "ew" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -1828,9 +1786,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/cryo) "ex" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -1855,9 +1811,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/cryo) "ez" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -1870,9 +1824,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/cryo) "eA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -1999,7 +1951,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "eP" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/awaymission/research/interior/maint) "eQ" = ( @@ -2030,10 +1982,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/security) "eT" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "eU" = ( @@ -2049,15 +1998,11 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "eX" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/awaymission/research/interior) "eY" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/awaymission/research/interior) "eZ" = ( @@ -2074,9 +2019,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "fb" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -2135,9 +2078,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/cryo) "fi" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/purple, /obj/effect/turf_decal/corner/opaque/purple{ dir = 4 @@ -2194,9 +2135,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/security) "fu" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ dir = 8 @@ -2213,22 +2152,16 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/security) "fz" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "fA" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /mob/living/simple_animal/hostile/nanotrasen/ranged/smg, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "fB" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -2471,9 +2404,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/security) "gc" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -2581,9 +2512,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/cryo) "gz" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -2597,9 +2526,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "gA" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -2647,9 +2574,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "gG" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -2663,9 +2588,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "gH" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -2680,9 +2603,7 @@ /area/awaymission/research/interior) "gI" = ( /obj/structure/barricade/security, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -2972,11 +2893,11 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/security) "hs" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "ht" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/purple, /obj/effect/turf_decal/corner/opaque/purple{ dir = 4 @@ -3000,7 +2921,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/cryo) "hv" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -3291,7 +3212,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "ih" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -3398,18 +3319,14 @@ /turf/open/floor/plasteel/freezer, /area/awaymission/research/interior/bathroom) "ir" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plating, /area/awaymission/research/interior/maint) "is" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ dir = 8 @@ -3473,18 +3390,14 @@ dir = 8 }, /obj/effect/landmark/awaystart, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/freezer, /area/awaymission/research/interior/bathroom) "iD" = ( /turf/closed/wall, /area/awaymission/research/interior) "iE" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -3497,7 +3410,7 @@ /obj/machinery/computer/scan_consolenew{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -3517,10 +3430,7 @@ id = "cryopodg1"; name = "panic lockdown button" }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -3550,9 +3460,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/genetics) "iJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/freezer, /area/awaymission/research/interior/bathroom) "iK" = ( @@ -3560,9 +3468,7 @@ /turf/open/floor/plasteel/freezer, /area/awaymission/research/interior/bathroom) "iL" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/freezer, /area/awaymission/research/interior/bathroom) "iM" = ( @@ -3598,9 +3504,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/maint) "iS" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/awaymission/research/interior/maint) "iW" = ( @@ -3616,9 +3520,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/dorm) "iZ" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/blue, /turf/open/floor/plasteel/white, /area/awaymission/research/interior/medbay) @@ -3640,9 +3542,7 @@ /area/awaymission/research/interior/medbay) "jc" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/blue, /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -3713,9 +3613,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/dorm) "jo" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/spline/plain/opaque/yellow{ dir = 1 }, @@ -3869,9 +3767,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/medbay) "jB" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, @@ -3882,9 +3778,7 @@ /area/awaymission/research/interior/medbay) "jC" = ( /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/awaymission/research/interior/dorm) "jD" = ( @@ -3934,9 +3828,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "jJ" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, @@ -3954,9 +3846,7 @@ /turf/closed/wall/r_wall, /area/awaymission/research/interior) "jM" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, @@ -3970,9 +3860,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "jN" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, @@ -4301,7 +4189,7 @@ /area/awaymission/research/interior/medbay) "ky" = ( /obj/structure/table, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, @@ -4414,9 +4302,7 @@ /area/awaymission/research/interior/dorm) "kV" = ( /obj/structure/closet/wardrobe/grey, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/spline/plain/opaque/yellow{ dir = 4 }, @@ -4580,9 +4466,7 @@ "ll" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, @@ -4592,9 +4476,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/medbay) "lm" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/spline/plain/opaque/yellow{ dir = 8 }, @@ -4720,7 +4602,7 @@ /turf/open/floor/plasteel, /area/awaymission/research/interior/dorm) "lz" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/spline/plain/opaque/yellow, /turf/open/floor/plasteel, /area/awaymission/research/interior/dorm) @@ -4737,7 +4619,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/medbay) "lD" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, @@ -4824,10 +4706,7 @@ dir = 1; layer = 2.9 }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/spline/plain/opaque/yellow{ dir = 4 }, @@ -4957,9 +4836,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/escapepods) "ml" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 @@ -5074,9 +4951,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -5089,9 +4964,7 @@ /turf/closed/wall, /area/awaymission/research/exterior) "mC" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 @@ -5133,7 +5006,7 @@ /area/awaymission/research/interior/escapepods) "mG" = ( /obj/structure/table, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -5228,9 +5101,7 @@ /area/awaymission/research/interior/escapepods) "mQ" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 @@ -5256,7 +5127,7 @@ /obj/structure/sign/warning/vacuum{ pixel_y = -32 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -5266,7 +5137,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/escapepods) "mV" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -5288,10 +5159,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/escapepods) "mX" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -5429,9 +5297,7 @@ /turf/open/floor/plating, /area/awaymission/research/interior/security) "rb" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/cable{ icon_state = "2-8" }, @@ -5772,9 +5638,7 @@ /area/awaymission/research/interior/security) "zB" = ( /obj/effect/decal/cleanable/blood/drip, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/cable{ icon_state = "1-2" }, @@ -5872,9 +5736,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/security) "Dj" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/cable{ icon_state = "1-2" }, @@ -5932,9 +5794,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "Eh" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -6004,7 +5864,7 @@ /turf/open/floor/plating, /area/awaymission/research/interior/maint) "Hb" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable{ icon_state = "4-8" }, @@ -6038,9 +5898,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/security) "Jz" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/cable{ icon_state = "2-4" }, @@ -6133,7 +5991,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/gateway) "ND" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable{ icon_state = "1-8" }, @@ -6198,9 +6056,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "OF" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/cable{ icon_state = "4-8" }, @@ -6219,9 +6075,7 @@ /turf/open/floor/plating, /area/awaymission/research/interior/maint) "PD" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/cable{ icon_state = "1-8" }, @@ -6258,9 +6112,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior) "Qv" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/window/reinforced, /obj/structure/cable{ icon_state = "1-2" @@ -6296,9 +6148,7 @@ /turf/open/floor/plating, /area/awaymission/research/interior/gateway) "Ru" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, @@ -6451,9 +6301,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/gateway) "VZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -6543,9 +6391,7 @@ /turf/open/floor/plating, /area/awaymission/research/interior/genetics) "XZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/cable{ icon_state = "2-4" }, diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm index 868dd4e5d487..347aa49a5172 100644 --- a/_maps/RandomZLevels/snowdin.dmm +++ b/_maps/RandomZLevels/snowdin.dmm @@ -65,9 +65,7 @@ /area/awaymission/snowdin/post/research) "as" = ( /obj/effect/turf_decal/weather/snow, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/dark/snowdin, /area/awaymission/snowdin/cave) "at" = ( @@ -76,9 +74,7 @@ /area/awaymission/snowdin/cave) "au" = ( /obj/effect/turf_decal/weather/snow, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/dark/snowdin, /area/awaymission/snowdin/cave) "av" = ( @@ -91,9 +87,7 @@ /area/awaymission/snowdin/post/research) "ax" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/post/research) "ay" = ( @@ -106,9 +100,7 @@ /area/awaymission/snowdin/post/research) "aA" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/disk/holodisk/snowdin/weregettingpaidright, /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/post/research) @@ -338,9 +330,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "bk" = ( @@ -348,9 +338,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/item/paper/crumpled/ruins/snowdin/foreshadowing, /turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) @@ -370,9 +358,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "bn" = ( @@ -380,9 +366,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood{ icon_state = "wood-broken" }, @@ -672,9 +656,7 @@ "ca" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/spider/stickyweb, -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plasteel/freezer, /area/awaymission/snowdin/post/kitchen) "cb" = ( @@ -696,18 +678,14 @@ /area/awaymission/snowdin/post/kitchen) "ce" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/closet/crate{ icon_state = "crateopen" }, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/kitchen) "cf" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/structure/spider/stickyweb, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, @@ -748,13 +726,11 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/kitchen) "cm" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating, @@ -977,9 +953,7 @@ icon_state = "crateopen"; name = "explosives ordinance" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/dark/snowdin, /area/awaymission/snowdin/cave) "cV" = ( @@ -1038,10 +1012,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -1084,7 +1055,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/research) "dl" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/snowdin/post/research) @@ -1157,9 +1128,7 @@ /turf/open/floor/plasteel/dark/snowdin, /area/awaymission/snowdin/cave) "dz" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "dA" = ( @@ -1182,7 +1151,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/dorm) "dG" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "dH" = ( @@ -1289,9 +1258,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "dZ" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/carpet, /area/awaymission/snowdin/post/dorm) "ea" = ( @@ -1337,9 +1304,7 @@ "eg" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/trash/cheesie, /turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) @@ -1417,7 +1382,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/research) "eo" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -1466,10 +1431,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/kitchen) "eA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/kitchen) "eB" = ( @@ -1643,9 +1605,7 @@ /area/awaymission/snowdin/post) "fe" = ( /obj/structure/rack, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/item/storage/toolbox/emergency, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -1746,13 +1706,8 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "fD" = ( @@ -1815,9 +1770,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "fU" = ( -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "fW" = ( @@ -1921,9 +1874,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "gl" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/space_heater, /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) @@ -1956,16 +1907,12 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post) "gv" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/gateway) "gz" = ( -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/gateway) "gC" = ( @@ -2057,9 +2004,7 @@ /area/awaymission/snowdin/post/garage) "gQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2104,9 +2049,7 @@ /turf/closed/wall/mineral/diamond, /area/awaymission/snowdin/cave/cavern) "gX" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/carpet, /area/awaymission/snowdin/post/dorm) "gY" = ( @@ -2572,10 +2515,7 @@ /area/awaymission/snowdin/post) "iz" = ( /obj/structure/table, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/item/paper_bin, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/gateway) @@ -2651,15 +2591,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/garage) "iP" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4; @@ -2760,9 +2696,7 @@ /area/awaymission/snowdin/post/garage) "iX" = ( /obj/structure/table, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "iY" = ( @@ -2799,7 +2733,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/outside) "ji" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) @@ -3255,15 +3189,11 @@ /area/awaymission/snowdin/post/custodials) "kE" = ( /obj/structure/table, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/post/custodials) "kI" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post) "kN" = ( @@ -3338,15 +3268,11 @@ /area/awaymission/snowdin/post/garage) "la" = ( /obj/structure/filingcabinet, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/garage) "lb" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ piping_layer = 3; pixel_x = 5; @@ -3374,9 +3300,8 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/dorm) @@ -3394,9 +3319,7 @@ /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/dorm) "lg" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/dorm) "lh" = ( @@ -3414,7 +3337,7 @@ pixel_y = 5 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken, +/obj/machinery/light/small/broken/directional/south, /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/dorm) "lj" = ( @@ -3844,9 +3767,8 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -3995,9 +3917,7 @@ }, /area/awaymission/snowdin/post/hydro) "mx" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5; @@ -4044,7 +3964,7 @@ /obj/structure/toilet{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/dorm) @@ -4067,10 +3987,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -4163,7 +4080,7 @@ /area/awaymission/snowdin/post/garage) "mW" = ( /obj/structure/table, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/garage) @@ -4204,7 +4121,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -4227,10 +4144,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post) "nh" = ( @@ -4335,7 +4249,7 @@ /area/awaymission/snowdin/post/hydro) "nv" = ( /obj/machinery/vending/hydroseeds, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "nz" = ( @@ -4437,9 +4351,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "nZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/post/garage) "oa" = ( @@ -4539,10 +4451,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) "ot" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) "ou" = ( @@ -4669,7 +4578,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) "oT" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) "oU" = ( @@ -4711,9 +4620,7 @@ /turf/open/floor/plasteel/grimy, /area/awaymission/snowdin/post/cavern2) "pc" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/grimy, /area/awaymission/snowdin/post/cavern2) "pd" = ( @@ -4721,9 +4628,8 @@ /turf/open/floor/plasteel/grimy, /area/awaymission/snowdin/post/cavern2) "ph" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -4735,7 +4641,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/secpost) "pl" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/item/crowbar, /obj/structure/noticeboard{ dir = 1; @@ -4802,9 +4708,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high/plus, @@ -5079,9 +4983,7 @@ /obj/structure/sign/nanotrasen{ pixel_x = 32 }, -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/post/cavern2) "qF" = ( @@ -5100,7 +5002,7 @@ "qJ" = ( /obj/structure/rack, /obj/item/storage/box/rubbershot, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/item/storage/box/rubbershot{ pixel_x = 2; pixel_y = 2 @@ -5133,9 +5035,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post) "qS" = ( @@ -5198,9 +5098,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/cavern2) "rg" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/engine/cult, /area/awaymission/snowdin/post/cavern2) "rh" = ( @@ -5224,7 +5122,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post) "rm" = ( @@ -5339,9 +5237,7 @@ /obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/engine/cult, /area/awaymission/snowdin/post/cavern2) "rD" = ( @@ -5358,9 +5254,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern2) "rF" = ( @@ -5399,9 +5293,8 @@ /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/post/engineering) "rJ" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/machinery/doorButtons/access_button{ idDoor = "snowdin_turbine_interior"; @@ -5420,9 +5313,7 @@ /turf/open/floor/engine, /area/awaymission/snowdin/post/engineering) "rL" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/binary/volume_pump{ name = "Mix To Turbine" }, @@ -5490,7 +5381,7 @@ /turf/open/floor/plating/airless, /area/awaymission/snowdin/post/engineering) "rX" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern2) "rY" = ( @@ -5572,7 +5463,7 @@ /turf/open/floor/plating/airless, /area/awaymission/snowdin/post/engineering) "si" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/airless, /area/awaymission/snowdin/post/engineering) "sj" = ( @@ -5584,9 +5475,7 @@ /turf/open/floor/plating/airless, /area/awaymission/snowdin/post/engineering) "sq" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/sign/nanotrasen{ pixel_x = 32 }, @@ -5785,7 +5674,7 @@ /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/cavern2) "tj" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/cavern2) "tk" = ( @@ -5998,9 +5887,7 @@ /turf/open/floor/wood, /area/awaymission/snowdin/post/cavern1) "uf" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/closet/cabinet, /turf/open/floor/wood{ icon_state = "wood-broken" @@ -6011,9 +5898,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "uh" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/spawner/lootdrop/crate_spawner, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) @@ -6116,9 +6001,7 @@ /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "uy" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "uA" = ( @@ -6165,9 +6048,7 @@ /turf/closed/wall/ice, /area/awaymission/snowdin/post/cavern1) "uJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/space_heater, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) @@ -6201,9 +6082,7 @@ /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "uR" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/post/cavern1) "uS" = ( @@ -6255,9 +6134,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "va" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "vb" = ( @@ -6318,9 +6195,7 @@ /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/cavern1) "vq" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "vs" = ( @@ -6338,9 +6213,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "vv" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plasteel/showroomfloor, /area/awaymission/snowdin/post/cavern1) @@ -6359,9 +6233,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "vz" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/post/cavern1) "vA" = ( @@ -6370,7 +6242,7 @@ /area/awaymission/snowdin/post/cavern1) "vC" = ( /obj/structure/rack, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "vD" = ( @@ -6463,9 +6335,8 @@ /area/awaymission/snowdin/post/broken_shuttle) "vS" = ( /obj/structure/chair, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) @@ -6523,9 +6394,7 @@ /obj/structure/chair{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "we" = ( @@ -6768,9 +6637,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "wI" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -6849,9 +6716,7 @@ /obj/structure/sign/warning/docking{ pixel_y = 32 }, -/obj/machinery/light/broken{ - dir = 1 - }, +/obj/machinery/light/broken/directional/north, /turf/open/floor/engine/cult, /area/awaymission/snowdin/post/mining_dock) "xa" = ( @@ -6880,9 +6745,7 @@ /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "xq" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /obj/effect/spawner/lootdrop/crate_spawner, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) @@ -6996,9 +6859,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 10 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "xV" = ( @@ -7017,9 +6878,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "yb" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) @@ -7052,9 +6912,7 @@ /turf/open/floor/engine/vacuum, /area/awaymission/snowdin/cave) "yj" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/closet/crate, /obj/item/relic, /obj/item/relic, @@ -7168,9 +7026,7 @@ dir = 1 }, /obj/machinery/portable_atmospherics/canister, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "yN" = ( @@ -7182,13 +7038,11 @@ }, /area/awaymission/snowdin/outside) "yR" = ( -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "yV" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/post/minipost) "yW" = ( @@ -7337,9 +7191,7 @@ /turf/closed/wall/mineral/wood, /area/awaymission/snowdin/igloo) "zv" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/closet/emcloset, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -7354,7 +7206,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "zx" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/button/door{ id = "snowdingarage2"; name = "Garage Door toggle"; @@ -7369,9 +7221,7 @@ /area/awaymission/snowdin/post/minipost) "zz" = ( /obj/structure/rack, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "zA" = ( @@ -7461,9 +7311,8 @@ /area/awaymission/snowdin/post/minipost) "zM" = ( /obj/machinery/portable_atmospherics/canister, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) @@ -7548,9 +7397,7 @@ /turf/open/floor/wood, /area/awaymission/snowdin/igloo) "Af" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/sign/nanotrasen{ pixel_y = 32 }, @@ -7577,9 +7424,8 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/minipost) "Al" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plating/ice/smooth, /area/awaymission/snowdin/cave) @@ -7683,9 +7529,7 @@ }, /area/awaymission/snowdin/outside) "AM" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/minipost) "AN" = ( @@ -7714,9 +7558,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) "AT" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) "AU" = ( @@ -7822,9 +7664,7 @@ "Bw" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "BA" = ( @@ -7836,7 +7676,7 @@ /obj/machinery/power/terminal{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable{ icon_state = "0-4" }, @@ -7860,16 +7700,13 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 9 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "BJ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) @@ -7909,9 +7746,8 @@ dir = 1 }, /obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) @@ -7926,7 +7762,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) "BX" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) "Cb" = ( @@ -7947,15 +7783,12 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) "Cg" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/ice/smooth, /area/awaymission/snowdin/cave) "Ch" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) @@ -7978,9 +7811,8 @@ /turf/closed/wall/ice, /area/awaymission/snowdin/cave/cavern) "Cm" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/asteroid/snow, @@ -8018,9 +7850,7 @@ /turf/closed/wall/mineral/plastitanium, /area/awaymission/snowdin/outside) "Cu" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) "Cv" = ( @@ -8043,9 +7873,8 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/secpost) "Cy" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/asteroid/snow, @@ -8055,9 +7884,7 @@ /turf/open/floor/plating/ice/smooth, /area/awaymission/snowdin/cave) "CA" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) "CB" = ( @@ -8121,9 +7948,7 @@ set_cap = 3; set_luminosity = 6 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) "CZ" = ( @@ -8151,9 +7976,7 @@ /area/awaymission/snowdin/cave) "De" = ( /obj/structure/table/reinforced, -/obj/machinery/light/built{ - dir = 8 - }, +/obj/machinery/light/built/directional/west, /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/cave) "Dm" = ( @@ -8168,15 +7991,11 @@ /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) "Dn" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) "Do" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/stack/rods, /turf/open/floor/plating/asteroid/snow{ floor_variance = 0; @@ -8205,7 +8024,7 @@ }, /area/awaymission/snowdin/cave) "Dx" = ( -/obj/machinery/light/built, +/obj/machinery/light/built/directional/south, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "DE" = ( @@ -8217,7 +8036,7 @@ }, /area/awaymission/snowdin/outside) "DF" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/asteroid/snow{ floor_variance = 0; icon_state = "snow_dug"; @@ -8351,9 +8170,7 @@ "Em" = ( /obj/effect/turf_decal/weather/snow, /obj/effect/turf_decal/industrial/outline, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark/snowdin, /area/awaymission/snowdin/cave) "En" = ( @@ -8385,9 +8202,7 @@ }, /area/awaymission/snowdin/cave) "Ez" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/cave) "ED" = ( @@ -8425,7 +8240,7 @@ /area/awaymission/snowdin/cave) "ES" = ( /obj/structure/table/reinforced, -/obj/machinery/light/built, +/obj/machinery/light/built/directional/south, /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/cave) "ET" = ( @@ -8530,9 +8345,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/outside) "Fm" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/outside) "Fn" = ( @@ -8552,9 +8365,7 @@ "Fq" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/outside) "Fr" = ( @@ -8587,7 +8398,7 @@ /turf/open/floor/plating/snowed, /area/awaymission/snowdin/outside) "Fv" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/sign/nanotrasen{ pixel_y = -32 }, @@ -8611,9 +8422,7 @@ /obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 4 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/outside) "FA" = ( @@ -8680,9 +8489,8 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/item/stack/rods{ amount = 2 @@ -8734,11 +8542,11 @@ set_cap = 3; set_luminosity = 6 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/post/mining_main) "FR" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/light_emitter{ name = "outdoor light"; set_cap = 3; @@ -8776,9 +8584,7 @@ dir = 2; id = "snowdin_belt_mine" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/post/mining_dock) "FZ" = ( @@ -8867,9 +8673,7 @@ /area/awaymission/snowdin/post/mining_main) "Gp" = ( /obj/machinery/space_heater, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "Gq" = ( @@ -8885,7 +8689,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/outside) "Gs" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/outside) "Gt" = ( @@ -8895,7 +8699,7 @@ /turf/open/floor/plating/snowed, /area/awaymission/snowdin/outside) "Gu" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 8 }, @@ -9123,9 +8927,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/outside) "Hs" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_main/robotics) "Hu" = ( @@ -9214,9 +9016,7 @@ /turf/open/floor/plasteel/grimy, /area/awaymission/snowdin/post/mining_main) "HU" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/grimy, /area/awaymission/snowdin/post/mining_main) "HV" = ( @@ -9259,7 +9059,7 @@ /area/awaymission/snowdin/post/mining_dock) "Ii" = ( /obj/machinery/mech_bay_recharge_port, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/post/mining_main/mechbay) "Ik" = ( @@ -9276,7 +9076,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/post/mining_main/mechbay) "Ip" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_main/mechbay) "Iq" = ( @@ -9293,9 +9093,7 @@ /turf/open/floor/plasteel/grimy, /area/awaymission/snowdin/post/mining_main) "It" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "Iv" = ( @@ -9430,7 +9228,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "IY" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -9491,9 +9289,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "Jk" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) @@ -9511,9 +9308,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "Jo" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/spawner/lootdrop/crate_spawner, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) @@ -9534,9 +9329,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "Ju" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "JA" = ( @@ -9557,9 +9350,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "JK" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/grimy, /area/awaymission/snowdin/post/mining_main) "JN" = ( @@ -9657,9 +9448,7 @@ /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "Ki" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "Kj" = ( @@ -9729,9 +9518,7 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "Ky" = ( @@ -9759,10 +9546,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_main) "KC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 @@ -9811,10 +9595,7 @@ /area/awaymission/snowdin/post/mining_main) "KP" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -10049,10 +9830,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -10061,9 +9839,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/dorm) "LF" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10130,10 +9906,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/research) "LT" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -10222,9 +9995,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/cave) "Mf" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, @@ -10305,10 +10076,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 8 @@ -10355,7 +10123,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_dock) "Mu" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 @@ -10551,9 +10319,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/cavern2) "MP" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/structure/sign/warning/docking{ pixel_x = 32 }, @@ -10656,10 +10422,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_dock) "Ng" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -10753,9 +10516,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/snowdin/post) "Ns" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10795,9 +10556,7 @@ /obj/effect/turf_decal/industrial/stand_clear{ dir = 1 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "Ny" = ( @@ -10845,7 +10604,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/dorm) "NB" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -10854,7 +10613,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post) "NC" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10933,9 +10692,7 @@ /turf/open/floor/engine/cult, /area/awaymission/snowdin/post/mining_dock) "NO" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/warning/docking{ pixel_y = 32 }, @@ -10994,10 +10751,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -11039,9 +10793,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11295,7 +11047,7 @@ /obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 @@ -11328,10 +11080,7 @@ /area/awaymission/snowdin/post) "OE" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_main/robotics) "OI" = ( @@ -11549,9 +11298,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/snowdin/post/minipost) "Pl" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -11562,9 +11309,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/dorm) "Pp" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -11681,9 +11426,7 @@ /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "PB" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -11901,10 +11644,7 @@ /turf/open/lava/plasma, /area/awaymission/snowdin/cave/cavern) "Qf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -12158,13 +11898,8 @@ /area/awaymission/snowdin/post/hydro) "QE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -12182,9 +11917,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "QH" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -12356,10 +12089,7 @@ /area/awaymission/snowdin/post/mining_main) "Ra" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 @@ -12432,9 +12162,7 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_main/mechbay) @@ -12769,9 +12497,7 @@ }, /area/awaymission/snowdin/post/dorm) "Sc" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -12854,9 +12580,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -13096,9 +12820,7 @@ /turf/open/floor/plasteel/dark/snowdin, /area/awaymission/snowdin/outside) "SP" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/supply/visible{ @@ -13348,9 +13070,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post) "Tt" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, @@ -13419,7 +13139,7 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/light/broken, +/obj/machinery/light/broken/directional/south, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 @@ -13804,7 +13524,7 @@ /area/awaymission/snowdin/post/cavern2) "Uu" = ( /obj/structure/table, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, @@ -13901,13 +13621,8 @@ "UC" = ( /obj/structure/table, /obj/item/clothing/neck/stethoscope, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, @@ -14156,10 +13871,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/engineering) "Vr" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -14170,7 +13882,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/research) "Vt" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/brown, /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 @@ -14334,7 +14046,7 @@ /turf/open/floor/plasteel/dark, /area/awaymission/snowdin/cave) "VU" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/table, /obj/item/storage/box/donkpockets, /obj/effect/turf_decal/corner/transparent/neutral, @@ -14679,9 +14391,7 @@ /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "WV" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -14767,9 +14477,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_dock) "Xk" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/table, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ @@ -14992,9 +14700,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15072,7 +14778,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) "XT" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/brown, /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 @@ -15609,10 +15315,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_main) "Za" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -15636,10 +15339,7 @@ }, /area/awaymission/snowdin/post/cavern1) "Zd" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -15649,9 +15349,7 @@ "Ze" = ( /obj/structure/table, /obj/item/clothing/glasses/hud/health, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, @@ -15869,9 +15567,7 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index 4b216f9ebd63..cef7d942e686 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -45,9 +45,7 @@ }, /area/awaymission/undergroundoutpost45/central) "ak" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/plating{ heat_capacity = 1e+006; icon_state = "platingdmg1" @@ -74,9 +72,7 @@ }, /area/awaymission/undergroundoutpost45/central) "ap" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; @@ -132,10 +128,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -239,9 +232,7 @@ }, /area/awaymission/undergroundoutpost45/central) "aN" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/door/firedoor, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -254,9 +245,7 @@ }, /area/awaymission/undergroundoutpost45/central) "aR" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/door/firedoor, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -368,9 +357,7 @@ }, /area/awaymission/undergroundoutpost45/central) "bk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -425,11 +412,8 @@ }, /area/awaymission/undergroundoutpost45/central) "bt" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/light/small/directional/south, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 }, @@ -448,10 +432,7 @@ }, /area/awaymission/undergroundoutpost45/central) "bx" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -473,17 +454,13 @@ }, /area/awaymission/undergroundoutpost45/central) "bA" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "bH" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -492,9 +469,7 @@ /obj/structure/toilet{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 }, @@ -503,9 +478,7 @@ /obj/structure/toilet{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 @@ -758,9 +731,7 @@ /turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/central) "cs" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -789,7 +760,7 @@ dir = 8 }, /obj/structure/table/wood, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_x = -30 }, /turf/open/floor/carpet{ @@ -797,12 +768,8 @@ }, /area/awaymission/undergroundoutpost45/central) "cx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -811,12 +778,8 @@ }, /area/awaymission/undergroundoutpost45/central) "cA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -830,7 +793,7 @@ "cB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/table/wood, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_x = 30 }, /turf/open/floor/carpet{ @@ -1152,17 +1115,13 @@ }, /area/awaymission/undergroundoutpost45/central) "dm" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "dn" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -1176,13 +1135,8 @@ /turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/central) "dw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; @@ -1572,9 +1526,7 @@ /turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/central) "fn" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -1730,9 +1682,7 @@ }, /area/awaymission/undergroundoutpost45/central) "fJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -1778,7 +1728,7 @@ /area/awaymission/undergroundoutpost45/central) "fQ" = ( /obj/structure/table/wood, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -28 }, /turf/open/floor/carpet{ @@ -1786,11 +1736,8 @@ }, /area/awaymission/undergroundoutpost45/central) "fR" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/light/small/directional/south, +/obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -1817,10 +1764,7 @@ }, /area/awaymission/undergroundoutpost45/central) "fU" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/camera{ c_tag = "Central Hallway"; dir = 1; @@ -1830,15 +1774,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) -"fV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/central) "fW" = ( /obj/machinery/vending/snack, /turf/open/floor/plasteel/dark{ @@ -1923,9 +1858,7 @@ /turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/crew_quarters) "gh" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/showroomfloor{ heat_capacity = 1e+006 }, @@ -2070,7 +2003,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "gB" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -2148,12 +2081,8 @@ }, /area/awaymission/undergroundoutpost45/research) "gY" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/directional/north, /obj/machinery/camera{ c_tag = "Research Lab"; network = list("uo45","uo45r") @@ -2163,9 +2092,7 @@ }, /area/awaymission/undergroundoutpost45/research) "gZ" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/white{ heat_capacity = 1e+006 }, @@ -2179,9 +2106,7 @@ /turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/research) "hd" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -2190,9 +2115,7 @@ }, /area/awaymission/undergroundoutpost45/research) "he" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -2201,30 +2124,20 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "hf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "hg" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "hh" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -2267,9 +2180,7 @@ /area/awaymission/undergroundoutpost45/gateway) "hz" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/storage/box/lights/mixed, /turf/open/floor/plating{ heat_capacity = 1e+006 @@ -2330,10 +2241,7 @@ }, /area/awaymission/undergroundoutpost45/gateway) "ic" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair{ dir = 8 @@ -2387,9 +2295,7 @@ }, /area/awaymission/undergroundoutpost45/research) "is" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark{ heat_capacity = 1e+006 @@ -2459,9 +2365,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "iL" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/clothing/gloves/color/latex, /obj/structure/closet/emcloset, /turf/open/floor/plasteel{ @@ -2591,9 +2495,7 @@ charge = 100; maxcharge = 15000 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/white{ heat_capacity = 1e+006 }, @@ -2612,10 +2514,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "jg" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/machinery/camera{ c_tag = "Gateway Chamber"; dir = 4; @@ -2708,9 +2607,7 @@ /area/awaymission/undergroundoutpost45/gateway) "jq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white{ heat_capacity = 1e+006 @@ -2811,10 +2708,7 @@ }, /area/awaymission/undergroundoutpost45/gateway) "jK" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -2823,7 +2717,7 @@ }, /area/awaymission/undergroundoutpost45/gateway) "jL" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -2857,7 +2751,7 @@ }, /area/awaymission/undergroundoutpost45/research) "jP" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -2999,9 +2893,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "kn" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ @@ -3009,9 +2901,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "ko" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -3065,9 +2955,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/warning/securearea{ pixel_x = -32 }, @@ -3143,16 +3031,13 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "lf" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "lg" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -3186,9 +3071,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -3337,9 +3220,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "lY" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/camera{ c_tag = "Engineering Secure Storage"; network = list("uo45") @@ -3428,7 +3309,7 @@ "mq" = ( /obj/structure/table, /obj/item/newspaper, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_x = 30 }, /obj/effect/decal/cleanable/dirt, @@ -3438,7 +3319,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "mr" = ( /obj/structure/table/wood, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = 32 }, /turf/open/floor/carpet{ @@ -3446,12 +3327,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "ms" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, @@ -3465,7 +3342,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "mu" = ( /obj/structure/table/wood, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_x = -30 }, /turf/open/floor/carpet{ @@ -3473,12 +3350,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "mv" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, /obj/structure/chair/wood{ dir = 8 }, @@ -3487,9 +3360,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "mx" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ @@ -3522,9 +3393,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "mI" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -4021,13 +3890,8 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/east, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -4180,10 +4044,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "pt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -4212,7 +4073,7 @@ }, /area/awaymission/undergroundoutpost45/caves) "pw" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -4354,9 +4215,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "pV" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/toilet{ dir = 4 }, @@ -4505,7 +4364,7 @@ }, /area/awaymission/undergroundoutpost45/research) "qm" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/sink{ dir = 8; pixel_x = -11 @@ -4533,43 +4392,28 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "qt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/small/directional/east, +/obj/machinery/airalarm/directional/east, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "qu" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/dresser, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "qv" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "qw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/light/small/directional/west, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 }, @@ -4670,9 +4514,7 @@ }, /area/awaymission/undergroundoutpost45/research) "qP" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/airalarm/server{ dir = 4; pixel_x = -25 @@ -4712,9 +4554,7 @@ }, /area/awaymission/undergroundoutpost45/research) "qT" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/pipe/simple{ dir = 9 }, @@ -4747,7 +4587,7 @@ /area/awaymission/undergroundoutpost45/research) "qY" = ( /obj/structure/table/wood, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -28 }, /obj/item/pen, @@ -4764,9 +4604,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "ra" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/toilet{ dir = 4 }, @@ -4803,9 +4641,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "re" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -4814,9 +4650,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/decal/cleanable/dirt, @@ -4832,13 +4666,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "rh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; @@ -5296,9 +5125,7 @@ /turf/open/floor/engine/vacuum, /area/awaymission/undergroundoutpost45/engineering) "ss" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/engine/vacuum, /area/awaymission/undergroundoutpost45/engineering) "st" = ( @@ -5325,9 +5152,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "sB" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 @@ -5668,9 +5493,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -5939,9 +5762,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "ub" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -5995,14 +5816,11 @@ }, /area/awaymission/undergroundoutpost45/engineering) "ul" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -6012,9 +5830,7 @@ /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -6222,15 +6038,11 @@ }, /area/awaymission/undergroundoutpost45/engineering) "uX" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -6422,9 +6234,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "vC" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ @@ -6435,7 +6245,7 @@ /obj/machinery/air_sensor{ id_tag = "UO45_n2_sensor" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/engine/n2, /area/awaymission/undergroundoutpost45/engineering) "vE" = ( @@ -6446,7 +6256,7 @@ /obj/machinery/air_sensor{ id_tag = "UO45_o2_sensor" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/engine/o2, /area/awaymission/undergroundoutpost45/engineering) "vG" = ( @@ -6454,9 +6264,7 @@ /turf/open/floor/engine/o2, /area/awaymission/undergroundoutpost45/engineering) "vH" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -6600,9 +6408,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "wc" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/chair/wood{ dir = 8 }, @@ -6637,9 +6443,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "wg" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -6674,9 +6478,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "wj" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -6794,10 +6596,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "wC" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -6847,7 +6646,7 @@ dir = 4; pixel_x = 11 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/mirror{ pixel_x = 28 }, @@ -6910,7 +6709,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "wV" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/bed, /obj/item/bedsheet, /turf/open/floor/carpet{ @@ -6918,9 +6717,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "wW" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = 32 }, @@ -6936,10 +6733,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/structure/closet/secure_closet/miner{ req_access = null; req_access_txt = "201" @@ -6950,9 +6744,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "wY" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/window/reinforced{ dir = 1 }, @@ -7007,10 +6799,7 @@ /area/awaymission/undergroundoutpost45/mining) "xp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/structure/cable{ icon_state = "1-2" }, @@ -7069,9 +6858,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/camera{ c_tag = "Mining"; dir = 4; @@ -7118,9 +6905,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "xD" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/table, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -7271,10 +7056,7 @@ /area/awaymission/undergroundoutpost45/mining) "xW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/west, /obj/structure/closet/crate, /obj/item/stack/sheet/mineral/plasma{ amount = 6 @@ -7305,10 +7087,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "xZ" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ @@ -7343,9 +7122,7 @@ /turf/open/floor/plasteel, /area/awaymission/undergroundoutpost45/mining) "yg" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -7599,7 +7376,7 @@ "yF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4; - + }, /obj/structure/table, /obj/item/book/manual/chef_recipes, @@ -7936,10 +7713,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "zB" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/camera{ c_tag = "Kitchen"; dir = 8; @@ -8029,10 +7803,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, @@ -8114,7 +7885,7 @@ req_access = null; start_charge = 100 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -8152,18 +7923,14 @@ dir = 2; id = "UO45_mining" }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, /obj/machinery/conveyor{ id = "UO45_mining" }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, @@ -8175,7 +7942,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -28 }, /obj/structure/cable{ @@ -8297,9 +8064,7 @@ }, /area/awaymission/undergroundoutpost45/gateway) "Bg" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/structure/rack, /obj/item/tank/jetpack/carbondioxide, /obj/effect/turf_decal/industrial/warning{ @@ -8410,13 +8175,8 @@ }, /area/awaymission/undergroundoutpost45/engineering) "Cg" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 @@ -8570,9 +8330,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -8589,7 +8347,7 @@ "CF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5; - + }, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 @@ -8757,9 +8515,7 @@ }, /area/awaymission/undergroundoutpost45/central) "DA" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/table, /obj/item/tank/internals/emergency_oxygen{ pixel_x = -8 @@ -8773,7 +8529,7 @@ /obj/item/clothing/mask/breath{ pixel_x = 4 }, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, @@ -8817,12 +8573,8 @@ }, /area/awaymission/undergroundoutpost45/central) "DM" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -8937,12 +8689,8 @@ }, /area/awaymission/undergroundoutpost45/gateway) "Ev" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -9137,9 +8885,7 @@ }, /area/awaymission/undergroundoutpost45/central) "FM" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/processor, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -9163,9 +8909,7 @@ }, /area/awaymission/undergroundoutpost45/research) "FP" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 10 }, @@ -9179,17 +8923,12 @@ /obj/item/storage/toolbox/mechanical{ pixel_y = 5 }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/item/multitool, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 10 }, @@ -9202,9 +8941,7 @@ /obj/item/storage/toolbox/mechanical{ pixel_y = 5 }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/item/multitool, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -9264,9 +9001,7 @@ }, /area/awaymission/undergroundoutpost45/research) "FU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/opaque/purple{ dir = 4 }, @@ -9329,17 +9064,12 @@ }, /area/awaymission/undergroundoutpost45/research) "Gj" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -9351,10 +9081,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "Gn" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -9467,9 +9194,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -9554,13 +9279,8 @@ }, /area/awaymission/undergroundoutpost45/engineering) "GU" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/west, /obj/structure/table, /obj/item/radio/off, /obj/item/laser_pointer, @@ -9772,9 +9492,7 @@ }, /area/awaymission/undergroundoutpost45/research) "HM" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/table/glass, /obj/item/reagent_containers/glass/beaker/large{ pixel_x = -3; @@ -9889,7 +9607,7 @@ }, /area/awaymission/undergroundoutpost45/research) "Ih" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -9921,9 +9639,7 @@ }, /area/awaymission/undergroundoutpost45/gateway) "Il" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, @@ -10132,10 +9848,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10150,10 +9863,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10262,13 +9972,8 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/small/directional/east, +/obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -10340,10 +10045,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "JI" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/structure/tank_dispenser{ pixel_x = -1 }, @@ -10356,9 +10058,7 @@ /obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/structure/tank_dispenser{ pixel_x = -1 }, @@ -10394,9 +10094,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 @@ -10570,12 +10268,8 @@ }, /area/awaymission/undergroundoutpost45/gateway) "Km" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10608,13 +10302,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "Kv" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/light/small/directional/east, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 @@ -11002,9 +10691,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, @@ -11146,16 +10833,11 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "Ma" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -11341,10 +11023,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ @@ -11432,9 +11111,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "Nm" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/table, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -11713,9 +11390,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, @@ -11843,13 +11518,8 @@ }, /area/awaymission/undergroundoutpost45/research) "Pi" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/light/small/directional/west, +/obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -12089,7 +11759,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "Qf" = ( /obj/structure/closet/firecloset, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/sign/warning/securearea{ pixel_y = -32 }, @@ -12097,7 +11767,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 2 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/sign/warning/securearea{ pixel_y = -32 }, @@ -12491,14 +12161,11 @@ }, /area/awaymission/undergroundoutpost45/research) "Sj" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 8 }, @@ -12573,9 +12240,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "Su" = ( /obj/structure/table, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/hand_labeler, /obj/item/clothing/neck/stethoscope, @@ -12707,10 +12372,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "SW" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/camera{ c_tag = "Research Division East"; dir = 1; @@ -12719,10 +12381,7 @@ /obj/effect/turf_decal/corner/opaque/purple{ dir = 2 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/camera{ c_tag = "Research Division East"; dir = 1; @@ -12855,9 +12514,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 @@ -12876,7 +12533,7 @@ req_access = null; start_charge = 100 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/rack, /obj/item/clothing/shoes/magboots, /obj/effect/turf_decal/industrial/warning{ @@ -12890,7 +12547,7 @@ req_access = null; start_charge = 100 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/rack, /obj/item/clothing/shoes/magboots, /obj/effect/turf_decal/industrial/warning{ @@ -12922,10 +12579,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "TR" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/structure/rack, /obj/item/clothing/shoes/magboots, /obj/effect/turf_decal/industrial/warning{ @@ -13008,9 +12662,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13072,9 +12724,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -13228,31 +12878,22 @@ }, /area/awaymission/undergroundoutpost45/gateway) "Vj" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -13264,10 +12905,7 @@ }, /area/awaymission/undergroundoutpost45/central) "Vk" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -13294,13 +12932,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "Vq" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, /obj/item/radio/off, /obj/item/screwdriver{ pixel_y = 10 @@ -13448,7 +13081,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -28 }, /obj/effect/turf_decal/corner/transparent/bar, @@ -13606,9 +13239,7 @@ }, /area/awaymission/undergroundoutpost45/research) "Wu" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/corner/opaque/purple{ dir = 4 }, @@ -13664,7 +13295,7 @@ "WH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10; - + }, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -13772,9 +13403,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "WU" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -13787,14 +13416,11 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/disposalpipe/junction{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/effect/turf_decal/corner/opaque/purple{ dir = 2 @@ -13802,14 +13428,11 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/disposalpipe/junction{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/effect/turf_decal/corner/opaque/purple, /turf/open/floor/plasteel/white{ @@ -13917,7 +13540,7 @@ pixel_y = 9 }, /obj/item/pen, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_x = -30 }, /obj/effect/turf_decal/corner/opaque/red{ @@ -14084,9 +13707,7 @@ }, /area/awaymission/undergroundoutpost45/central) "XZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -14164,9 +13785,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14213,7 +13832,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "YD" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/computer/atmos_alert{ dir = 1 }, @@ -14248,7 +13867,7 @@ }, /area/awaymission/undergroundoutpost45/engineering) "YE" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 2 }, @@ -14263,7 +13882,7 @@ /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/structure/window/reinforced{ dir = 4; @@ -14397,9 +14016,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14541,9 +14158,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "ZH" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -14594,9 +14209,7 @@ }, /area/awaymission/undergroundoutpost45/central) "ZM" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -45848,7 +45461,7 @@ eO el UY fE -fV +bk ae eJ eJ diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/RandomZLevels/wildwest.dmm index 3e9e8459a2f6..3cd6d2a2b88a 100644 --- a/_maps/RandomZLevels/wildwest.dmm +++ b/_maps/RandomZLevels/wildwest.dmm @@ -649,10 +649,6 @@ }, /turf/open/space, /area/space/nearstation) -"cu" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) "cv" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/carpet, @@ -17338,7 +17334,7 @@ br br br br -cu +br br aa aa @@ -26601,7 +26597,7 @@ br br br br -cu +br br aa aa @@ -26844,7 +26840,7 @@ aa aa aa br -cu +br br br br @@ -27887,7 +27883,7 @@ aG aG aG br -cu +br br aa aa @@ -28383,7 +28379,7 @@ aa aa aa aa -cu +br br aa aa diff --git a/_maps/configs/independent_dwayne.json b/_maps/configs/independent_dwayne.json index ec52fe9112f6..a059c11e9b00 100644 --- a/_maps/configs/independent_dwayne.json +++ b/_maps/configs/independent_dwayne.json @@ -1,9 +1,9 @@ { "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", - "map_name": "Dwayne-class Long Range Mining Transport", + "map_name": "Dwayne-class Long Range Mining Transport Mark.II", "prefix": "SV", "namelists": ["GENERAL", "SPACE", "NATURAL", "MERCANTILE"], - "map_short_name": "Dwayne-class", + "map_short_name": "Dwayne-class MK.II", "map_path": "_maps/shuttles/shiptest/independent_dwayne.dmm", "roundstart": true, "job_slots": { diff --git a/_maps/configs/nanotrasen_mimir.json b/_maps/configs/nanotrasen_mimir.json new file mode 100644 index 000000000000..641b69a5e373 --- /dev/null +++ b/_maps/configs/nanotrasen_mimir.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", + "prefix": "NTSV", + "namelists": ["GENERAL", "NATURAL_AGGRESSIVE", "BEASTS"], + "map_name": "Mimir-Class Rehabillitation Vessel", + "map_short_name": "Mimir-Class", + "map_path": "_maps/shuttles/shiptest/nanotrasen_mimir.dmm", + "limit": 1, + "job_slots": { + "Warden": { + "outfit": "/datum/outfit/job/warden", + "officer": true, + "slots": 1 + }, + "Facility Security Officer": { + "outfit": "/datum/outfit/job/security", + "slots": 2 + }, + "Facility Physician": { + "outfit": "/datum/outfit/job/brig_phys", + "slots": 1 + }, + "Patient": { + "outfit": "/datum/outfit/job/prisoner", + "slots": 2 + } + }, + "enabled": false +} diff --git a/_maps/configs/pirate_ember.json b/_maps/configs/pirate_ember.json new file mode 100644 index 000000000000..a1e3a4e0643c --- /dev/null +++ b/_maps/configs/pirate_ember.json @@ -0,0 +1,60 @@ +{ + "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", + "map_name": "Ember-Class Pirate Raider", + "prefix": "ISV", + "namelists": ["PIRATES", "MYTHOLOGICAL"], + "map_short_name": "Ember-class", + "map_path": "_maps/shuttles/shiptest/pirate_ember.dmm", + "limit": 1, + "job_slots": { + "Captain": { + "outfit": "/datum/outfit/job/captain/frontiersmen", + "officer": true, + "slots": 1 + }, + "Bridge Officer": { + "outfit": "/datum/outfit/job/head_of_personnel/frontiersmen", + "officer": true, + "slots": 2 + }, + "Master At Arms": { + "outfit": "/datum/outfit/job/hos/frontiersmen", + "officer": true, + "slots": 1 + }, + "Head Carpenter" :{ + "outfit": "/datum/outfit/job/ce/frontiersmen", + "officer": true, + "slots": 1 + }, + "Cargo Tech": { + "outfit": "/datum/outfit/job/cargo_tech/frontiersmen", + "slots": 2 + }, + "Surgeon": { + "outfit": "/datum/outfit/job/doctor/frontiersmen", + "slots": 1 + }, + "Carpenter": { + "outfit": "/datum/outfit/job/engineer/independent/frontiersmen", + "slots": 2 + }, + "Atmospheric Technician": { + "outfit": "/datum/outfit/job/atmos/frontiersmen", + "slots": 1 + }, + "Steward": { + "outfit": "/datum/outfit/job/cook/frontiersmen", + "slots": 1 + }, + "Deckhand": { + "outfit": "/datum/outfit/job/assistant/frontiersmen", + "slots": 3 + }, + "Buccaneer": { + "outfit": "/datum/outfit/job/security/Frontiersmen", + "slots": 3 + } + }, + "enabled": false +} diff --git a/_maps/configs/solgov_cricket.json b/_maps/configs/solgov_cricket.json deleted file mode 100644 index 9203148df17b..000000000000 --- a/_maps/configs/solgov_cricket.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", - "map_name": "Cricket-Class Solgov Intel Scout", - "map_short_name": "Solgov Cricket", - "map_path": "_maps/shuttles/shiptest/solgov_cricket.dmm", - "job_slots": { - "Captain": 1, - "SolGov Representative": 1, - "Chemist": 1, - "Station Engineer": 2, - "Shaft Miner": 2, - "Cargo Technician": 1, - "Security Officer": 1, - "Cook": 1, - "Assistant": 3 - }, - "enabled": true -} diff --git a/_maps/configs/solgov_liberty.json b/_maps/configs/solgov_liberty.json deleted file mode 100644 index 0279015fb629..000000000000 --- a/_maps/configs/solgov_liberty.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", - "map_name": "Liberty-class Interceptor", - "map_short_name": "Liberty-class", - "map_path": "_maps/shuttles/shiptest/solgov_liberty.dmm", - "job_slots": { - "Captain": { - "outfit": "/datum/outfit/job/captain/solgov", - "officer": true, - "slots": 1 - }, - "Executive Officer": { - "outfit": "/datum/outfit/job/head_of_personnel/solgov", - "officer": true, - "slots": 1 - }, - "Marine": { - "outfit": "/datum/outfit/job/security/solgov/elite", - "slots": 3 - }, - "Brig Officer": { - "outfit": "/datum/outfit/job/warden/solgov", - "slots": 1 - }, - "Combat Medic": { - "outfit": "/datum/outfit/job/paramedic/solgov", - "slots": 1 - }, - "Sailor": { - "outfit": "/datum/outfit/job/assistant/solgov", - "slots": 4 - } - } -} diff --git a/_maps/configs/syndicate_cybersun_kansatsu.json b/_maps/configs/syndicate_cybersun_kansatsu.json index 2820befaf8b3..db7f72f787f1 100644 --- a/_maps/configs/syndicate_cybersun_kansatsu.json +++ b/_maps/configs/syndicate_cybersun_kansatsu.json @@ -30,5 +30,5 @@ "slots": 2 } }, - "enabled": false + "enabled": true } diff --git a/_maps/configs/syndicate_twinkleshine.json b/_maps/configs/syndicate_twinkleshine.json index c09fb9c4156c..7aae9a9ab450 100644 --- a/_maps/configs/syndicate_twinkleshine.json +++ b/_maps/configs/syndicate_twinkleshine.json @@ -1,34 +1,45 @@ { "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", + "prefix": "SSV", + "namelists": ["GENERAL", "SPACE", "HISTORICAL"], "map_name": "Twinkleshine-class Battle Cruiser", "map_short_name": "Twinkleshine-class", "map_path": "_maps/shuttles/shiptest/syndicate_twinkleshine.dmm", "job_slots": { "Captain": { - "outfit": "/datum/outfit/syndicate_empty/sbc/assault/captain", + "outfit": "/datum/outfit/job/captain/syndicate/sbc", "officer": true, "slots": 1 }, - "Operative": { - "outfit": "/datum/outfit/syndicate_empty/sbc/assault/operative", + "Lieutenant": { + "outfit": "/datum/outfit/job/warden/syndicate/sbc", "officer": true, "slots": 1 }, "Medic": { - "outfit": "/datum/outfit/syndicate_empty/sbc/med", + "outfit": "/datum/outfit/job/brig_phys/syndicate/sbc", "slots": 2 }, - "Mechanic": { - "outfit": "/datum/outfit/syndicate_empty/sbc/engi", + "Engineer": { + "outfit": "/datum/outfit/job/engineer/syndicate/sbc", "slots": 2 }, - "Trooper": { - "outfit": "/datum/outfit/syndicate_empty/sbc/assault", + "Operative": { + "outfit": "/datum/outfit/job/security/syndicate/sbc", "slots": 5 }, + "Bartender": { + "outfit": "/datum/outfit/job/bartender/syndicate/sbc", + "slots": 1 + }, + "Miner": { + "outfit": "/datum/outfit/job/miner/syndicate/sbc", + "slots": 1 + }, "Deck Assistant": { - "outfit": "/datum/outfit/syndicate_empty/sbc", + "outfit": "/datum/outfit/job/assistant/syndicate/sbc", "slots": 2 } - } + }, + "enabled" : false } diff --git a/_maps/configs/wizard_lamia.json b/_maps/configs/wizard_lamia.json deleted file mode 100644 index b986a1aab28e..000000000000 --- a/_maps/configs/wizard_lamia.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", - "map_name": "Lamia-class Magery Ship", - "prefix": "MSV", - "namelists": ["BRITISH_NAVY", "BEASTS", "MAGICAL"], - "map_short_name": "Lamia-class", - "map_path": "_maps/shuttles/shiptest/wizard_lamia.dmm", - "limit": 2, - "job_slots": { - "Alchemist": { - "outfit": "/datum/outfit/job/bartender", - "officer": true, - "slots": 1 - }, - "Gastronomer": { - "outfit": "/datum/outfit/job/cook", - "slots": 1 - }, - "Lorekeeper": { - "outfit": "/datum/outfit/job/curator/dungeonmaster", - "slots": 1 - }, - "Geomancer": { - "outfit": "/datum/outfit/job/miner/hazard", - "slots": 1 - }, - "Allomancer": { - "outfit": "/datum/outfit/job/engineer", - "slots": 1 - }, - "Scholar": { - "outfit": "/datum/outfit/job/scientist", - "slots": 1 - }, - "Apprentice": { - "outfit": "/datum/outfit/job/assistant", - "slots": 5 - } - }, - "enabled": true -} diff --git a/_maps/deprecated/Ruins/TheDerelict.dmm b/_maps/deprecated/Ruins/TheDerelict.dmm index 75c463269628..aa545a1d7d9e 100644 --- a/_maps/deprecated/Ruins/TheDerelict.dmm +++ b/_maps/deprecated/Ruins/TheDerelict.dmm @@ -63,9 +63,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/access) "aK" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/ai_upload) "aL" = ( @@ -130,7 +128,7 @@ /turf/open/floor/plating/airless, /area/space/nearstation) "be" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/ai_upload) "bf" = ( @@ -166,9 +164,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/ai_upload) "bo" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/ai_upload) "bp" = ( @@ -180,9 +176,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/ai_upload) "bq" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "br" = ( @@ -261,9 +255,7 @@ }, /area/ruin/space/derelict/bridge/ai_upload) "bG" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "bH" = ( @@ -275,9 +267,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "bI" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "bJ" = ( @@ -318,9 +308,7 @@ /turf/template_noop, /area/ruin/space/derelict/bridge/ai_upload) "bS" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "bT" = ( @@ -380,7 +368,7 @@ }, /area/space/nearstation) "cd" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "ch" = ( @@ -393,7 +381,7 @@ /turf/closed/wall/r_wall, /area/ruin/space/derelict/gravity_generator) "cm" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "cn" = ( @@ -408,9 +396,7 @@ }, /area/ruin/space/derelict/gravity_generator) "cp" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/airless{ icon_state = "damaged5" }, @@ -425,9 +411,7 @@ /turf/closed/wall, /area/ruin/space/derelict/bridge/access) "ct" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/plaque{ icon_state = "derelict16" }, @@ -462,9 +446,7 @@ /area/ruin/space/derelict/bridge/access) "cz" = ( /obj/structure/rack, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/access) @@ -531,9 +513,7 @@ /turf/open/floor/plating, /area/ruin/space/derelict/bridge/access) "cS" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/rack, /obj/item/stack/cable_coil/cut, /obj/item/stack/cable_coil/cut, @@ -617,9 +597,7 @@ /turf/template_noop, /area/template_noop) "dl" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/access) "dm" = ( @@ -633,17 +611,13 @@ /turf/closed/wall/r_wall, /area/ruin/space/derelict/singularity_engine) "ds" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/table, /obj/item/paper/fluff/ruins/thederelict/equipment, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/gravity_generator) "du" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/item/stock_parts/matter_bin{ pixel_x = -10; pixel_y = 5 @@ -736,9 +710,7 @@ /area/ruin/space/derelict/bridge) "dL" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) "dM" = ( @@ -774,16 +746,12 @@ }, /area/ruin/space/derelict/singularity_engine) "dR" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/stack/cable_coil/cut, /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) "dV" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ruin/space/derelict/gravity_generator) "dW" = ( @@ -862,9 +830,7 @@ /turf/closed/wall, /area/ruin/space/derelict/gravity_generator) "em" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/airless{ icon_state = "damaged2" }, @@ -1086,7 +1052,7 @@ /area/ruin/space/derelict/bridge) "fh" = ( /obj/structure/table, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) "fi" = ( @@ -1151,9 +1117,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/airless{ icon_state = "damaged2" }, @@ -1162,9 +1126,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) "ft" = ( @@ -1197,9 +1159,7 @@ /area/ruin/space/derelict/bridge/access) "fz" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/electronics/airlock, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/access) @@ -1335,9 +1295,7 @@ /area/ruin/space/derelict/singularity_engine) "fY" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel/airless{ icon_state = "damaged2" @@ -1353,9 +1311,7 @@ }, /area/ruin/space/derelict/hallway/primary) "gg" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/access) "gh" = ( @@ -1427,7 +1383,7 @@ }, /area/ruin/space/derelict/hallway/primary) "gA" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "gB" = ( @@ -1480,9 +1436,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) "gK" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/airless{ icon_state = "damaged3" }, @@ -1547,7 +1501,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) "hb" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/airless{ icon_state = "damaged2" }, @@ -1569,9 +1523,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "hg" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "hh" = ( @@ -1595,9 +1547,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/derelict/medical/chapel) "hl" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/derelict/medical/chapel) "hm" = ( @@ -1633,7 +1583,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "ht" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/space/derelict/medical/chapel) "hu" = ( @@ -1739,16 +1689,14 @@ }, /area/ruin/space/derelict/medical) "hM" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/shard{ icon_state = "small" }, /turf/open/floor/plating/airless, /area/ruin/space/derelict/medical) "hN" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/airless{ icon_state = "damaged4" }, @@ -1796,9 +1744,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/derelict/medical/chapel) "hV" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white/airless, /area/ruin/space/derelict/medical) "hW" = ( @@ -1838,9 +1784,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "id" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "ie" = ( @@ -2041,9 +1985,7 @@ }, /area/ruin/space/derelict/medical) "iO" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/airless, /area/ruin/space/derelict/medical) "iP" = ( @@ -2191,9 +2133,7 @@ }, /area/ruin/space/derelict/hallway/primary) "js" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "jt" = ( @@ -2201,7 +2141,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "ju" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/chapel{ dir = 4 }, @@ -2217,9 +2157,7 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical/chapel) "jx" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical/chapel) "jz" = ( @@ -2268,15 +2206,11 @@ /turf/template_noop, /area/ruin/unpowered/no_grav) "jH" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "jI" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "jJ" = ( @@ -2315,9 +2249,7 @@ /turf/open/floor/plating, /area/ruin/space/derelict/arrival) "jV" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/airless{ icon_state = "damaged2" }, @@ -2336,9 +2268,7 @@ }, /area/ruin/space/derelict/hallway/primary) "jZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "ka" = ( @@ -2374,9 +2304,7 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "kp" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "kq" = ( @@ -2477,9 +2405,7 @@ /turf/template_noop, /area/template_noop) "kV" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "kW" = ( @@ -2813,9 +2739,7 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "mj" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating/airless, /area/ruin/space/derelict/atmospherics) "mk" = ( @@ -2890,9 +2814,7 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/atmospherics) "my" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, @@ -2983,16 +2905,14 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) "mT" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/atmospherics) "mU" = ( /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/secondary) "mV" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/secondary) "mW" = ( @@ -3012,9 +2932,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/secondary) "na" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/secondary) "no" = ( @@ -3181,9 +3099,7 @@ }, /area/ruin/space/derelict/se_solar) "ob" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/item/clothing/head/helmet/space/syndicate/black/red, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/se_solar) @@ -3192,7 +3108,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/secondary) "oe" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/se_solar) "og" = ( @@ -3737,7 +3653,7 @@ /turf/template_noop, /area/solar/derelict_aft) "DX" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/closet/crate, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, @@ -4065,7 +3981,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/access) "NF" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable{ icon_state = "4-8" }, @@ -4353,9 +4269,7 @@ /turf/open/floor/plasteel/white/airless, /area/ruin/space/derelict/medical) "TJ" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/storage/box/lights/mixed, /turf/open/floor/plasteel/white/airless, /area/ruin/space/derelict/medical) @@ -4537,9 +4451,7 @@ /turf/template_noop, /area/space/nearstation) "ZE" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/plaque{ icon_state = "derelict10" }, diff --git a/_maps/deprecated/Ruins/caravanambush.dmm b/_maps/deprecated/Ruins/caravanambush.dmm index 92e76f0bc01b..358748b8b149 100644 --- a/_maps/deprecated/Ruins/caravanambush.dmm +++ b/_maps/deprecated/Ruins/caravanambush.dmm @@ -85,9 +85,7 @@ name = "Cargo Blast Door Control"; pixel_y = 25 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter2) "an" = ( @@ -112,9 +110,7 @@ /area/template_noop) "aq" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/warning/vacuum{ pixel_x = -32; pixel_y = 32 @@ -171,9 +167,7 @@ name = "Cargo Blast Door Control"; pixel_y = 25 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark/airless, @@ -215,27 +209,21 @@ name = "Cargo Blast Door Control"; pixel_y = -25 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter2) "az" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel{ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter2) "aA" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "aD" = ( @@ -287,10 +275,7 @@ /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter3) "aO" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/blood, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -357,10 +342,7 @@ /area/shuttle/caravan/freighter3) "bg" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -518,9 +500,7 @@ /area/shuttle/caravan/freighter3) "gw" = ( /obj/effect/turf_decal/industrial/outline, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/button/door{ id = "caravantrade3_cargo_port"; name = "Cargo Blast Door Control"; @@ -529,9 +509,7 @@ /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter3) "gy" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/warning/vacuum{ pixel_x = -32; pixel_y = 32 @@ -717,10 +695,7 @@ /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter3) "hz" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, @@ -778,9 +753,7 @@ name = "Cargo Blast Door Control"; pixel_y = 25 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/ammo_box/magazine/m10mm{ pixel_x = -3; pixel_y = 3 @@ -841,19 +814,13 @@ /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter3) "ie" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter3) "if" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter3) @@ -1053,7 +1020,7 @@ /area/shuttle/caravan/freighter3) "jd" = ( /obj/effect/turf_decal/industrial/outline, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/button/door{ id = "caravantrade3_cargo_starboard"; name = "Cargo Blast Door Control"; @@ -1062,9 +1029,7 @@ /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter3) "je" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/warning/vacuum{ pixel_x = -32; pixel_y = -32 @@ -1111,10 +1076,7 @@ /area/shuttle/caravan/freighter2) "ju" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter2) "jy" = ( @@ -1198,9 +1160,7 @@ /area/shuttle/caravan/freighter2) "kb" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/warning/vacuum{ pixel_x = -32; pixel_y = -32 diff --git a/_maps/deprecated/Ruins/deepstorage.dmm b/_maps/deprecated/Ruins/deepstorage.dmm index 725b94e0ba6f..01fac4651e1b 100644 --- a/_maps/deprecated/Ruins/deepstorage.dmm +++ b/_maps/deprecated/Ruins/deepstorage.dmm @@ -9,9 +9,7 @@ /turf/open/floor/plating/asteroid/airless, /area/ruin/unpowered/no_grav) "ad" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer1{ dir = 4; icon_state = "vent_map_on-1" @@ -59,9 +57,7 @@ dir = 4; id = "bunkerrecycle" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/crusher) "am" = ( @@ -126,9 +122,7 @@ /obj/item/reagent_containers/food/condiment/soysauce{ pixel_x = 4 }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -228,9 +222,7 @@ /obj/item/stack/sheet/mineral/gold, /obj/item/stack/sheet/mineral/gold, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/storage) @@ -320,9 +312,7 @@ /obj/item/clothing/shoes/combat, /obj/item/clothing/shoes/combat, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/storage) @@ -452,9 +442,7 @@ /area/ruin/space/has_grav/deepstorage/storage) "aX" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/storage/box/cups, /obj/item/reagent_containers/glass/beaker, /obj/effect/turf_decal/corner/opaque/white{ @@ -473,9 +461,7 @@ /area/ruin/space/has_grav/deepstorage/hydroponics) "aZ" = ( /obj/machinery/vending/hydronutrients, -/obj/machinery/firealarm{ - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/hydroponics) "ba" = ( @@ -516,9 +502,7 @@ /area/ruin/space/has_grav/deepstorage/kitchen) "be" = ( /obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/light, /area/ruin/space/has_grav/deepstorage/hydroponics) "bf" = ( @@ -628,10 +612,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/hydroponics) "br" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 25 - }, +/obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer1{ dir = 8; icon_state = "vent_map_on-1" @@ -697,10 +678,7 @@ "bx" = ( /obj/structure/table, /obj/machinery/microwave, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 25 - }, +/obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -713,9 +691,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) @@ -863,7 +839,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/kitchen) "bO" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/vending/dinnerware, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 @@ -878,10 +854,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) "bQ" = ( @@ -931,9 +904,7 @@ /obj/structure/closet/crate{ name = "food crate" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/storage) @@ -996,9 +967,7 @@ "bX" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -1200,9 +1169,7 @@ /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/deepstorage) "cr" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/deepstorage) "cs" = ( @@ -1237,7 +1204,7 @@ /area/ruin/space/has_grav/deepstorage) "cv" = ( /obj/structure/table, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/item/reagent_containers/glass/bucket{ pixel_x = 4; pixel_y = 4 @@ -1359,10 +1326,7 @@ /area/ruin/space/has_grav/deepstorage) "cG" = ( /obj/machinery/vending/cigarette, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 25 - }, +/obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -1547,9 +1511,7 @@ pixel_y = 4 }, /obj/item/storage/firstaid/brute, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/deepstorage/armory) "de" = ( @@ -1559,9 +1521,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden/layer1, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1584,9 +1544,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) "di" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) @@ -1599,10 +1557,7 @@ /obj/item/stack/rods/fifty, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/deepstorage/armory) "dk" = ( @@ -1714,9 +1669,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) "dv" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) @@ -1747,9 +1700,7 @@ pixel_x = 8; pixel_y = -3 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/vending_refill/cigarette{ pixel_x = -3; pixel_y = 3 @@ -2037,16 +1988,11 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/dorm) "dU" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, @@ -2078,18 +2024,14 @@ dir = 8; icon_state = "scrub_map_on-3" }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/airlock) "dX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden/layer1, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2102,9 +2044,7 @@ /obj/structure/cable/yellow{ icon_state = "2-4" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) @@ -2159,10 +2099,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 25 - }, +/obj/structure/extinguisher_cabinet/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden/layer1, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2224,7 +2161,7 @@ /area/ruin/space/has_grav/deepstorage/airlock) "em" = ( /obj/structure/chair/stool, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer1{ dir = 4; icon_state = "vent_map_on-1" @@ -2404,9 +2341,7 @@ /area/ruin/space/has_grav/deepstorage) "eE" = ( /obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage) @@ -2505,7 +2440,7 @@ }, /obj/item/storage/firstaid/toxin, /obj/item/storage/pill_bottle/charcoal, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/deepstorage/armory) "eO" = ( @@ -2614,10 +2549,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/power) "eX" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 25 - }, +/obj/structure/extinguisher_cabinet/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -2630,10 +2562,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/power) "eZ" = ( @@ -2766,9 +2695,7 @@ /area/ruin/space/has_grav/deepstorage/power) "fq" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage) @@ -2789,9 +2716,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/airlock) "ft" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, @@ -2805,7 +2730,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/airlock) "fv" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer1{ dir = 1; @@ -2900,9 +2825,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/airlock) "fH" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/sign/warning/securearea{ pixel_y = 32 }, @@ -2947,9 +2870,7 @@ /area/ruin/space/has_grav/deepstorage/power) "fM" = ( /obj/machinery/atmospherics/miner/oxygen, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) "fN" = ( @@ -3058,9 +2979,7 @@ /area/ruin/space/has_grav/deepstorage/power) "gg" = ( /obj/machinery/washing_machine, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/airalarm/away{ dir = 8; pixel_x = 25 @@ -3075,9 +2994,7 @@ /obj/structure/cable/yellow{ icon_state = "1-4" }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/power) "gi" = ( @@ -3093,13 +3010,8 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/power) "gk" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/power) @@ -3112,7 +3024,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/dorm) "gn" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) @@ -3184,13 +3096,11 @@ /area/ruin/space/has_grav/deepstorage/power) "gE" = ( /obj/machinery/atmospherics/miner/nitrogen, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) "gF" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/deepstorage/dorm) "gG" = ( @@ -3198,21 +3108,15 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/deepstorage/dorm) "gH" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage) "gI" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage) "gJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3292,7 +3196,7 @@ /area/ruin/space/has_grav/deepstorage/power) "ha" = ( /obj/machinery/power/rtg/advanced, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/power) @@ -3301,7 +3205,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/power) "hc" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/power) "hd" = ( diff --git a/_maps/deprecated/Ruins/forgottenship.dmm b/_maps/deprecated/Ruins/forgottenship.dmm index 90d07092dabb..a692377b9a76 100644 --- a/_maps/deprecated/Ruins/forgottenship.dmm +++ b/_maps/deprecated/Ruins/forgottenship.dmm @@ -40,9 +40,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "ai" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aj" = ( @@ -137,9 +135,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aA" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/aiModule/reset/purge, /obj/structure/table/reinforced, /turf/open/floor/mineral/plastitanium/red, @@ -149,7 +145,7 @@ /turf/open/floor/carpet/royalblack, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aC" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aD" = ( @@ -173,9 +169,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aF" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aG" = ( @@ -201,9 +195,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aJ" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/layer1, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) @@ -219,7 +211,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aO" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/carpet/royalblack, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aQ" = ( @@ -260,9 +252,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aX" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_cargopod) "aY" = ( @@ -278,7 +268,7 @@ /turf/closed/wall/r_wall/syndicate, /area/ruin/space/has_grav/syndicate_forgotten_cargopod) "bc" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /mob/living/simple_animal/hostile/nanotrasen/ranged/assault, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) @@ -302,9 +292,7 @@ /turf/closed/wall/r_wall/syndicate, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bi" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/electrical, @@ -344,11 +332,11 @@ /obj/structure/table/reinforced, /obj/item/paper, /obj/item/pen, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/carpet/royalblack, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bo" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_cargopod) "bp" = ( @@ -367,16 +355,14 @@ /turf/closed/mineral/random/high_chance, /area/ruin/unpowered/no_grav) "br" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bs" = ( /turf/closed/mineral, /area/ruin/unpowered/no_grav) "bt" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bu" = ( @@ -442,9 +428,7 @@ req_one_access_txt = "150" }, /obj/item/melee/transforming/energy/sword/saber/red, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/pod/dark, /area/ruin/space/has_grav/powered/syndicate_forgotten_vault) "bC" = ( @@ -498,7 +482,7 @@ helmet_type = /obj/item/clothing/head/helmet/space/syndicate/black; suit_type = /obj/item/clothing/suit/space/syndicate/black }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bL" = ( @@ -539,7 +523,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bU" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/closet/crate/solarpanel_small, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_cargopod) @@ -548,9 +532,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bW" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bX" = ( @@ -592,7 +574,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "cd" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /mob/living/simple_animal/hostile/nanotrasen/ranged/assault, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/syndicate_forgotten_ship) @@ -660,9 +642,7 @@ /turf/closed/wall/r_wall/syndicate, /area/ruin/space/has_grav/syndicate_forgotten_cargopod) "cl" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/aiModule/core/freeformcore, /obj/structure/table/reinforced, /turf/open/floor/mineral/plastitanium/red, @@ -745,9 +725,7 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_cargopod) "cy" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 10 }, @@ -877,7 +855,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "cV" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, @@ -895,7 +873,7 @@ /area/ruin/space/has_grav/syndicate_forgotten_ship) "cY" = ( /obj/effect/mob_spawn/human/syndicatespace, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "cZ" = ( @@ -920,14 +898,14 @@ /obj/structure/toilet{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/syndicate_forgotten_ship) "dc" = ( /obj/machinery/shower{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/syndicate_forgotten_ship) "dd" = ( @@ -1042,7 +1020,7 @@ /obj/item/stack/sheet/mineral/silver{ amount = 50 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/pod/dark, /area/ruin/space/has_grav/powered/syndicate_forgotten_vault) "dp" = ( @@ -1161,9 +1139,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "qg" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/cable{ icon_state = "1-2" }, @@ -1301,9 +1277,7 @@ /obj/item/stack/sheet/mineral/uranium{ amount = 50 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/cable{ icon_state = "4-8" }, diff --git a/_maps/deprecated/Ruins/jungle_surface_tumblr_sexyman.dmm b/_maps/deprecated/Ruins/jungle_surface_tumblr_sexyman.dmm index c46e048edc25..6508d7ef8ebc 100644 --- a/_maps/deprecated/Ruins/jungle_surface_tumblr_sexyman.dmm +++ b/_maps/deprecated/Ruins/jungle_surface_tumblr_sexyman.dmm @@ -112,9 +112,7 @@ /turf/open/floor/plating, /area/ruin/jungle/onceler/main) "lb" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/titanium/yellow, /area/ruin/jungle/onceler/main) "lz" = ( @@ -201,9 +199,7 @@ /area/ruin/jungle/onceler/main) "wZ" = ( /obj/effect/turf_decal/dept/mining, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating, /area/ruin/jungle/onceler/main) "xT" = ( @@ -333,9 +329,7 @@ /turf/open/floor/plating, /area/ruin/jungle/onceler/main) "Oh" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/poster/retro/build{ pixel_y = 32 }, @@ -383,7 +377,7 @@ /turf/open/floor/plating/dirt/jungle, /area/template_noop) "RV" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 }, @@ -414,9 +408,7 @@ /area/ruin/jungle/onceler/main) "UD" = ( /obj/effect/turf_decal/dept/mining, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ruin/jungle/onceler/main) "UJ" = ( @@ -455,7 +447,7 @@ /turf/open/floor/plating, /area/ruin/jungle/onceler/main) "YM" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/ruin/jungle/onceler/main) "ZU" = ( diff --git a/_maps/deprecated/Ruins/lavaland_biodome_clown_planet.dmm b/_maps/deprecated/Ruins/lavaland_biodome_clown_planet.dmm index ba65f982e4b5..7b4103a4e829 100644 --- a/_maps/deprecated/Ruins/lavaland_biodome_clown_planet.dmm +++ b/_maps/deprecated/Ruins/lavaland_biodome_clown_planet.dmm @@ -616,9 +616,8 @@ /obj/structure/disposalpipe/segment{ invisibility = 101 }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/indestructible{ icon_state = "white" @@ -872,9 +871,7 @@ /obj/item/coin/bananium, /obj/item/coin/bananium, /obj/item/coin/bananium, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/carpet) "bT" = ( /obj/structure/table/glass, @@ -934,9 +931,7 @@ /obj/structure/disposalpipe/segment{ invisibility = 101 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -956,9 +951,7 @@ dir = 4; invisibility = 101 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -977,9 +970,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -999,9 +990,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -1021,9 +1010,8 @@ dir = 4; invisibility = 101 }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/indestructible{ icon_state = "white" @@ -1033,9 +1021,7 @@ dir = 4; invisibility = 101 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/indestructible{ icon_state = "white" }) @@ -1043,16 +1029,12 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/indestructible{ icon_state = "white" }) "dI" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ dir = 8 @@ -1068,23 +1050,17 @@ wet = 8 }) "dK" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/carpet) "dL" = ( /obj/item/coin/bananium, /obj/item/coin/bananium, /obj/item/coin/bananium, /obj/item/coin/bananium, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/carpet) "dM" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/indestructible/sound{ icon_state = "bananium"; name = "bananium floor"; @@ -1092,7 +1068,7 @@ wet = 16 }) "dO" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/indestructible/sound{ icon_state = "bananium"; name = "bananium floor"; @@ -1112,7 +1088,7 @@ /turf/open/chasm/lavaland, /area/lavaland/surface/outdoors/explored) "hY" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating/asteroid/basalt/lava_land_surface) "nD" = ( @@ -1124,9 +1100,7 @@ icon_state = "light_on-1" }) "pv" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/asteroid/basalt/lava_land_surface) "ye" = ( /turf/open/lava/smooth) @@ -1182,9 +1156,7 @@ /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/explored) "MR" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating/asteroid/basalt/lava_land_surface) "RW" = ( @@ -1213,13 +1185,11 @@ /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/explored) "Yf" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating/asteroid/basalt/lava_land_surface) "YI" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/mapping_helpers/no_lava, /mob/living/simple_animal/hostile/retaliate/clown, /turf/open/floor/noslip{ diff --git a/_maps/deprecated/Ruins/listeningstation.dmm b/_maps/deprecated/Ruins/listeningstation.dmm index 39f31f812c55..78724c97e62b 100644 --- a/_maps/deprecated/Ruins/listeningstation.dmm +++ b/_maps/deprecated/Ruins/listeningstation.dmm @@ -24,10 +24,7 @@ /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/bookmanagement, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/listeningstation) "af" = ( @@ -50,10 +47,10 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = 32 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ freerange = 1; name = "Syndicate Radio Intercom"; pixel_x = -30 @@ -136,7 +133,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "ao" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/sign/warning/vacuum{ pixel_y = 32 }, @@ -158,7 +155,7 @@ /obj/machinery/shower{ pixel_y = 14 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/item/soap, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/showroomfloor, @@ -221,12 +218,8 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/listeningstation) "av" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, +/obj/machinery/light/small/directional/east, +/obj/structure/extinguisher_cabinet/directional/north, /obj/structure/table, /obj/item/paper_bin, /obj/item/paper/fluff/ruins/listeningstation/reports/november, @@ -250,9 +243,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/listeningstation) "ax" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/warning/corner{ dir = 4 }, @@ -379,10 +370,7 @@ "aH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/bin, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -480,16 +468,11 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/listeningstation) "aO" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/closet/crate, /obj/item/stack/sheet/metal/twenty, /obj/item/stack/sheet/glass{ @@ -598,13 +581,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/listeningstation) "aW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 26 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -691,9 +669,7 @@ /area/ruin/space/has_grav/listeningstation) "bb" = ( /obj/effect/turf_decal/industrial/fire/corner, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/airalarm/syndicate{ dir = 8; pixel_x = 25 @@ -706,7 +682,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/listeningstation) "bc" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset/anchored, /turf/open/floor/plasteel, @@ -718,9 +694,7 @@ /area/ruin/space/has_grav/listeningstation) "be" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer1{ icon_state = "vent_map_on-1"; dir = 1 @@ -759,9 +733,8 @@ /area/ruin/space/has_grav/listeningstation) "bi" = ( /obj/structure/table, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /obj/item/storage/box/donkpockets{ pixel_x = -2; @@ -969,7 +942,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/storage/photo_album, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/grimy, /area/ruin/space/has_grav/listeningstation) "bx" = ( @@ -1031,7 +1004,7 @@ pixel_x = 11 }, /obj/machinery/iv_drip, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/airalarm/syndicate{ dir = 1; pixel_y = -25 diff --git a/_maps/deprecated/Ruins/oldAIsat.dmm b/_maps/deprecated/Ruins/oldAIsat.dmm index 4ca95a8dbefe..622873e4f7ae 100644 --- a/_maps/deprecated/Ruins/oldAIsat.dmm +++ b/_maps/deprecated/Ruins/oldAIsat.dmm @@ -54,9 +54,7 @@ /turf/open/floor/plating/airless, /area/tcommsat/oldaisat) "al" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/cable{ icon_state = "2-8" }, @@ -79,9 +77,7 @@ /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "aq" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "ar" = ( @@ -141,9 +137,7 @@ /obj/structure/table, /obj/item/paper_bin, /obj/item/pen/blue, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "aC" = ( @@ -259,9 +253,7 @@ /turf/closed/wall/r_wall, /area/tcommsat/oldaisat) "aV" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "aW" = ( @@ -594,9 +586,7 @@ /turf/open/floor/plasteel/dark/airless, /area/tcommsat/oldaisat) "bY" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "bZ" = ( @@ -738,7 +728,7 @@ /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "cw" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/item/paper, /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 @@ -818,9 +808,7 @@ /turf/open/floor/plasteel, /area/tcommsat/oldaisat) "cK" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/tcommsat/oldaisat) "cL" = ( @@ -891,9 +879,7 @@ /turf/open/floor/plasteel, /area/tcommsat/oldaisat) "cX" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/warning{ dir = 6 }, diff --git a/_maps/deprecated/Ruins/syndicatewreck01.dmm b/_maps/deprecated/Ruins/syndicatewreck01.dmm index 895004f1045f..6503f98557c4 100644 --- a/_maps/deprecated/Ruins/syndicatewreck01.dmm +++ b/_maps/deprecated/Ruins/syndicatewreck01.dmm @@ -49,9 +49,7 @@ /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/no_grav) "dd" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plating/airless{ icon_state = "platingdmg2" }, @@ -182,16 +180,12 @@ /obj/effect/turf_decal/corner/opaque/blue/full, /obj/structure/window/reinforced/survival_pod, /obj/effect/turf_decal/industrial/warning/cee, -/obj/machinery/light/broken{ - dir = 4 - }, +/obj/machinery/light/broken/directional/east, /obj/machinery/chem_heater, /turf/open/floor/plasteel/dark/airless, /area/ruin/unpowered/no_grav) "om" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 10 }, @@ -253,9 +247,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/no_grav) "sU" = ( -/obj/machinery/light/broken{ - dir = 8 - }, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plating/airless{ icon_state = "panelscorched" }, @@ -409,9 +401,7 @@ /turf/open/floor/plasteel/dark/airless, /area/ruin/unpowered/no_grav) "AM" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 8 }, @@ -419,9 +409,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/no_grav) "Bk" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 5 }, @@ -513,9 +501,7 @@ /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/no_grav) "JX" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 6 }, @@ -535,9 +521,7 @@ /obj/effect/turf_decal/corner/opaque/blue/full, /obj/structure/window/reinforced/survival_pod, /obj/effect/turf_decal/industrial/warning/cee, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/frame/machine, /turf/open/floor/plasteel/dark/airless, /area/ruin/unpowered/no_grav) @@ -624,9 +608,7 @@ /turf/open/floor/plating/airless, /area/ruin/unpowered/no_grav) "PJ" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 8 }, diff --git a/_maps/deprecated/Ruins/whitesands_surface_crash_bar.dmm b/_maps/deprecated/Ruins/whitesands_surface_crash_bar.dmm index 86ae69c4a46a..e516bc7a6977 100644 --- a/_maps/deprecated/Ruins/whitesands_surface_crash_bar.dmm +++ b/_maps/deprecated/Ruins/whitesands_surface_crash_bar.dmm @@ -173,9 +173,7 @@ /obj/machinery/chem_dispenser/drinks/beer{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/table/wood, /turf/open/floor/wood{ icon_state = "wood-broken3" @@ -327,7 +325,7 @@ /turf/open/floor/plating, /area/whitesands/surface/outdoors) "ry" = ( -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_x = -30; pixel_y = 30 }, @@ -646,7 +644,7 @@ /turf/open/floor/plasteel/dark, /area/whitesands/surface/outdoors) "Hc" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/closed/wall/mineral/sandstone, /area/whitesands/surface/outdoors) "HA" = ( @@ -910,9 +908,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/mono/dark, /area/whitesands/surface/outdoors) "Qk" = ( @@ -958,9 +954,7 @@ }, /area/whitesands/surface/outdoors) "TU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood{ @@ -999,10 +993,7 @@ dir = 4; pixel_x = -12 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -30; - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, /area/whitesands/surface/outdoors) @@ -1067,9 +1058,7 @@ /area/whitesands/surface/outdoors) "Ys" = ( /obj/item/storage/box/drinkingglasses, -/obj/machinery/firealarm{ - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, diff --git a/_maps/deprecated/Ruins/whitesands_surface_crash_cargo.dmm b/_maps/deprecated/Ruins/whitesands_surface_crash_cargo.dmm index 5110351a90fa..73e722b951e5 100644 --- a/_maps/deprecated/Ruins/whitesands_surface_crash_cargo.dmm +++ b/_maps/deprecated/Ruins/whitesands_surface_crash_cargo.dmm @@ -261,9 +261,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/table, /obj/machinery/cell_charger, @@ -368,10 +366,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/industrial/traffic/corner{ dir = 8 }, @@ -488,9 +483,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small/built{ - dir = 1 - }, +/obj/machinery/light/small/built/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/layer1{ dir = 4 }, @@ -630,25 +623,16 @@ }, /area/whitesands/surface/outdoors) "OM" = ( -/obj/machinery/light/built{ - dir = 4 - }, +/obj/machinery/light/built/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/whitesands/surface/outdoors) "Po" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/light/small/built{ - dir = 1 - }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/built/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer1{ dir = 4 }, @@ -767,9 +751,7 @@ /turf/open/floor/plasteel/dark, /area/whitesands/surface/outdoors) "Wv" = ( -/obj/machinery/light/built{ - dir = 8 - }, +/obj/machinery/light/built/directional/west, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ diff --git a/_maps/deprecated/Ruins/whiteshipruin_box.dmm b/_maps/deprecated/Ruins/whiteshipruin_box.dmm index e19fe1a1112c..d80c5925680b 100644 --- a/_maps/deprecated/Ruins/whiteshipruin_box.dmm +++ b/_maps/deprecated/Ruins/whiteshipruin_box.dmm @@ -22,9 +22,7 @@ "f" = ( /obj/structure/table, /obj/item/screwdriver, -/obj/structure/light_construct{ - dir = 1 - }, +/obj/structure/light_construct/directional/north, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "g" = ( @@ -102,7 +100,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/whiteship/box) "s" = ( -/obj/structure/light_construct/small, +/obj/structure/light_construct/small/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/whiteship/box) "t" = ( @@ -113,9 +111,7 @@ /obj/structure/frame/computer{ anchored = 1 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "v" = ( @@ -142,13 +138,11 @@ /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "z" = ( -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "A" = ( -/obj/structure/light_construct{ - dir = 1 - }, +/obj/structure/light_construct/directional/north, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "B" = ( @@ -182,21 +176,15 @@ /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "H" = ( -/obj/structure/light_construct{ - dir = 4 - }, +/obj/structure/light_construct/directional/east, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "I" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, +/obj/structure/light_construct/small/directional/east, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "J" = ( -/obj/structure/light_construct{ - dir = 8 - }, +/obj/structure/light_construct/directional/west, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "K" = ( @@ -219,9 +207,7 @@ /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "N" = ( -/obj/structure/light_construct/small{ - dir = 8 - }, +/obj/structure/light_construct/small/directional/west, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "O" = ( @@ -254,9 +240,7 @@ /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "T" = ( -/obj/structure/light_construct/small{ - dir = 1 - }, +/obj/structure/light_construct/small/directional/north, /turf/open/floor/plating, /area/ruin/space/has_grav/whiteship/box) "U" = ( @@ -268,7 +252,7 @@ anchored = 1; dir = 1 }, -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) "W" = ( @@ -295,7 +279,7 @@ dir = 8 }, /obj/effect/decal/remains/human, -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /turf/open/floor/mineral/titanium/white, /area/ruin/space/has_grav/whiteship/box) diff --git a/_maps/deprecated/Ships/Syndicate_Cascade.dmm b/_maps/deprecated/Ships/Syndicate_Cascade.dmm index 9b0b5fa51ed2..06dea507ef25 100644 --- a/_maps/deprecated/Ships/Syndicate_Cascade.dmm +++ b/_maps/deprecated/Ships/Syndicate_Cascade.dmm @@ -20,6 +20,35 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) +"al" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/machinery/medical_kiosk, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"ar" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/mauve/border{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/button/door{ + dir = 8; + id = "Cascadelab"; + name = "Window Shutters"; + pixel_x = 22; + pixel_y = 7 + }, +/turf/open/floor/plasteel/white, +/area/ship/security) "aD" = ( /obj/structure/frame/machine, /obj/effect/turf_decal/industrial/warning{ @@ -39,24 +68,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) -"bi" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/dorm) -"bk" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/corner/opaque/lime/border{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) "bm" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -73,14 +84,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"bH" = ( -/obj/effect/turf_decal/steeldecal/steel_decals10, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "bJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -90,6 +93,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"bK" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "bL" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/table/optable{ @@ -118,47 +132,75 @@ /obj/machinery/door/airlock/public/glass, /turf/open/floor/plasteel/tech, /area/ship/science) -"cy" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/plating/grass, -/area/ship/science) -"cF" = ( +"ca" = ( /obj/structure/catwalk/over, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 +/obj/structure/railing/corner{ + dir = 4 }, +/obj/machinery/firealarm/directional/north, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/engineering) -"dd" = ( -/obj/structure/chair/office{ - dir = 1; - name = "tactical swivel chair" +"ck" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/corner/opaque/lime/border{ + dir = 8 }, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/white, +/area/ship/science) +"cy" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/plating/grass, +/area/ship/science) +"cT" = ( /obj/structure/railing/corner{ - dir = 1 + dir = 4 }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/obj/machinery/power/terminal, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/engineering) +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/science) "dj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/grass, /area/ship/science) +"ds" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "dF" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/grass, @@ -175,22 +217,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/science) -"dX" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/suit/space/syndicate/green/dark, -/obj/item/clothing/head/helmet/space/syndicate/green/dark, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) "es" = ( /obj/effect/turf_decal/atmos/plasma, /turf/open/floor/engine/plasma, @@ -275,6 +301,17 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"gy" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/corner/opaque/lime/border{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/science) "gD" = ( /obj/structure/fans/tiny, /obj/machinery/door/poddoor{ @@ -285,19 +322,6 @@ "gF" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) -"gH" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "gK" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/machinery/computer/operating, @@ -309,6 +333,19 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"gL" = ( +/obj/effect/turf_decal/steeldecal/steel_decals3, +/obj/effect/turf_decal/spline/fancy/opaque/orange{ + dir = 1 + }, +/obj/structure/fireaxecabinet{ + dir = 8; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/chem_pile, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "gQ" = ( /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 10 @@ -364,17 +401,20 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) -"hs" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/machinery/medical_kiosk, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = 30 +"ho" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/cargo) "hw" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/table/reinforced, @@ -423,6 +463,28 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"ij" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + dir = 8; + id = "cascadewindows"; + name = "Window Shutters"; + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/button/door{ + dir = 8; + id = "cascadebridge"; + name = "Bridge Lockdown"; + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/radio/intercom/wideband/directional/east, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "it" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 9 @@ -436,6 +498,17 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"ix" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "iB" = ( /obj/structure/closet/wall{ name = "uniform closet"; @@ -485,29 +558,26 @@ /obj/machinery/atmospherics/components/binary/pump/on, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) -"jb" = ( -/obj/effect/turf_decal/spline/fancy/opaque/black, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"iQ" = ( +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/head/welding, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/gloves/color/yellow, +/obj/item/multitool, +/obj/item/holosign_creator/atmos, +/obj/item/radio/off, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/head/hardhat/weldhat, +/obj/structure/closet/wall/orange{ + dir = 4; + name = "Engineering locker"; + pixel_x = -30 }, -/turf/open/floor/plating, +/obj/effect/turf_decal/steeldecal/steel_decals1, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/south, +/obj/item/switchblade, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "jl" = ( /obj/machinery/door/airlock/medical, @@ -526,19 +596,41 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/grass, /area/ship/science) -"ju" = ( -/obj/structure/closet/wall{ - name = "Utility Closet"; - pixel_y = 30 +"jr" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/syndie/surgery{ + pixel_x = 2 }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/flashlight, -/obj/item/flashlight, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/clothing/gloves/color/latex/nitrile/evil{ + pixel_x = 1; + pixel_y = -3 + }, +/obj/machinery/firealarm/directional/south, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"ju" = ( +/obj/structure/closet/wall{ + name = "Utility Closet"; + pixel_y = 30 + }, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/flashlight, +/obj/item/flashlight, /obj/item/flashlight, /obj/item/flashlight, /obj/item/flashlight, @@ -568,6 +660,16 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) +"jJ" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" + }, +/obj/item/bedsheet/blue, +/obj/structure/railing, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm) "jK" = ( /obj/effect/turf_decal/steeldecal/steel_decals2, /obj/effect/decal/cleanable/blood/old{ @@ -578,6 +680,14 @@ /obj/structure/grille/broken, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"jR" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/holofloor/wood, +/area/ship/crew/dorm) "jT" = ( /obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -628,34 +738,26 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/science) -"ks" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +"ky" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) +/obj/effect/decal/cleanable/wrapping, +/obj/machinery/light/directional/south, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/suit/space/syndicate/black/engie, +/obj/item/clothing/head/helmet/space/syndicate/black/engie, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "kY" = ( /obj/structure/chair/office/light{ dir = 4 }, /turf/open/floor/carpet/royalblue, /area/ship/bridge) -"ld" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/bed/dogbed/runtime, -/mob/living/simple_animal/pet/cat/Runtime, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/holofloor/wood, +"lh" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/patterned, /area/ship/crew/dorm) "lk" = ( /obj/machinery/door/airlock/external, @@ -683,6 +785,12 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) +"lQ" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10, +/obj/machinery/light/directional/north, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "md" = ( /obj/structure/table, /obj/machinery/computer/med_data/laptop{ @@ -743,6 +851,11 @@ /obj/item/slime_scanner, /turf/open/floor/plasteel, /area/ship/cargo) +"mQ" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/steeldecal/steel_decals9, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "mR" = ( /obj/structure/sink{ dir = 8; @@ -762,21 +875,38 @@ "na" = ( /turf/open/floor/plasteel/patterned, /area/ship/crew/dorm) -"nk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 +"nb" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 }, -/obj/effect/turf_decal/steeldecal/steel_decals9, -/turf/open/floor/plasteel/tech, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, /area/ship/engineering) -"nF" = ( +"ns" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, @@ -786,20 +916,19 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/science) -"nW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 +"nA" = ( +/obj/structure/curtain/bounty, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 }, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/railing{ +/obj/item/soap/syndie, +/obj/item/bikehorn/rubberducky, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/shower{ dir = 8 }, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/turf/open/floor/plating/catwalk_floor, +/area/ship/crew/dorm) "oa" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, @@ -832,16 +961,20 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel/tech/grid, /area/ship/medical) -"oK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 +"oI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 }, +/obj/machinery/vending/clothing, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "0-4" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/ship/crew/dorm) "oL" = ( /obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, @@ -875,26 +1008,6 @@ dir = 1 }, /area/ship/science) -"qd" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/science) "qf" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -982,33 +1095,24 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"qI" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/engineering) -"rd" = ( -/obj/structure/catwalk/over, +"re" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"ro" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "rJ" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1091,6 +1195,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ship/cargo) +"tp" = ( +/obj/structure/catwalk/over, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering) "tt" = ( /obj/structure/railing{ dir = 8 @@ -1101,31 +1218,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/stairs, /area/ship/cargo) -"tx" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/stairs, -/area/ship/bridge) "tA" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/brflowers, /obj/machinery/light/floor, /turf/open/floor/plating/grass, /area/ship/cargo) -"tC" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/white, -/area/ship/medical) "tE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced{ @@ -1151,26 +1249,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"tR" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/science) "tT" = ( /turf/open/floor/plasteel/tech, /area/ship/bridge) @@ -1194,6 +1272,18 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"uj" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "uq" = ( /obj/structure/railing, /obj/effect/turf_decal/corner/opaque/mauve/border, @@ -1203,6 +1293,18 @@ "ur" = ( /turf/template_noop, /area/template_noop) +"vv" = ( +/obj/machinery/computer/scan_consolenew, +/obj/machinery/light/directional/north, +/obj/item/paper/crumpled/awaymissions/moonoutpost19/hastey_note{ + info = "oh yea... totally forgot! just a reminder to connect this bad boy to the Research Server. tend to... not work if you forget it... smell ya later!"; + name = "PS. about the console" + }, +/obj/effect/turf_decal/corner/opaque/lime/border{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/science) "vC" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical) @@ -1256,33 +1358,6 @@ /obj/effect/turf_decal/corner/opaque/red/diagonal, /turf/open/floor/plasteel/white, /area/ship/medical) -"wm" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/structure/table/reinforced, -/obj/item/storage/backpack/duffelbag/syndie/surgery{ - pixel_x = 2 - }, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = 10; - pixel_y = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/item/clothing/gloves/color/latex/nitrile/evil{ - pixel_x = 1; - pixel_y = -3 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/storage/pill_bottle/mannitol{ - pixel_x = 10; - pixel_y = 5 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "wn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1300,31 +1375,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/grass, /area/ship/science) -"wy" = ( -/obj/machinery/computer/scan_consolenew, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/paper/crumpled/awaymissions/moonoutpost19/hastey_note{ - info = "oh yea... totally forgot! just a reminder to connect this bad boy to the Research Server. tend to... not work if you forget it... smell ya later!"; - name = "PS. about the console" - }, -/obj/effect/turf_decal/corner/opaque/lime/border{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) -"wC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/advanced_airlock_controller{ - pixel_x = 25 - }, -/obj/effect/turf_decal/industrial/warning, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/pod, -/area/ship/engineering) "wN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1352,16 +1402,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/science) -"xm" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "xo" = ( /obj/structure/curtain/bounty, /obj/structure/toilet{ @@ -1458,26 +1498,27 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"yn" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/layer4{ +"yg" = ( +/obj/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor/engine/hull, -/area/ship/engineering) -"yw" = ( -/obj/effect/turf_decal/steeldecal/steel_decals3, -/obj/effect/turf_decal/spline/fancy/opaque/orange{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/structure/fireaxecabinet{ - dir = 8; - pixel_x = 32 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 }, -/obj/effect/decal/cleanable/chem_pile, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/tech, +/area/ship/science) +"yn" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/layer4{ + dir = 1 + }, +/turf/open/floor/engine/hull, /area/ship/engineering) "yC" = ( /obj/structure/railing{ @@ -1498,21 +1539,21 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/science) -"yW" = ( -/obj/structure/curtain/bounty, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/item/soap/syndie, -/obj/item/bikehorn/rubberducky, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +"yM" = ( +/obj/structure/bed, +/obj/item/bedsheet/cmo, +/obj/structure/curtain, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/directional/south, +/obj/item/clothing/under/syndicate/bloodred/sleepytime, +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/shower{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/turf/open/floor/plating/catwalk_floor, -/area/ship/crew/dorm) +/turf/open/floor/carpet/royalblue, +/area/ship/bridge) "zk" = ( /obj/structure/cable{ icon_state = "1-4" @@ -1568,33 +1609,6 @@ /obj/effect/turf_decal/corner/transparent/bar/diagonal, /turf/open/floor/plasteel, /area/ship/hallway/central) -"zR" = ( -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/head/beret/cargo{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/megaphone/cargo, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/gps/mining{ - pixel_x = -17; - pixel_y = 4 - }, -/obj/item/gps/mining{ - pixel_x = -17; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod, -/area/ship/cargo) "Aj" = ( /obj/structure/railing/corner, /obj/structure/railing/corner{ @@ -1666,76 +1680,31 @@ }, /turf/open/floor/holofloor/wood, /area/ship/crew/dorm) -"Bp" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 9 - }, -/turf/open/floor/plating/grass, -/area/ship/science) "BU" = ( /obj/item/reagent_containers/food/snacks/grown/banana, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/grass, /area/ship/science) -"Cb" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 10 - }, -/obj/item/gun/syringe/rapidsyringe{ - name = "Monkey-neutralizer" - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -1; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +"Ce" = ( +/obj/structure/railing{ + dir = 6 }, -/obj/structure/railing/corner{ - dir = 4 +/obj/structure/rack, +/obj/item/geiger_counter{ + pixel_x = -4; + pixel_y = 4 }, -/obj/effect/turf_decal/corner/opaque/mauve/border{ - dir = 1 +/obj/item/inducer/syndicate{ + pixel_y = -7 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/item/storage/toolbox/syndicate{ + name = "syndicate toolbox"; + pixel_x = -3; + pixel_y = 5 }, -/turf/open/floor/plasteel/white, -/area/ship/security) +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "Cp" = ( /obj/structure/railing, /obj/effect/turf_decal/corner/opaque/lime/border{ @@ -1753,21 +1722,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/science) -"CN" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/structure/curtain, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/light, -/obj/item/clothing/under/syndicate/bloodred/sleepytime, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/carpet/royalblue, -/area/ship/bridge) "Dw" = ( /obj/item/reagent_containers/food/snacks/monkeycube{ pixel_x = 6; @@ -1789,16 +1743,6 @@ dir = 1 }, /area/ship/science) -"DN" = ( -/obj/effect/turf_decal/corner/opaque/mauve/border, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/frame/machine, -/obj/structure/railing, -/turf/open/floor/plasteel/white, -/area/ship/security) "DW" = ( /obj/effect/turf_decal/corner/opaque/lime/border{ dir = 4 @@ -1812,6 +1756,23 @@ "DX" = ( /turf/open/floor/engine/plasma, /area/ship/engineering) +"Ee" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Ei" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) @@ -1843,19 +1804,6 @@ dir = 8 }, /area/ship/engineering) -"EY" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "Fa" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 1 @@ -1884,23 +1832,59 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"FS" = ( +"FP" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 10 + }, +/obj/item/gun/syringe/rapidsyringe{ + name = "Monkey-neutralizer" + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "0-8" }, -/obj/machinery/camera/autoname{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/mauve/border{ dir = 1 }, -/obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) +/turf/open/floor/plasteel/white, +/area/ship/security) "FZ" = ( /obj/structure/railing{ dir = 1 @@ -1916,27 +1900,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"Gb" = ( -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/head/welding, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/gloves/color/yellow, -/obj/item/multitool, -/obj/item/holosign_creator/atmos, -/obj/item/radio/off, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/head/hardhat/weldhat, -/obj/structure/closet/wall/orange{ - dir = 4; - name = "Engineering locker"; - pixel_x = -30 +"Gd" = ( +/obj/machinery/computer/crew{ + dir = 8 }, -/obj/effect/turf_decal/steeldecal/steel_decals1, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, -/obj/item/switchblade, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/machinery/light/directional/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "Gh" = ( /obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -1957,6 +1930,22 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Gz" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/suit/space/syndicate/green/dark, +/obj/item/clothing/head/helmet/space/syndicate/green/dark, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "GA" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) @@ -2023,22 +2012,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"GK" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/tech, -/area/ship/science) "GW" = ( /obj/structure/closet/wall{ icon_door = "orange_wall"; @@ -2056,6 +2029,18 @@ /obj/item/clothing/glasses/meson, /turf/open/floor/pod, /area/ship/cargo) +"Hm" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Hq" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -2083,6 +2068,42 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Hx" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"HA" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/head/beret/cargo{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/megaphone/cargo, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/gps/mining{ + pixel_x = -17; + pixel_y = 4 + }, +/obj/item/gps/mining{ + pixel_x = -17; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod, +/area/ship/cargo) "HF" = ( /obj/structure/railing/corner{ dir = 4 @@ -2100,29 +2121,47 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/science) -"HO" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "HR" = ( /obj/structure/flora/junglebush/large, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/grass, /area/ship/science) -"Iw" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +"HW" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 9 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 +/obj/item/storage/box/masks, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 5 }, -/turf/open/floor/holofloor/wood, -/area/ship/crew/dorm) +/obj/item/roller{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/machinery/camera/autoname{ + dir = 10; + network = list("Vault") + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"HX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "IP" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2164,29 +2203,14 @@ "Jk" = ( /turf/open/floor/plasteel/white, /area/ship/science) -"JC" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/masks, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 5 - }, -/obj/item/roller{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/machinery/camera/autoname{ - dir = 10; - network = list("Vault") +"Jl" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "JP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/power/terminal, @@ -2208,6 +2232,11 @@ }, /turf/open/floor/plasteel/white, /area/ship/security) +"JY" = ( +/obj/structure/railing/corner, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/beach/water, +/area/ship/science) "Kv" = ( /obj/structure/railing{ dir = 9 @@ -2224,6 +2253,21 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/science) +"Kx" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/button/door{ + id = "nemoblast"; + pixel_y = 25 + }, +/obj/machinery/light/dim/directional/west, +/obj/machinery/computer/cargo/express{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/pod, +/area/ship/cargo) "KD" = ( /obj/machinery/power/smes/engineering, /obj/structure/cable/yellow{ @@ -2237,6 +2281,26 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"KP" = ( +/obj/effect/turf_decal/corner/opaque/mauve/border, +/obj/machinery/firealarm/directional/east, +/obj/structure/frame/machine, +/obj/structure/railing, +/turf/open/floor/plasteel/white, +/area/ship/security) +"LI" = ( +/obj/structure/catwalk/over, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "LK" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/table/reinforced, @@ -2284,6 +2348,31 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/dorm) +"Mt" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/lighter/greyscale{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/toy/cards/deck/syndicate{ + pixel_x = -4 + }, +/obj/machinery/light/small/directional/north, +/obj/item/reagent_containers/food/drinks/bottle/kahlua{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/glasses/hud/spacecop/hidden{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "Mx" = ( /obj/machinery/suit_storage_unit/syndicate, /obj/structure/railing{ @@ -2294,26 +2383,6 @@ }, /turf/open/floor/pod/light, /area/ship/security) -"My" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25; - pixel_y = 1 - }, -/obj/machinery/button/door{ - id = "nemoblast"; - pixel_y = 25 - }, -/obj/machinery/light/dim{ - dir = 8 - }, -/obj/machinery/computer/cargo/express{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/pod, -/area/ship/cargo) "MF" = ( /obj/machinery/door/airlock/vault, /obj/structure/cable/yellow{ @@ -2341,37 +2410,32 @@ dir = 4 }, /area/ship/engineering) -"MQ" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/structure/railing{ - dir = 1 +"ML" = ( +/obj/structure/chair/office{ + dir = 1; + name = "tactical swivel chair" }, -/obj/effect/turf_decal/corner/opaque/mauve/border{ +/obj/structure/railing/corner{ dir = 1 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 8; - id = "Cascadelab"; - name = "Window Shutters"; - pixel_x = 22; - pixel_y = 7 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, -/turf/open/floor/plasteel/white, -/area/ship/security) -"Ni" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/engineering) +"Nq" = ( +/turf/open/floor/plating/beach/water, +/area/ship/science) +"NE" = ( /obj/structure/railing/corner{ dir = 4 }, /obj/structure/cable/yellow{ icon_state = "1-4" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 }, @@ -2394,9 +2458,15 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/science) -"Nq" = ( -/turf/open/floor/plating/beach/water, -/area/ship/science) +"NK" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/advanced_airlock_controller{ + pixel_x = 25 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/pod, +/area/ship/engineering) "Of" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/cable/yellow{ @@ -2450,20 +2520,9 @@ /obj/item/vibro_weapon/weak, /obj/item/vibro_weapon/weak, /turf/open/floor/pod/dark, -/area/ship/security) -"Oq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white, -/area/ship/science) -"Oz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25; - pixel_y = 1 - }, -/obj/effect/turf_decal/corner/opaque/lime/border{ - dir = 8 - }, -/obj/machinery/dna_scannernew, +/area/ship/security) +"Oq" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ship/science) "OL" = ( @@ -2477,22 +2536,30 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"OP" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/stairs, +/area/ship/bridge) "Pk" = ( /obj/structure/flora/tree/jungle/small, /turf/open/floor/plating/grass, /area/ship/science) -"PC" = ( -/obj/structure/bed, -/obj/structure/curtain/cloth/fancy{ - name = "blood-red curtains" +"Pp" = ( +/obj/machinery/cryopod{ + dir = 4 }, -/obj/item/bedsheet/blue, -/obj/structure/railing, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 +/obj/effect/turf_decal/industrial/warning/full, +/obj/structure/railing{ + dir = 1 }, -/turf/open/floor/carpet/red, +/obj/machinery/computer/cryopod/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating/catwalk_floor, /area/ship/crew/dorm) "PO" = ( /obj/structure/railing, @@ -2507,19 +2574,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"Qg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "Qh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/carpet/royalblue, @@ -2527,26 +2581,27 @@ "Rh" = ( /turf/open/floor/carpet/red, /area/ship/crew/dorm) -"Rq" = ( -/obj/structure/catwalk/over, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 25 +"Rl" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/item/bedsheet/blue, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm) +"RG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/Runtime, +/obj/machinery/light/directional/west{ + light_color = "#e8eaff" }, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/holofloor/wood, +/area/ship/crew/dorm) "RJ" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ @@ -2570,23 +2625,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/science) -"Sa" = ( -/obj/machinery/power/port_gen/pacman/super, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/machinery/light/small, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Sc" = ( /obj/machinery/door/airlock/grunge{ name = "Bathroom" @@ -2652,33 +2690,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"SY" = ( -/obj/effect/turf_decal/corner/transparent/bar/diagonal, -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/lighter/greyscale{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/toy/cards/deck/syndicate{ - pixel_x = -4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/kahlua{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/clothing/glasses/hud/spacecop/hidden{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "TA" = ( /obj/structure/railing{ dir = 8 @@ -2699,23 +2710,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/grass, /area/ship/science) -"TX" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning/full, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating/catwalk_floor, -/area/ship/crew/dorm) "Ua" = ( /obj/structure/table/reinforced, /obj/item/wrench/medical, @@ -2741,27 +2735,15 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Ux" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/rack, -/obj/item/geiger_counter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/inducer/syndicate{ - pixel_y = -7 - }, -/obj/item/storage/toolbox/syndicate{ - name = "syndicate toolbox"; - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 1 +"Uf" = ( +/obj/structure/railing/corner{ + dir = 4 }, -/turf/open/floor/plasteel/tech, +/obj/effect/decal/cleanable/oil, +/obj/machinery/light/small/directional/east, +/obj/machinery/power/terminal, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "UG" = ( /obj/structure/cable/yellow{ @@ -2807,12 +2789,15 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"Vc" = ( -/obj/structure/railing/corner, -/obj/machinery/light{ +"Vj" = ( +/obj/structure/railing/corner{ dir = 4 }, -/turf/open/floor/plating/beach/water, +/obj/machinery/light/directional/east, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plating/grass, /area/ship/science) "Vx" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, @@ -2857,21 +2842,6 @@ }, /turf/open/floor/plating, /area/ship/medical) -"VH" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/ship/medical) "VI" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2914,21 +2884,35 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"Wk" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - icon_state = "0-8" +"Wq" = ( +/obj/structure/railing/corner{ + dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/science) +"WF" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/science) "WW" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2974,20 +2958,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"Xs" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/machinery/vending/clothing, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/holofloor/wood, -/area/ship/crew/dorm) "Xt" = ( /obj/item/multitool, /obj/item/clothing/glasses/meson/engine/tray, @@ -3017,31 +2987,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/medical) -"XB" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - dir = 8; - id = "cascadewindows"; - name = "Window Shutters"; - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/button/door{ - dir = 8; - id = "cascadebridge"; - name = "Bridge Lockdown"; - pixel_x = -6; - pixel_y = -5 - }, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "XC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3060,17 +3005,6 @@ }, /turf/open/floor/holofloor/wood, /area/ship/crew/dorm) -"Yp" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/decal/cleanable/wrapping, -/obj/machinery/light, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/suit/space/syndicate/black/engie, -/obj/item/clothing/head/helmet/space/syndicate/black/engie, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Yr" = ( /obj/structure/closet/wall/blue{ dir = 1; @@ -3111,21 +3045,6 @@ /obj/item/hypospray/mkii/CMO, /turf/open/floor/carpet/royalblue, /area/ship/bridge) -"YE" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25; - pixel_y = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/science) "YM" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/science) @@ -3225,18 +3144,6 @@ "ZQ" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) -"ZS" = ( -/obj/structure/bed, -/obj/structure/curtain/cloth/fancy{ - name = "blood-red curtains" - }, -/obj/item/bedsheet/blue, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/carpet/red, -/area/ship/crew/dorm) "ZY" = ( /obj/structure/railing{ dir = 4 @@ -3281,25 +3188,25 @@ ur ur YM YM -Oz +ck aT so qn -YE +WF YM -My +Kx gQ qf sU SR -HO +re oL US gW qs Fv US -bH +lQ jK US pD @@ -3311,28 +3218,28 @@ ur (3,1,1) = {" ur YM -bk +gy Jk lJ Oq Zq -GK +yg YM ZG -zR +HA mH hZ wN bm XC tY -cF -rd +LI +tp IZ SB sB vQ -Gb +iQ US US US @@ -3342,7 +3249,7 @@ US (4,1,1) = {" ur YM -wy +vv DW hi hi @@ -3352,7 +3259,7 @@ YM GW tt gk -FS +ho SR VI WW @@ -3362,10 +3269,10 @@ US US US US -Rq +ca tE US -nW +Hm xp ic AC @@ -3383,10 +3290,10 @@ YM YM tA rJ -dX +Gz SR IP -ks +ro US DX AP @@ -3410,14 +3317,14 @@ Dw Fm Aj RZ -Ni +NE YM YM gF gF SR ju -oK +Jl US DX DX @@ -3428,7 +3335,7 @@ jT sv US Mj -qI +Uf At Fa "} @@ -3442,7 +3349,7 @@ YU YU cy xi -qd +cT YM Mx On @@ -3453,7 +3360,7 @@ US es DX VU -yw +gL eQ Gh MK @@ -3486,10 +3393,10 @@ US US US US -jb +nb oh aD -Sa +Ee US pD ur @@ -3506,17 +3413,17 @@ dF dj HF YM -Cb +FP PO SR jH -Qg +HX rN -Xs -ld -TX +oI +RG +Pp US -gH +bK xG xC tK @@ -3540,7 +3447,7 @@ GE JQ uq SR -SY +Mt IQ UG AS @@ -3551,7 +3458,7 @@ KD xH FZ LR -Wk +uj US pD ur @@ -3566,17 +3473,17 @@ qo jq wq Kv -tR +Wq GE -MQ -DN +ar +KP SR zN xV rN Ml fk -Iw +jR US zq Zb @@ -3590,13 +3497,13 @@ US (12,1,1) = {" vI vI -Vc +JY ZY pX -Bp +Vj jq VP -nF +ns YM YM gF @@ -3614,7 +3521,7 @@ Zb UW US gl -dd +ML Hs Fa "} @@ -3633,14 +3540,14 @@ mi hw LK vC -hs +al Of vC -ZS -PC +Rl +jJ bR US -nk +mQ GG PS AF @@ -3655,7 +3562,7 @@ xX Ez Xj Zh -tx +OP mu Qh Yr @@ -3671,11 +3578,11 @@ rN rN Sc US -Ux +Ce vO -Yp +ky US -EY +ix iK qC AC @@ -3693,14 +3600,14 @@ vU GA gK uh -VH +ds vC gc -tC +Hx vC xo na -bi +lh US US lk @@ -3715,25 +3622,25 @@ US ur ZQ GA -XB -xm +ij +Gd GA SG md -CN +yM GA bL Vy -wm +jr vC ow -JC +HW vC -yW +nA mR mR US -wC +NK hg US pD diff --git a/_maps/deprecated/Ships/independent_high.dmm b/_maps/deprecated/Ships/independent_high.dmm index 17fc043fb672..84c10238e790 100644 --- a/_maps/deprecated/Ships/independent_high.dmm +++ b/_maps/deprecated/Ships/independent_high.dmm @@ -1,4 +1,24 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/effect/turf_decal/siding/red, +/obj/machinery/light/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "corpcp2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "ad" = ( /obj/structure/table/wood/reinforced, /turf/open/floor/wood/bamboo, @@ -23,6 +43,15 @@ "ao" = ( /turf/closed/wall/r_wall, /area/ship/hallway/starboard) +"au" = ( +/obj/item/radio/intercom/wideband/directional/north, +/obj/structure/table/wood/reinforced, +/obj/machinery/button/door{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/crew/office) "ax" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 1 @@ -97,11 +126,11 @@ dir = 1 }, /area/ship/bridge) -"bp" = ( -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -23 +"bs" = ( +/obj/machinery/cryopod{ + dir = 8 }, +/obj/machinery/light/small/directional/north, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/dorm) "by" = ( @@ -202,42 +231,6 @@ }, /turf/open/floor/carpet/nanoweave/purple, /area/ship/hallway/central) -"co" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/pen/fountain/captain{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = -13; - pixel_y = 14 - }, -/obj/item/stamp/captain{ - pixel_x = -5; - pixel_y = -2 - }, -/turf/open/floor/wood/yew, -/area/ship/crew/chapel/office) -"cv" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/office) "cx" = ( /obj/effect/turf_decal/siding/red{ dir = 9 @@ -246,6 +239,20 @@ /obj/machinery/vending/cola/random, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) +"cy" = ( +/obj/effect/turf_decal/siding/red, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "cH" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -297,6 +304,14 @@ }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/crew/office) +"dL" = ( +/obj/structure/railing, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/bridge) "dM" = ( /obj/structure/table, /obj/machinery/light_switch{ @@ -376,15 +391,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) -"eB" = ( -/obj/machinery/light/floor, -/obj/structure/filingcabinet, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/wood/maple, -/area/ship/crew) "eD" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -400,12 +406,6 @@ }, /turf/open/floor/carpet, /area/ship/bridge) -"eL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) "eU" = ( /obj/effect/turf_decal/industrial/warning{ dir = 5 @@ -457,6 +457,13 @@ }, /turf/open/floor/wood/bamboo, /area/ship/crew/dorm) +"fz" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/bamboo, +/area/ship/crew/dorm) "fG" = ( /turf/open/floor/plasteel/mono/dark, /area/ship/engineering) @@ -485,30 +492,9 @@ /obj/structure/window/plasma/reinforced/spawner/east, /turf/open/floor/engine/o2, /area/ship/engineering) -"fX" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/wood/yew, -/area/ship/crew/chapel/office) "gt" = ( /turf/open/floor/wood/bamboo, /area/ship/crew/dorm) -"gu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) "gA" = ( /obj/structure/railing{ layer = 3.1 @@ -562,18 +548,6 @@ "hj" = ( /turf/open/floor/engine/hull/reinforced, /area/ship/external) -"hm" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood/maple, -/area/ship/bridge) "ho" = ( /obj/effect/turf_decal/atmos/oxygen, /turf/open/floor/engine/o2, @@ -729,6 +703,26 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/dorm) +"iF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/mono/dark, +/area/ship/engineering) +"iP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering) "je" = ( /obj/effect/turf_decal/siding/red{ dir = 6 @@ -819,31 +813,61 @@ }, /turf/open/floor/carpet/nanoweave/purple, /area/ship/hallway/central) -"jG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 +"jZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/mahogany, +/area/ship/crew/chapel/office) +"ke" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/obj/machinery/suit_storage_unit/independent/mining/eva, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/pen/fountain{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/paper/natural{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/stamp/captain{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/turf/open/floor/wood/mahogany, +/area/ship/crew/chapel/office) "kf" = ( /obj/effect/turf_decal/siding/red{ dir = 1 }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) +"kk" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/directional/north, +/obj/machinery/button/door{ + id = "chwindow"; + name = "external lockdown"; + pixel_x = 6; + pixel_y = -6 + }, +/turf/open/floor/carpet, +/area/ship/bridge) "kl" = ( /obj/machinery/vending/boozeomat/all_access, /turf/open/floor/wood/bamboo, /area/ship/crew/dorm) -"kn" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/office) "kx" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/wood/bamboo, @@ -889,6 +913,17 @@ }, /turf/open/floor/engine, /area/ship/cargo) +"kV" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/table, +/obj/item/kitchen/knife, +/obj/item/kitchen/rollingpin, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) "lc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output, /turf/open/floor/engine/o2, @@ -947,6 +982,16 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/crew/office) +"lR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "lX" = ( /turf/open/floor/plasteel/stairs{ dir = 1 @@ -981,18 +1026,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"mz" = ( -/obj/effect/turf_decal/siding/red{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/vending/snack/random, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) "mB" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 1 @@ -1016,16 +1049,6 @@ }, /turf/open/floor/plating, /area/ship/hallway/starboard) -"na" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/office) "ne" = ( /obj/structure/chair/sofa/corner, /turf/open/floor/light, @@ -1067,6 +1090,29 @@ /obj/machinery/computer/atmos_control/tank/oxygen_tank, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"oi" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/pen/fountain/captain{ + pixel_x = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -13; + pixel_y = 14 + }, +/obj/item/stamp/captain{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/open/floor/wood/yew, +/area/ship/crew/chapel/office) "om" = ( /turf/closed/wall/r_wall, /area/ship/security) @@ -1082,22 +1128,19 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering) -"oA" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_x = -6; - pixel_y = 3 +"oz" = ( +/obj/machinery/computer/cargo/express{ + dir = 1 }, -/obj/item/paper_bin{ - pixel_x = 9; - pixel_y = 4 +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/effect/turf_decal/industrial/traffic/corner{ + dir = 1 }, -/obj/item/pen/fountain, -/obj/machinery/light{ - dir = 8 +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned/monofloor{ + dir = 1 }, -/turf/open/floor/carpet, -/area/ship/bridge) +/area/ship/cargo) "oI" = ( /obj/structure/chair/office{ dir = 4 @@ -1110,6 +1153,25 @@ "oL" = ( /turf/closed/wall/r_wall, /area/ship/crew/dorm) +"oN" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering" + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/engineering) "oT" = ( /obj/effect/turf_decal/siding/white/corner, /turf/open/floor/carpet, @@ -1119,31 +1181,26 @@ /obj/item/mop, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) -"pk" = ( -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -28 +"ph" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"pm" = ( -/obj/effect/turf_decal/corner/opaque/white/diagonal, -/obj/effect/turf_decal/siding/white{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/table/wood/reinforced, +/turf/open/floor/wood/bamboo, +/area/ship/crew/dorm) +"pI" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 28 }, -/obj/structure/table, -/obj/item/kitchen/knife, -/obj/item/kitchen/rollingpin, -/obj/machinery/light{ - dir = 1 +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/plasteel, -/area/ship/crew/dorm) +/obj/item/storage/firstaid/medical, +/turf/open/floor/carpet/nanoweave/purple, +/area/ship/hallway/central) "pJ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1178,6 +1235,18 @@ /obj/structure/table/reinforced, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) +"qq" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -25 + }, +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/crew/dorm) "qt" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible, /turf/open/floor/plasteel/mono/dark, @@ -1218,6 +1287,17 @@ /obj/item/storage/firstaid/medical, /turf/open/floor/wood/maple, /area/ship/bridge) +"qR" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/north{ + pixel_y = 1 + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/bridge) "qS" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -1276,6 +1356,15 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) +"rj" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood/bamboo, +/area/ship/crew/dorm) +"rk" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/nanoweave, +/area/ship/crew/office) "rn" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/closet/wall{ @@ -1291,6 +1380,10 @@ "rF" = ( /turf/closed/wall, /area/ship/crew/dorm) +"rQ" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet/nanoweave, +/area/ship/crew/office) "rR" = ( /turf/open/floor/carpet/red, /area/ship/crew/dorm) @@ -1305,16 +1398,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/carpet/nanoweave/purple, /area/ship/hallway/central) -"sc" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood/bamboo, -/area/ship/hallway/starboard) "sd" = ( /obj/item/storage/fancy/cigarettes/cigars{ pixel_x = 2; @@ -1372,56 +1455,20 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/engineering) -"sR" = ( -/obj/structure/railing/corner, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/structure/railing{ - dir = 8; - pixel_x = -1 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"sX" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/pen/fountain{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/paper/natural{ +"sP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ pixel_x = -6; - pixel_y = -3 - }, -/obj/item/stamp/captain{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/wood/mahogany, -/area/ship/crew/chapel/office) -"tc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 + pixel_y = 3 }, -/obj/machinery/light{ - dir = 1 +/obj/item/paper_bin{ + pixel_x = 9; + pixel_y = 4 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) +/obj/item/pen/fountain, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet, +/area/ship/bridge) "tj" = ( /obj/structure/chair/comfy/shuttle, /obj/machinery/airalarm/directional/west, @@ -1443,6 +1490,26 @@ "tw" = ( /turf/open/floor/plasteel/tech, /area/ship/engineering) +"tD" = ( +/obj/structure/closet/crate/bin, +/obj/item/documents/nanotrasen{ + desc = "\"Top Secret\" Nanotrasen documents, filled with complex diagrams and lists of names, dates and coordinates. On second glance, most of the documents are spreadsheets for elaborate Yo Momma jokes." + }, +/obj/item/toy/plush/among, +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/crew/office) +"tG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/light/directional/east, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering) "tM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -1504,13 +1571,6 @@ /obj/structure/table/reinforced, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) -"uO" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood/maple, -/area/ship/crew) "uR" = ( /obj/structure/closet/emcloset/wall{ dir = 8; @@ -1557,6 +1617,10 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/crew/office) +"vG" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "vI" = ( /turf/open/floor/carpet/nanoweave/purple, /area/ship/hallway/central) @@ -1598,21 +1662,6 @@ }, /turf/open/floor/engine, /area/ship/cargo) -"xb" = ( -/obj/machinery/light, -/turf/open/floor/wood/bamboo, -/area/ship/crew/dorm) -"xg" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/obj/machinery/photocopier/faxmachine/longrange, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "xm" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -1642,6 +1691,15 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/crew/office) +"xx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/carpet/nanoweave/purple, +/area/ship/hallway/central) "xL" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -1675,6 +1733,10 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input, /turf/open/floor/engine/air, /area/ship/engineering) +"yb" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/nanoweave/purple, +/area/ship/hallway/central) "yc" = ( /obj/effect/turf_decal/corner/opaque/white/diagonal, /obj/effect/turf_decal/siding/white{ @@ -1703,37 +1765,6 @@ color = "#4c535b" }, /area/ship/crew/dorm) -"ym" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"yK" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, -/area/ship/engineering) "yL" = ( /turf/open/floor/engine/hull/reinforced, /area/ship/engineering) @@ -1792,6 +1823,15 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/dorm) +"zB" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/carpet/nanoweave/purple, +/area/ship/hallway/central) "zC" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -1802,18 +1842,15 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/engineering) -"zH" = ( -/obj/item/radio/intercom/wideband{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/table/wood/reinforced, -/obj/machinery/button/door{ - pixel_x = 9; - pixel_y = 9 +"zL" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/floor, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/crew/office) +/turf/open/floor/wood/maple, +/area/ship/crew) "zQ" = ( /obj/effect/turf_decal/siding/red/corner{ dir = 4 @@ -1825,6 +1862,12 @@ color = "#4c535b" }, /area/ship/hallway/central) +"zX" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/bamboo, +/area/ship/crew/dorm) "Am" = ( /obj/item/paper{ pixel_x = 8; @@ -1868,15 +1911,6 @@ "AC" = ( /turf/closed/wall, /area/ship/hallway/starboard) -"AE" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew/dorm) "AJ" = ( /obj/machinery/holopad/emergency/command, /turf/open/floor/carpet, @@ -1885,22 +1919,6 @@ /obj/structure/chair/office, /turf/open/floor/wood/maple, /area/ship/crew) -"AX" = ( -/obj/machinery/light, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood/maple, -/area/ship/crew) -"AZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/central) "Bl" = ( /obj/machinery/button/door{ id = "corpcargobay2"; @@ -1909,10 +1927,6 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"Br" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) "Bu" = ( /obj/machinery/button/door{ id = "chmaint"; @@ -1957,30 +1971,6 @@ /obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/ship/crew/dorm) -"Cb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood/bamboo, -/area/ship/crew/dorm) -"Cf" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "chwindow"; - name = "external lockdown"; - pixel_x = 6; - pixel_y = -6 - }, -/turf/open/floor/carpet, -/area/ship/bridge) "Co" = ( /obj/structure/window/plasma/reinforced/spawner/north, /obj/machinery/atmospherics/components/binary/pump/on, @@ -1990,6 +1980,16 @@ /obj/structure/closet/toolcloset, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"Cw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/maple, +/area/ship/bridge) "Cx" = ( /obj/machinery/power/smes/engineering, /obj/structure/cable{ @@ -2035,7 +2035,17 @@ }, /turf/open/floor/plating, /area/ship/crew/dorm) -"CZ" = ( +"Db" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering) +"Dh" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -2045,39 +2055,13 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/carpet/nanoweave, /area/ship/crew/office) -"Db" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) "Dn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output, /turf/open/floor/engine/n2, /area/ship/engineering) -"Do" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "Dr" = ( /obj/item/paper{ pixel_x = 17 @@ -2160,14 +2144,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Eg" = ( -/obj/structure/railing, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) "Er" = ( /turf/closed/wall/r_wall, /area/ship/crew/chapel/office) @@ -2180,18 +2156,6 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) -"EQ" = ( -/obj/machinery/light/small, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -25 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/crew/dorm) "EX" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2223,18 +2187,6 @@ "Fu" = ( /turf/closed/wall, /area/ship/crew) -"Fw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) "Fx" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/blue{ @@ -2270,15 +2222,6 @@ color = "#4c535b" }, /area/ship/crew/office) -"FO" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/floor, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/wood/maple, -/area/ship/crew) "FS" = ( /obj/structure/chair/wood, /turf/open/floor/carpet/red, @@ -2301,6 +2244,19 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) +"Gd" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "Gh" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -2353,15 +2309,16 @@ /obj/structure/chair/sofa, /turf/open/floor/light, /area/ship/crew/dorm) -"Hr" = ( -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) +"Hf" = ( +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood/maple, +/area/ship/crew) +"Hv" = ( +/obj/machinery/light/directional/west, +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet/nanoweave/purple, +/area/ship/hallway/central) "HC" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2373,16 +2330,24 @@ }, /turf/open/floor/wood/maple, /area/ship/crew) -"HY" = ( -/obj/structure/cable{ - icon_state = "4-8" +"HI" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 1 +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) +"HX" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = 26 }, -/obj/machinery/light, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/crew/office) "Io" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -2398,6 +2363,16 @@ /obj/machinery/computer/atmos_control/tank/nitrogen_tank, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"Is" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood/mahogany, +/area/ship/crew/chapel/office) "Iv" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 4 @@ -2425,11 +2400,17 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) -"Jd" = ( -/obj/machinery/light/small, -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) +"Jg" = ( +/obj/structure/railing/corner, +/obj/item/radio/intercom/directional/north{ + pixel_y = -28 + }, +/obj/structure/railing{ + dir = 8; + pixel_x = -1 + }, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "Jh" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2452,20 +2433,13 @@ }, /turf/open/floor/plating, /area/ship/hallway/starboard) +"JC" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/security) "JE" = ( /turf/closed/wall/r_wall, /area/ship/cargo) -"JH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/central) "JI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2490,20 +2464,6 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) -"JY" = ( -/obj/effect/turf_decal/siding/red, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) "JZ" = ( /obj/structure/sign/poster/official/high_class_martini{ pixel_x = -32 @@ -2522,14 +2482,6 @@ "Kh" = ( /turf/open/floor/wood/yew, /area/ship/crew/chapel/office) -"Kk" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/effect/turf_decal/industrial/traffic/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "Kl" = ( /obj/structure/filingcabinet{ pixel_x = 10 @@ -2545,6 +2497,16 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) +"Kr" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood/bamboo, +/area/ship/hallway/starboard) "Kt" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 1 @@ -2574,6 +2536,10 @@ /obj/structure/window/reinforced/spawner, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"KC" = ( +/obj/machinery/computer/cryopod/directional/west, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/crew/dorm) "KH" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 8 @@ -2586,11 +2552,12 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) -"KU" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light{ +"Lg" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, +/obj/machinery/light/directional/west, /turf/open/floor/carpet/nanoweave, /area/ship/crew/office) "Lh" = ( @@ -2658,15 +2625,6 @@ }, /turf/open/floor/plating, /area/ship/crew/office) -"Mi" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/table/wood/reinforced, -/turf/open/floor/wood/bamboo, -/area/ship/crew/dorm) "Mm" = ( /obj/structure/railing{ dir = 8; @@ -2679,6 +2637,14 @@ dir = 1 }, /area/ship/bridge) +"Mt" = ( +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/wood/yew, +/area/ship/crew/chapel/office) "Mv" = ( /obj/structure/table, /obj/effect/turf_decal/corner/opaque/white/diagonal, @@ -2706,6 +2672,24 @@ }, /turf/open/floor/wood/bamboo, /area/ship/hallway/starboard) +"MH" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/security) +"MJ" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel/tech, +/area/ship/crew/dorm) "MK" = ( /turf/closed/wall, /area/ship/crew/chapel/office) @@ -2740,32 +2724,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering) -"MQ" = ( -/obj/machinery/computer/cargo/express{ - dir = 1 - }, -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/effect/turf_decal/industrial/traffic/corner{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/patterned/monofloor{ - dir = 1 - }, -/area/ship/cargo) -"Nc" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 1 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) "Nd" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, @@ -2775,26 +2733,23 @@ /obj/machinery/light/floor, /turf/open/floor/engine/hull/reinforced, /area/ship/external) -"Nu" = ( -/obj/structure/rack{ - desc = "Different from the Middle Ages version. Put your coat here?" - }, -/obj/item/t_scanner/adv_mining_scanner/lesser, -/obj/item/t_scanner/adv_mining_scanner/lesser, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/machinery/light{ +"Nx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/pickaxe/mini, -/obj/item/pickaxe/mini, +/obj/machinery/light/directional/south, +/obj/machinery/suit_storage_unit/independent/engineering, /turf/open/floor/plasteel/tech, -/area/ship/cargo) +/area/ship/engineering) +"ND" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/machinery/photocopier/faxmachine/longrange, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "NL" = ( /obj/structure/chair/wood{ dir = 1 @@ -2897,15 +2852,6 @@ }, /turf/open/floor/wood/maple, /area/ship/bridge) -"OK" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) "OQ" = ( /obj/structure/railing{ dir = 8; @@ -2918,15 +2864,18 @@ dir = 1 }, /area/ship/bridge) -"Pb" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/light/small{ - dir = 1 +"Pl" = ( +/obj/effect/turf_decal/siding/red{ + dir = 9 }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/chapel/office) +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/vending/snack/random, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "Pn" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/reagent_dispensers/fueltank, @@ -2949,6 +2898,19 @@ /obj/structure/table/wood/reinforced, /turf/open/floor/plasteel/telecomms_floor, /area/ship/crew/office) +"Qa" = ( +/obj/machinery/light/floor, +/obj/structure/filingcabinet, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/maple, +/area/ship/crew) +"Qj" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "Ql" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/carpet/nanoweave/purple, @@ -2965,18 +2927,11 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/carpet/nanoweave/purple, /area/ship/hallway/central) -"QC" = ( -/obj/structure/closet/crate/bin, -/obj/item/documents/nanotrasen{ - desc = "\"Top Secret\" Nanotrasen documents, filled with complex diagrams and lists of names, dates and coordinates. On second glance, most of the documents are spreadsheets for elaborate Yo Momma jokes." - }, -/obj/item/toy/plush/among, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/office) +"QA" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/suit_storage_unit/independent/mining/eva, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "QE" = ( /obj/item/lighter, /obj/item/storage/fancy/cigarettes/cigars, @@ -3088,26 +3043,24 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering) -"Sd" = ( -/obj/effect/turf_decal/siding/red, -/obj/machinery/light, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "corpcp2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"Se" = ( +/obj/structure/rack{ + desc = "Different from the Middle Ages version. Put your coat here?" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "Sh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/layer2{ dir = 8 @@ -3132,14 +3085,25 @@ }, /turf/open/floor/wood/maple, /area/ship/bridge) -"SK" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/obj/machinery/light{ - dir = 1 +"SN" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/wood/bamboo, -/area/ship/crew/dorm) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/carpet/nanoweave/purple, +/area/ship/hallway/central) +"SQ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/maple, +/area/ship/crew) "Ta" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ dir = 8 @@ -3147,6 +3111,15 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering) +"Td" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "TH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 10 @@ -3158,13 +3131,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"TW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/central) "TX" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3173,18 +3139,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/carpet/nanoweave/purple, /area/ship/hallway/central) -"TY" = ( -/obj/structure/chair/comfy/teal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = -27 - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/chapel/office) "Us" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 1 @@ -3201,6 +3155,13 @@ /obj/structure/window/reinforced/spawner, /turf/open/floor/plating, /area/ship/engineering) +"Uv" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering) "UF" = ( /obj/effect/turf_decal/siding/blue{ dir = 9 @@ -3216,21 +3177,6 @@ /obj/structure/table/wood/reinforced, /turf/open/floor/plasteel, /area/ship/crew/dorm) -"UJ" = ( -/obj/machinery/newscaster{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/office) -"UM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/suit_storage_unit/independent/engineering, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "UP" = ( /obj/structure/chair/comfy/lime{ dir = 1 @@ -3240,31 +3186,10 @@ }, /turf/open/floor/wood/bamboo, /area/ship/hallway/starboard) -"UR" = ( -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) "UT" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/ship/engineering) -"UU" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/central) "UY" = ( /obj/machinery/door/airlock/wood/glass{ name = "Corporate Lounge" @@ -3321,16 +3246,18 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) -"VO" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/central) "VX" = ( /obj/structure/catwalk, /turf/open/floor/engine/hull/reinforced, /area/ship/external) +"Wk" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/industrial/traffic/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "Wq" = ( /obj/effect/turf_decal/corner/opaque/white/diagonal, /obj/effect/turf_decal/siding/white{ @@ -3346,6 +3273,11 @@ }, /turf/open/floor/plasteel, /area/ship/crew/dorm) +"Ww" = ( +/obj/machinery/light/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/nanoweave, +/area/ship/crew/office) "WB" = ( /obj/structure/table/wood, /obj/item/desk_flag{ @@ -3374,6 +3306,16 @@ /obj/item/clothing/suit/jacket/letterman_nanotrasen, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/dorm) +"WQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "Xn" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3416,19 +3358,6 @@ /obj/machinery/computer/monitor, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) -"XJ" = ( -/obj/structure/closet/emcloset/wall{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/item/storage/firstaid/medical, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/central) "XK" = ( /obj/structure/railing, /obj/structure/table/reinforced, @@ -3504,19 +3433,6 @@ }, /turf/open/floor/wood/yew, /area/ship/crew/chapel/office) -"YG" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) "YH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -3701,14 +3617,14 @@ JI JI Er vv -na +Lg kP eo VA VA VA VA -kn +Ww vv JE JE @@ -3735,7 +3651,7 @@ RP RP RP Er -Pb +jZ eD bA Cz @@ -3778,9 +3694,9 @@ UF qj MK QE -TY +Is MK -fX +Mt hF WB Yz @@ -3791,16 +3707,16 @@ VA Dr Am PL -zH +au DR tk -ym +lR LJ -Kk +Wk tO vD vD -MQ +oz JE JE JE @@ -3814,20 +3730,20 @@ Aq RP DH RP -Eg -xg +dL +ND mB lX qZ CF -sX +ke MK Kl pJ -co +oi Kh tk -CZ +Dh Za sn NR @@ -3855,11 +3771,11 @@ Aq RP RP Mx -Nc +qR Ku Fx fJ -sR +Jg MK MK MK @@ -3871,12 +3787,12 @@ MK tk FJ tk -cv +HX lD ir Aw cf -UJ +rQ tk DX by @@ -3902,15 +3818,15 @@ JP cb Iv tt -hm +Cw Rh Fu -FO +zL WK Fl -AX +Hf Fu -TW +Hv bH tk lL @@ -3920,7 +3836,7 @@ vE VA vP tk -tc +WQ bC bC bC @@ -3936,7 +3852,7 @@ Kt "} (8,1,1) = {" DH -oA +sP Yo sz Mm @@ -3955,19 +3871,19 @@ dP vI bH tk -QC +tD WF dc xs aI -KU +rk tk Xn -Nu -jG +Se +QA Bl bC -Br +vG JE JE JE @@ -3978,7 +3894,7 @@ Kt "} (9,1,1) = {" DH -Cf +kk AJ oT AB @@ -4013,7 +3929,7 @@ VC JE Cx aj -OK +Uv zC ax Kt @@ -4031,10 +3947,10 @@ FX YK SA Fu -eB +Qa WK BJ -uO +SQ Fu Ym ex @@ -4042,7 +3958,7 @@ JZ RF cn Ql -VO +yb vI Bu cH @@ -4052,7 +3968,7 @@ tw GN tw tw -yK +oN lr ZV fG @@ -4078,21 +3994,21 @@ YH YH Fu Fu -XJ +pI Rs jF -UU -JH +SN +xx TX -AZ +zB Yp EX fl lJ if -gu +iP if -Fw +tG if yQ Sc @@ -4111,7 +4027,7 @@ DH IU BO Gi -Do +Gd ni ni Fu @@ -4163,15 +4079,15 @@ dA dA dA AC -Hr -JY +Qj +cy rF kl gt -Mi +ph YX fu -Cb +fz kx wx rR @@ -4182,7 +4098,7 @@ lc Co Sl os -HY +iF Nd Rw "} @@ -4208,7 +4124,7 @@ AC pU iw rF -SK +zX gt sd gt @@ -4246,7 +4162,7 @@ AC IS IS AC -mz +Pl LF cl rF @@ -4256,7 +4172,7 @@ ad gt GP MM -xb +rj rF rF rF @@ -4287,7 +4203,7 @@ AC AC Ov Oz -pk +Td ey vc rg @@ -4301,7 +4217,7 @@ ew jA rF mG -EQ +qq rF QX jq @@ -4328,10 +4244,10 @@ IS AC cx VI -UR +HI qV qV -UR +HI je zt gt @@ -4349,7 +4265,7 @@ Lh on mv Lo -UM +Nx Rw Rw Rw @@ -4369,7 +4285,7 @@ IS Kd AC jw -Sd +ac Vk CK aG @@ -4408,26 +4324,26 @@ Aq Aq IS RJ -sc +Kr AC kf us mf Ly Rx -eL -YG +JC +MH Vk Mv hY hG gt sG -bp +KC zw yg xQ -Jd +MJ rF ws ws @@ -4460,12 +4376,12 @@ Rx oI Xw hi -pm +kV hY mm uh rF -AE +bs WL oL pd diff --git a/_maps/deprecated/Ships/independent_sugarcube.dmm b/_maps/deprecated/Ships/independent_sugarcube.dmm index 6d39a39f4701..91d92a7fce0b 100644 --- a/_maps/deprecated/Ships/independent_sugarcube.dmm +++ b/_maps/deprecated/Ships/independent_sugarcube.dmm @@ -41,7 +41,7 @@ icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ charging = 20000 }, /obj/structure/cable{ @@ -73,9 +73,7 @@ /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, +/obj/machinery/computer/cryopod/directional/north, /turf/open/floor/plating, /area/ship/storage) "j" = ( @@ -91,9 +89,7 @@ }, /obj/structure/window/reinforced/spawner/west, /obj/structure/window/reinforced/spawner/east, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ship/storage) "l" = ( @@ -102,9 +98,7 @@ /area/ship/storage) "m" = ( /obj/structure/window/reinforced/spawner/west, -/obj/item/radio/intercom/wideband{ - pixel_y = 26 - }, +/obj/item/radio/intercom/wideband/directional/north, /obj/structure/chair/comfy/shuttle{ dir = 4 }, @@ -130,9 +124,7 @@ icon_state = "0-8" }, /obj/machinery/power/port_gen/pacman, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/item/stack/sheet/mineral/plasma/five, /obj/machinery/power/terminal{ dir = 1 @@ -188,7 +180,9 @@ /turf/open/floor/plating, /area/ship/storage) "w" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/storage) "x" = ( @@ -259,7 +253,7 @@ }, /obj/structure/window/reinforced/spawner/west, /obj/structure/window/reinforced/spawner/east, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/ship/storage) "H" = ( diff --git a/_maps/deprecated/Ships/minutemen_carina.dmm b/_maps/deprecated/Ships/minutemen_carina.dmm index 2e49c862cc14..39a6ff725242 100644 --- a/_maps/deprecated/Ships/minutemen_carina.dmm +++ b/_maps/deprecated/Ships/minutemen_carina.dmm @@ -1,26 +1,38 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ai" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "engine fuel pump" +"ah" = ( +/obj/structure/closet/secure_closet{ + icon_door = "warden"; + icon_state = "warden"; + name = "armorer's locker"; + req_access_txt = "3" }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/newscaster/security_unit{ + pixel_x = 28 }, -/obj/machinery/light/small{ - dir = 4 +/obj/item/clothing/shoes/combat, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/suit/armor/vest/bulletproof, +/obj/item/storage/belt/military, +/obj/item/clothing/head/cowboy/sec/minutemen, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname{ - dir = 8 +/obj/effect/turf_decal/corner/opaque/red{ + dir = 4 }, -/obj/effect/turf_decal/techfloor{ - dir = 6 +/obj/effect/turf_decal/corner/opaque/red, +/obj/item/clothing/accessory/holster, +/obj/item/ammo_box/c38/match, +/obj/item/ammo_box/c38/match, +/obj/item/gun/ballistic/revolver/detective, +/obj/item/melee/classic_baton, +/obj/item/radio/intercom/directional/north{ + pixel_y = 28 }, -/obj/effect/turf_decal/techfloor/hole, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/turf/open/floor/plasteel/dark, +/area/ship/security/prison) "an" = ( /obj/structure/sign/warning/docking, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -65,6 +77,38 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"aP" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/mining/glass{ + dir = 4; + name = "Pod Bay" + }, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/port) +"aU" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/item/megaphone/command, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "aZ" = ( /obj/structure/cable{ icon_state = "2-8" @@ -84,15 +128,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"bd" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "space_cops_bay"; - name = "Cargo Bay Blast Door" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull, -/area/ship/cargo) "bn" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "space_cops_bridge" @@ -113,15 +148,22 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"br" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 +"bx" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel, +/obj/machinery/door/airlock/mining/glass{ + dir = 4; + name = "Cargo Bay" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/starboard) "bC" = ( /obj/structure/sign/minutemen, @@ -143,22 +185,45 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) +"bJ" = ( +/obj/machinery/camera/autoname, +/obj/structure/closet/secure_closet{ + icon_door = "tac"; + icon_state = "tac"; + name = "boarding tools locker"; + req_access_txt = "3" + }, +/obj/item/storage/backpack/duffelbag/syndie/x4{ + icon_state = "duffel-sec"; + name = "breaching charges duffel bag" + }, +/obj/item/door_seal, +/obj/item/door_seal, +/obj/item/door_seal, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/prison) "bP" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security/prison) "bQ" = ( /turf/open/floor/engine/hull, /area/ship/external) -"bW" = ( -/obj/machinery/washing_machine, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/patterned, -/area/ship/crew) "ca" = ( /obj/structure/sign/number/nine, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -180,45 +245,20 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4, /turf/open/floor/engine/hull, /area/ship/external) -"cB" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/caution, -/obj/item/caution, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) -"cD" = ( -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/stairs{ - dir = 4 - }, -/area/ship/hallway/starboard) -"cL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/borderfloor{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "cQ" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/medical) -"da" = ( -/obj/machinery/door/poddoor{ - id = "space_cops_port_launcher"; - name = "Port Mass Driver Blast Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/ship/maintenance/fore) +"cY" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) "db" = ( /obj/structure{ desc = "Looks menacing, but it's rusted in place."; @@ -238,23 +278,14 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/medical) -"dB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/machinery/advanced_airlock_controller{ - pixel_x = -25 - }, +"ds" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/hallway/port) +/obj/machinery/light/small/directional/west, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/turf/open/floor/plasteel/tech, +/area/ship/security/prison) "dH" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -268,16 +299,12 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"dR" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/grey/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/security/prison) +"dK" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/mono, +/area/ship/crew) "dS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -327,61 +354,6 @@ /obj/structure/frame/machine, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"eA" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"eJ" = ( -/obj/structure/closet/secure_closet{ - icon_door = "warden"; - icon_state = "warden"; - name = "armorer's locker"; - req_access_txt = "3" - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = 28 - }, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/accessory/armband, -/obj/item/clothing/suit/armor/vest/bulletproof, -/obj/item/storage/belt/military, -/obj/item/clothing/head/cowboy/sec/minutemen, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/item/clothing/accessory/holster, -/obj/item/ammo_box/c38/match, -/obj/item/ammo_box/c38/match, -/obj/item/gun/ballistic/revolver/detective, -/obj/item/melee/classic_baton, -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security/prison) "eR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/box/corners{ @@ -447,7 +419,11 @@ /obj/effect/turf_decal/number/one, /turf/open/floor/plasteel/dark, /area/ship/security/prison) -"ge" = ( +"fY" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/security) +"ge" = ( /obj/machinery/atmospherics/pipe/simple/green/hidden/layer4{ dir = 8 }, @@ -459,70 +435,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew) -"gi" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/closet, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/turf/open/floor/plasteel/mono, -/area/ship/crew) -"gx" = ( -/obj/structure/closet/secure_closet{ - icon_door = "armory"; - icon_state = "armory"; - name = "less-lethal locker"; - req_access_txt = "3" - }, -/obj/item/storage/box/teargas, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/gun/grenadelauncher, -/obj/item/storage/box/zipties{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/storage/box/flashes{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/security/prison) "gA" = ( /obj/machinery/atmospherics/pipe/simple/green/hidden/layer4{ dir = 10 @@ -545,37 +457,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/maintenance/fore) -"he" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28; - pixel_y = -28 - }, -/obj/item/storage/backpack, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/under/rank/command/minutemen, -/obj/item/clothing/head/cowboy/sec/minutemen, -/obj/item/clothing/glasses/sunglasses, -/obj/item/radio/headset/heads/hos/alt, -/obj/item/storage/box/ids{ - pixel_x = -7 - }, -/obj/item/stamp/head_of_personnel{ - name = "lieutenant's rubber stamp" - }, -/obj/item/ammo_box/c38/match, -/obj/item/ammo_box/c38/match, -/obj/item/gun/ballistic/revolver/detective, -/obj/structure/closet/secure_closet/wall{ - dir = 4; - icon_door = "solgov_wall"; - icon_state = "solgov_wall"; - name = "bridge officer's locker"; - pixel_x = -28; - req_access_txt = "57" - }, -/turf/open/floor/carpet/royalblue, -/area/ship/bridge) "hf" = ( /obj/machinery/power/terminal{ dir = 8 @@ -612,33 +493,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security/prison) -"hs" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - dir = 8 - }, -/obj/item/gps{ - gpstag = null; - pixel_x = -9; - pixel_y = 7 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/item/areaeditor/shuttle, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"hA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/ship/crew) "hD" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/firedoor/window, @@ -648,6 +502,28 @@ }, /turf/open/floor/plating, /area/ship/hallway/starboard) +"hE" = ( +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"hH" = ( +/obj/effect/turf_decal/siding/white, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/port) "hR" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) @@ -693,19 +569,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"ij" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -28 - }, -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "iD" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, @@ -713,17 +576,42 @@ "iH" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) -"jc" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) +"jl" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/item/clothing/suit/armor/vest/bulletproof, +/obj/item/clothing/suit/armor/vest/bulletproof, +/obj/item/clothing/suit/armor/vest/bulletproof, +/obj/item/clothing/head/helmet/bulletproof/minutemen, +/obj/item/clothing/head/helmet/bulletproof/minutemen, +/obj/item/clothing/head/helmet/bulletproof/minutemen, +/obj/structure/closet/secure_closet/wall{ + dir = 1; + icon_door = "sec_wall"; + icon_state = "sec_wall"; + name = "armor locker"; + pixel_y = -28; + req_access_txt = "1" + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/item/storage/belt/military, +/obj/item/storage/belt/military, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/mask/gas/sechailer/minutemen, +/obj/item/clothing/mask/gas/sechailer/minutemen, +/obj/item/clothing/mask/gas/sechailer/minutemen, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/tech, +/area/ship/security/prison) "jw" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/corner/opaque/red, @@ -756,19 +644,6 @@ /obj/effect/turf_decal/corner/opaque/blue/diagonal, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"ke" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/machinery/navbeacon/wayfinding/sec{ - location = "Brig" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security/prison) "ko" = ( /obj/structure/cable{ icon_state = "1-8" @@ -884,6 +759,62 @@ /obj/structure/curtain, /turf/open/floor/plasteel/patterned/brushed, /area/ship/crew) +"ld" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"li" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/medical) +"ly" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Morgue" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/ship/medical) +"lH" = ( +/obj/machinery/door/airlock/mining/glass{ + dir = 4; + name = "Pod Bay" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/port) "lK" = ( /obj/structure{ desc = "Looks menacing, but it's rusted in place."; @@ -910,33 +841,53 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/starboard) -"lR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +"lQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, -/obj/machinery/computer/cargo/express{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/obj/machinery/light, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) +/obj/item/radio/intercom/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"mi" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_y = 2 + }, +/obj/structure/sign/poster/contraband/space_cops{ + pixel_x = 32 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -28 + }, +/obj/item/kitchen/knife/plastic{ + pixel_x = -3 + }, +/obj/item/kitchen/fork/plastic{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/mono, +/area/ship/crew) "mt" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) -"mE" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"mv" = ( +/obj/machinery/newscaster/directional/north{ + pixel_x = -28 }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/engineering) +/turf/open/floor/carpet, +/area/ship/crew) "mL" = ( /obj/structure/cable{ icon_state = "1-2" @@ -963,6 +914,10 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"nf" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/maintenance/fore) "nh" = ( /obj/structure/table, /obj/item/kitchen/fork/plastic{ @@ -1003,36 +958,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/starboard) -"nu" = ( -/obj/machinery/door/airlock/glass{ - name = "Crew Quarters" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/beige{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/beige{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "ny" = ( /obj/structure/cable{ icon_state = "2-4" @@ -1123,21 +1048,16 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"od" = ( -/obj/machinery/door/firedoor/border_only{ +"nQ" = ( +/obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/effect/turf_decal/industrial/traffic{ - dir = 1 - }, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/port) "oe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/patterned/cargo_one, @@ -1189,41 +1109,6 @@ dir = 4 }, /area/ship/hallway/starboard) -"oJ" = ( -/obj/machinery/door/airlock/security{ - name = "Brig"; - req_one_access_txt = "1" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/security/prison) "oY" = ( /obj/structure/table/reinforced, /obj/machinery/computer/secure_data/laptop{ @@ -1258,6 +1143,33 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/hallway/port) +"pi" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "pj" = ( /obj/machinery/mass_driver{ dir = 4; @@ -1297,18 +1209,6 @@ /obj/item/wrench/crescent, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/security) -"pI" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "pT" = ( /obj/machinery/atmospherics/components/binary/valve/digital{ dir = 8 @@ -1325,6 +1225,13 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"pZ" = ( +/obj/machinery/washing_machine, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned, +/area/ship/crew) "qc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -1339,6 +1246,23 @@ /obj/item/clothing/head/helmet/space/pilot/random, /turf/open/floor/plasteel/patterned, /area/ship/security) +"qh" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/port) "qj" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -1359,27 +1283,27 @@ }, /turf/open/floor/plasteel/tech, /area/ship/storage) -"qw" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/security) -"qx" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/traffic, -/obj/effect/turf_decal/arrows, -/turf/open/floor/plasteel/patterned, -/area/ship/security) "qB" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/machinery/pipedispenser, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"qI" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + dir = 4; + id = "space_cops_bay"; + name = "Cargo Bay Blast Door" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull, +/area/ship/cargo) +"qL" = ( +/obj/effect/turf_decal/siding/white, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ship/hallway/port) "rc" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew) @@ -1401,32 +1325,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"rg" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "rk" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1453,25 +1351,10 @@ }, /turf/open/floor/plating, /area/ship/security/prison) -"rp" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) "rw" = ( /obj/structure/sign/poster/official/cleanliness, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) -"rx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/security) "rz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1513,16 +1396,16 @@ /obj/item/clothing/under/rank/security/officer/minutemen, /turf/open/floor/plasteel/tech, /area/ship/security/prison) -"rF" = ( -/obj/machinery/light/small{ +"rK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/item/radio/intercom{ - pixel_y = 28 +/obj/machinery/computer/cargo/express{ + dir = 1 }, -/turf/open/floor/plasteel/tech, -/area/ship/storage) +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "rZ" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1537,40 +1420,42 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"so" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/warden, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) -"su" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, +"sb" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/turf/open/floor/plasteel/mono, +/area/ship/crew) +"so" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/warden, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"su" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/five, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/security) -"sK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/medical) "sL" = ( /obj/machinery/computer/helm{ dir = 8 @@ -1597,35 +1482,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"sM" = ( -/obj/machinery/cryopod, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/cryopod{ - pixel_y = 28 - }, -/turf/open/floor/carpet, -/area/ship/crew) -"sY" = ( -/obj/machinery/door/window/brigdoor/eastright{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/machinery/light, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/ship/bridge) -"th" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "tl" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1648,16 +1504,17 @@ }, /turf/open/floor/plasteel, /area/ship/medical) +"to" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/patterned, +/area/ship/security) "tr" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) -"tv" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/security/prison) "tO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -1691,16 +1548,6 @@ /obj/item/clothing/gloves/color/latex/nitrile, /turf/open/floor/plasteel, /area/ship/medical) -"tT" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/ship/hallway/starboard) "uf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -1710,21 +1557,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"us" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Pod Bay" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/port) "ut" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -1734,26 +1566,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"uy" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/door/poddoor{ - id = "space_cops_windows" - }, -/obj/structure/window/plasma/reinforced/spawner/east, -/turf/open/floor/plating, -/area/ship/engineering) -"uL" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/patterned, -/area/ship/security) "uM" = ( /obj/structure/table/reinforced, /obj/structure/railing{ @@ -1778,39 +1590,6 @@ /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"uN" = ( -/obj/machinery/camera/autoname, -/obj/structure/closet/secure_closet{ - icon_door = "tac"; - icon_state = "tac"; - name = "boarding tools locker"; - req_access_txt = "3" - }, -/obj/item/storage/backpack/duffelbag/syndie/x4{ - icon_state = "duffel-sec"; - name = "breaching charges duffel bag" - }, -/obj/item/door_seal, -/obj/item/door_seal, -/obj/item/door_seal, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/security/prison) "uT" = ( /obj/effect/turf_decal/siding/white/corner{ dir = 4 @@ -1839,14 +1618,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plasteel/white, /area/ship/medical) -"vn" = ( -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "space_cops_bridge" - }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/bridge) "vo" = ( /obj/machinery/atmospherics/pipe/simple/green/hidden/layer4, /obj/machinery/door/firedoor/window, @@ -1864,27 +1635,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"vw" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/green/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/engineering) "vK" = ( /obj/effect/turf_decal/box/corners, /obj/structure/closet/crate, @@ -1901,6 +1651,17 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/starboard) +"wf" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/sign/poster/official/safety_internals{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/fore) "wh" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1922,44 +1683,22 @@ /obj/machinery/atmospherics/pipe/simple/green/hidden/layer4, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"wE" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/starboard) -"wF" = ( -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/open/floor/carpet, -/area/ship/crew) -"wH" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/structure/cable{ - icon_state = "0-8" +"wv" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/sign/minutemen{ - pixel_y = 32 +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/fore) +"wD" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine/longrange, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/machinery/autolathe, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "wM" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -2034,6 +1773,25 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/maintenance/fore) +"xd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "xf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/traffic{ @@ -2041,6 +1799,13 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"xi" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "xk" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2060,10 +1825,75 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"xp" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/engineering) "xs" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical) +"xu" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"xy" = ( +/obj/machinery/door/airlock/security{ + dir = 4; + name = "Brig"; + req_one_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/security/prison) "xD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -2075,6 +1905,19 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/port) +"xF" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/ship/bridge) "xO" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -2114,6 +1957,20 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"xV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plasteel/white, +/area/ship/medical) "xX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/box/corners{ @@ -2130,53 +1987,12 @@ }, /turf/open/floor/carpet, /area/ship/crew) -"ym" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 +"yG" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 4 }, -/turf/open/floor/plasteel, /area/ship/hallway/port) -"yJ" = ( -/obj/structure/tank_dispenser, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/maintenance/fore) -"yN" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -5 - }, -/obj/item/storage/bag/trash{ - pixel_x = 5 - }, -/obj/item/mop, -/turf/open/floor/plasteel/tech, -/area/ship/storage) "yO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -2206,14 +2022,6 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"zt" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/mono, -/area/ship/crew) "zy" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/reagent_containers/food/condiment/rice, @@ -2238,6 +2046,43 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/security) +"zG" = ( +/obj/structure/closet/secure_closet{ + icon_door = "armory"; + icon_state = "armory"; + name = "less-lethal locker"; + req_access_txt = "3" + }, +/obj/item/storage/box/teargas, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/grenadelauncher, +/obj/item/storage/box/zipties{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/storage/box/flashes{ + pixel_x = -1; + pixel_y = 14 + }, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/prison) "zL" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2249,6 +2094,10 @@ /obj/effect/turf_decal/siding/white, /turf/open/floor/plasteel, /area/ship/hallway/starboard) +"zN" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "zR" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2272,20 +2121,6 @@ }, /turf/open/floor/carpet/royalblue, /area/ship/bridge) -"zZ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "Ac" = ( /obj/structure/sign/minutemen, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -2316,6 +2151,25 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/port) +"Al" = ( +/obj/machinery/door/firedoor/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "space_cops_bridge" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) +"Aw" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/machinery/navbeacon/wayfinding/sec{ + location = "Brig" + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/security/prison) "AK" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks, @@ -2325,38 +2179,67 @@ }, /turf/open/floor/plasteel/mono, /area/ship/crew) -"AT" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 +"AS" = ( +/obj/machinery/door/airlock/mining/glass{ + dir = 4; + name = "Cargo Bay" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/firealarm{ - pixel_y = 25 +/obj/effect/turf_decal/borderfloor{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/starboard) "AV" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/stairs{ dir = 4 }, /area/ship/hallway/port) -"Bf" = ( -/obj/machinery/light/small{ - dir = 8 +"AY" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/machinery/door/poddoor{ + dir = 4; + id = "space_cops_windows" }, -/obj/machinery/advanced_airlock_controller{ - pixel_x = -25 +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/hallway/starboard) +/obj/machinery/door/window/eastright{ + name = "Engine Access" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Ba" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/port) "Bh" = ( /obj/effect/turf_decal/siding/white{ dir = 4 @@ -2379,23 +2262,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"Bo" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/starboard) "BC" = ( /obj/structure/lattice, /turf/template_noop, @@ -2408,6 +2274,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"BG" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/caution, +/obj/item/caution, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) "BJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -2422,13 +2296,6 @@ /obj/effect/turf_decal/box/corners, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/security) -"BN" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "Ci" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/window, @@ -2463,6 +2330,12 @@ /obj/effect/decal/cleanable/oil/slippery, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"Cr" = ( +/obj/structure/chair, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/mono, +/area/ship/crew) "Cs" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -2491,12 +2364,6 @@ dir = 4 }, /area/ship/hallway/port) -"CZ" = ( -/obj/structure/chair, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/mono, -/area/ship/crew) "Da" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2518,114 +2385,32 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/starboard) +"Db" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "De" = ( /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"Dp" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/plasteel, -/area/ship/hallway/starboard) -"Dw" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Pod Bay" - }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/port) -"DH" = ( -/obj/machinery/door/airlock/maintenance/external/glass{ - name = "Storage Bay" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/storage) -"DL" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +"Dt" = ( /obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/starboard) -"DT" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/effect/turf_decal/borderfloor{ dir = 1 }, -/obj/structure/rack, -/obj/item/roller{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/roller{ - pixel_y = 5 +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 }, -/obj/item/roller{ - pixel_x = 5 +/obj/effect/turf_decal/arrows{ + dir = 1 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "DV" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2637,19 +2422,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ship/crew) -"Ee" = ( -/obj/effect/turf_decal/siding/wideplating{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - name = "Morgue" - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/ship/medical) "Ef" = ( /obj/structure/chair{ dir = 4 @@ -2703,6 +2475,14 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Ez" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/starboard) "EH" = ( /obj/machinery/door/firedoor/window, /obj/machinery/door/poddoor/shutters{ @@ -2712,32 +2492,27 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/hallway/starboard) -"EP" = ( -/obj/structure/cable{ - icon_state = "0-2" +"ER" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/closet/crate{ - name = "emergency space suit crate" +/obj/effect/turf_decal/borderfloor{ + dir = 1 }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/oxygen/red, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/maintenance/fore) +/obj/structure/rack, +/obj/item/roller{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/roller{ + pixel_y = 5 + }, +/obj/item/roller{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) "EY" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -2750,6 +2525,21 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"Fl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plasteel, +/area/ship/hallway/starboard) "Fm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/decal/cleanable/oil/streak, @@ -2818,6 +2608,26 @@ /obj/structure/table/optable, /turf/open/floor/plasteel/white, /area/ship/medical) +"FL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "engine fuel pump" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/effect/turf_decal/techfloor/hole, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "FN" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/sign/warning/nosmoking{ @@ -2861,35 +2671,54 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/turf_decal/corner/opaque/bottlegreen{ +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"FU" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Go" = ( +/obj/machinery/door/window/brigdoor/eastright{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/ship/bridge) +"Gu" = ( +/obj/machinery/door/airlock/maintenance/external/glass{ + dir = 4; + name = "EVA Suit Storage" + }, +/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/white, -/area/ship/medical) -"FU" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Gg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -28 + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/borderfloor{ + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/fore) "Gw" = ( /obj/machinery/atmospherics/components/unary/passive_vent/layer4{ dir = 1 @@ -2906,23 +2735,6 @@ /obj/effect/landmark/start/medical_doctor, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"GN" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/maintenance/fore) -"Hj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Hm" = ( /obj/structure/bed, /obj/item/bedsheet/blue, @@ -2989,6 +2801,11 @@ /obj/item/storage/box/emptysandbags, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"Is" = ( +/obj/machinery/light/directional/north, +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/ship/crew) "Iw" = ( /obj/structure{ desc = "Looks menacing, but it's rusted in place."; @@ -2999,21 +2816,6 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ship/storage) -"Ix" = ( -/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{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "Iy" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -3037,6 +2839,16 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ship/maintenance/fore) +"Jk" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Jm" = ( /obj/effect/turf_decal/box, /obj/item/tank/jetpack/carbondioxide, @@ -3077,18 +2889,16 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"JZ" = ( -/obj/machinery/light{ +"JT" = ( +/obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/effect/turf_decal/borderfloor{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/open/floor/plasteel, +/area/ship/hallway/starboard) "Ki" = ( /obj/machinery/shower{ pixel_y = 13 @@ -3119,17 +2929,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security/prison) -"KS" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/fore) "KX" = ( /obj/structure/sign/poster/contraband/hacking_guide, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -3181,30 +2980,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/security) -"Ls" = ( -/obj/machinery/door/airlock/maintenance/external/glass{ - name = "EVA Suit Storage" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/fore) "Lv" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3216,22 +2991,32 @@ /obj/machinery/atmospherics/pipe/simple/green/hidden/layer4, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"Lz" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/door/poddoor{ - id = "space_cops_windows" - }, +"LB" = ( /obj/structure/cable{ - icon_state = "0-8" + icon_state = "0-2" }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/closet/crate{ + name = "emergency space suit crate" }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/oxygen/red, +/obj/item/tank/internals/oxygen/red, +/obj/item/tank/internals/oxygen/red, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/maintenance/fore) "LG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -3274,6 +3059,26 @@ /obj/machinery/door/airlock/external/glass, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/port) +"LX" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/machinery/door/poddoor{ + dir = 4; + id = "space_cops_windows" + }, +/obj/structure/window/plasma/reinforced/spawner/east, +/turf/open/floor/plating, +/area/ship/engineering) +"LZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/grey, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/turf/open/floor/plasteel/dark, +/area/ship/security/prison) "Ma" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3312,6 +3117,14 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"MJ" = ( +/obj/machinery/cryopod, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 28 + }, +/turf/open/floor/carpet, +/area/ship/crew) "MN" = ( /obj/machinery/atmospherics/components/binary/pump/on/layer2{ name = "Air to Distro" @@ -3356,88 +3169,75 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/port) -"Nb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +"Nv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/structure/chair/office/light{ dir = 1 }, -/obj/effect/turf_decal/industrial/loading, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +/obj/structure/sign/poster/official/moth/epi{ + pixel_y = -32 }, /turf/open/floor/plasteel, /area/ship/medical) -"Nu" = ( -/obj/structure/table/reinforced, -/obj/structure/railing{ - dir = 8 +"NI" = ( +/obj/machinery/door/airlock/glass{ + dir = 4; + name = "Crew Quarters" }, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/item/radio/intercom{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/item/megaphone/command, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Nv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/structure/chair/office/light{ +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/beige{ dir = 1 }, -/obj/structure/sign/poster/official/moth/epi{ - pixel_y = -32 +/obj/effect/turf_decal/corner/opaque/beige{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/medical) -"NO" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"NL" = ( +/obj/machinery/door/airlock/maintenance/external/glass{ + dir = 4; + name = "Storage Bay" }, -/obj/item/clothing/suit/armor/vest/bulletproof, -/obj/item/clothing/suit/armor/vest/bulletproof, -/obj/item/clothing/suit/armor/vest/bulletproof, -/obj/item/clothing/head/helmet/bulletproof/minutemen, -/obj/item/clothing/head/helmet/bulletproof/minutemen, -/obj/item/clothing/head/helmet/bulletproof/minutemen, -/obj/structure/closet/secure_closet/wall{ - dir = 1; - icon_door = "sec_wall"; - icon_state = "sec_wall"; - name = "armor locker"; - pixel_y = -28; - req_access_txt = "1" +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/mask/gas/sechailer/minutemen, -/obj/item/clothing/mask/gas/sechailer/minutemen, -/obj/item/clothing/mask/gas/sechailer/minutemen, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/borderfloor{ + dir = 8 }, /turf/open/floor/plasteel/tech, -/area/ship/security/prison) +/area/ship/storage) "NS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/grey/diagonal, @@ -3454,6 +3254,47 @@ /obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"Os" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_x = -25 + }, +/turf/open/floor/plasteel/patterned/ridged, +/area/ship/hallway/starboard) +"Ou" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"OF" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/patterned, +/area/ship/security) +"OM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Py" = ( /obj/effect/turf_decal/siding/white, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -3495,31 +3336,16 @@ "PX" = ( /turf/template_noop, /area/template_noop) -"Ql" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/clothing/suit/space/hardsuit/security/independent, -/obj/machinery/suit_storage_unit/inherit, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/maintenance/fore) -"Qu" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +"Qp" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "space_cops_bay"; + name = "Cargo Bay Blast Door" }, -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/structure/curtain/bounty, -/obj/effect/turf_decal/borderfloor, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull, +/area/ship/cargo) "Qy" = ( /obj/structure/chair, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -3527,28 +3353,15 @@ }, /turf/open/floor/plasteel/mono, /area/ship/crew) -"QC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden/layer4{ - dir = 5 +"Qz" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "space_cops_port_launcher"; + name = "Port Mass Driver Blast Door" }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "QJ" = ( /obj/structure/chair{ dir = 4 @@ -3556,6 +3369,12 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) +"QM" = ( +/obj/structure/tank_dispenser, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/maintenance/fore) "QS" = ( /obj/effect/turf_decal/borderfloor{ dir = 1 @@ -3598,17 +3417,6 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"Rj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "Rx" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -3617,19 +3425,48 @@ /obj/effect/spawner/lootdrop/maintenance/five, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/security) -"RF" = ( -/obj/structure/chair{ - dir = 4 +"Rz" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/obj/structure/railing{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -5 }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" +/obj/item/storage/bag/trash{ + pixel_x = 5 }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) +/obj/item/mop, +/turf/open/floor/plasteel/tech, +/area/ship/storage) +"RA" = ( +/obj/machinery/firealarm/directional/west, +/obj/item/storage/backpack, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/under/rank/command/minutemen, +/obj/item/clothing/head/cowboy/sec/minutemen, +/obj/item/clothing/glasses/sunglasses, +/obj/item/radio/headset/heads/hos/alt, +/obj/item/storage/box/ids{ + pixel_x = -7 + }, +/obj/item/stamp/head_of_personnel{ + name = "lieutenant's rubber stamp" + }, +/obj/item/ammo_box/c38/match, +/obj/item/ammo_box/c38/match, +/obj/item/gun/ballistic/revolver/detective, +/obj/structure/closet/secure_closet/wall{ + dir = 4; + icon_door = "solgov_wall"; + icon_state = "solgov_wall"; + name = "bridge officer's locker"; + pixel_x = -28; + req_access_txt = "57" + }, +/turf/open/floor/carpet/royalblue, +/area/ship/bridge) "RI" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3656,37 +3493,7 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"RS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"RV" = ( -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Sd" = ( +"RO" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -3703,6 +3510,7 @@ dir = 4 }, /obj/machinery/door/airlock/medical/glass{ + dir = 4; name = "Infirmary" }, /obj/effect/turf_decal/corner/opaque/bottlegreen{ @@ -3716,6 +3524,14 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) +"RT" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) "Sj" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/storage) @@ -3733,26 +3549,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"St" = ( -/obj/machinery/door/poddoor{ - id = "space_cops_starboard_launcher"; - name = "Cargo Bay Blast Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/ship/storage) -"Sv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/plasteel, -/area/ship/hallway/port) "Sz" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3800,16 +3596,24 @@ /obj/effect/turf_decal/siding/white/corner, /turf/open/floor/plasteel, /area/ship/hallway/port) -"SJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 +"SO" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/directional/east, +/obj/item/gps{ + gpstag = null; + pixel_x = -9; + pixel_y = 7 }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1" +/obj/effect/turf_decal/borderfloor{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/security/prison) +/obj/item/areaeditor/shuttle, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "SP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/stairs{ @@ -3838,26 +3642,6 @@ /obj/effect/landmark/start/station_engineer, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"Ta" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/fore) -"Tg" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ship/hallway/port) "To" = ( /obj/structure/closet/crate{ name = "food crate" @@ -3902,36 +3686,59 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/mono, /area/ship/crew) -"Tt" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/door/poddoor{ - id = "space_cops_windows" +"Tv" = ( +/obj/structure/cable{ + icon_state = "1-8" }, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "1-4" }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/green/hidden/layer4{ + dir = 5 }, -/turf/open/floor/plating, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"Tx" = ( -/obj/machinery/power/smes/engineering, +"TA" = ( /obj/structure/cable{ - icon_state = "0-4" + icon_state = "1-8" }, -/obj/machinery/light/small{ - dir = 8 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/techfloor/orange{ - dir = 8 + dir = 4 + }, +/obj/effect/turf_decal/techfloor/hole{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/hidden/layer4, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"TL" = ( +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/starboard) "TT" = ( /obj/structure/table, /obj/item/storage/backpack/duffelbag/med/surgery{ @@ -3958,13 +3765,31 @@ /obj/effect/turf_decal/siding/white, /turf/open/floor/plasteel, /area/ship/hallway/port) -"Ur" = ( -/obj/machinery/airalarm/all_access{ +"Ui" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/machinery/door/poddoor{ dir = 4; - pixel_x = -25 + id = "space_cops_windows" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Ul" = ( +/obj/effect/decal/cleanable/oil/streak, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" }, /turf/open/floor/plasteel/patterned, -/area/ship/cargo) +/area/ship/security) "UD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -4037,20 +3862,54 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"Vj" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +"UX" = ( +/obj/machinery/light/directional/north, +/obj/machinery/modular_computer/console/preset/command, +/obj/effect/turf_decal/borderfloor{ dir = 1 }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"UY" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/hardsuit/security/independent, +/obj/machinery/suit_storage_unit/inherit, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/maintenance/fore) "Vp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"VA" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/engineering) "VD" = ( /obj/structure{ desc = "Looks menacing, but it's rusted in place."; @@ -4066,6 +3925,15 @@ /obj/item/clothing/head/welding, /turf/open/floor/plasteel/patterned, /area/ship/security) +"VP" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "space_cops_starboard_launcher"; + name = "Cargo Bay Blast Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ship/storage) "Wc" = ( /obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/effect/turf_decal/siding/thinplating/dark/corner{ @@ -4077,15 +3945,6 @@ /obj/effect/landmark/start/captain, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Wh" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/plasteel/stairs{ - dir = 4 - }, -/area/ship/hallway/port) "Wl" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4126,29 +3985,22 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/crew) -"Ww" = ( -/obj/structure/cable{ - icon_state = "1-8" +"Wu" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor/hole{ - dir = 4 + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{ - dir = 4 +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/sign/minutemen{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/green/hidden/layer4, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine/longrange, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "WE" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/button/door{ @@ -4167,48 +4019,6 @@ "Xb" = ( /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"Xm" = ( -/obj/machinery/door/poddoor{ - id = "space_cops_bay"; - name = "Cargo Bay Blast Door" - }, -/obj/structure/fans/tiny, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull, -/area/ship/cargo) -"Xr" = ( -/obj/effect/decal/cleanable/oil/streak, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/security) -"XB" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_y = 2 - }, -/obj/structure/sign/poster/contraband/space_cops{ - pixel_x = 32 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -28 - }, -/obj/item/kitchen/knife/plastic{ - pixel_x = -3 - }, -/obj/item/kitchen/fork/plastic{ - pixel_x = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/mono, -/area/ship/crew) "XO" = ( /obj/structure/bed, /obj/structure/curtain/bounty, @@ -4219,12 +4029,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/ship/crew) +"XT" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/item/radio/intercom/directional/north{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/tech, +/area/ship/storage) "XY" = ( /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 4 }, /turf/open/floor/plasteel/tech, /area/ship/security/prison) +"XZ" = ( +/obj/item/radio/intercom/directional/north{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/ship/hallway/starboard) "Yl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/decal/cleanable/dirt, @@ -4245,12 +4071,30 @@ }, /turf/open/floor/plasteel/mono, /area/ship/crew) +"Yy" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/yellow, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "YA" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) "YD" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/starboard) +"YF" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/curtain/bounty, +/obj/effect/turf_decal/borderfloor, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "YL" = ( /obj/structure/cable{ icon_state = "2-4" @@ -4268,21 +4112,18 @@ }, /turf/open/floor/carpet/royalblue, /area/ship/bridge) -"YY" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/cable{ - icon_state = "4-8" +"YZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/ship/bridge) +/obj/effect/turf_decal/industrial/loading, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/medical) "Za" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/item/stack/cable_coil/blue, @@ -4306,6 +4147,13 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) +"Zk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/industrial/traffic, +/obj/effect/turf_decal/arrows, +/turf/open/floor/plasteel/patterned, +/area/ship/security) "Zn" = ( /obj/effect/turf_decal/siding/white, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -4346,6 +4194,21 @@ }, /turf/open/floor/carpet, /area/ship/crew) +"Zz" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_x = -25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned/ridged, +/area/ship/hallway/port) "ZK" = ( /obj/machinery/flasher{ id = "Cell 1"; @@ -4373,6 +4236,28 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/security) +"ZN" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"ZO" = ( +/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{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "ZP" = ( /obj/structure/sign/number/five, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -4401,11 +4286,11 @@ PX PX PX PX -PX +jy tr tr tr -PX +jy PX PX PX @@ -4417,17 +4302,17 @@ PX PX PX PX -PX +jy Iy Iy jy -uy -uy -uy +LX +LX +LX jy Iy Iy -PX +jy PX PX PX @@ -4437,15 +4322,15 @@ PX PX PX fj -Lz -Tt +Ui +AY KX wM ZS RM jy -Lz -Tt +Ui +AY VD PX PX @@ -4458,11 +4343,11 @@ PX jy Mp ap -Tx +Ou nm uW dS -pI +Yy hf hT jy @@ -4482,8 +4367,8 @@ xk MN Lv wh -Ww -QC +TA +Tv jy iH PX @@ -4494,7 +4379,7 @@ PX PX jy jy -mE +xp jy qB pT @@ -4502,7 +4387,7 @@ Oq ox jy jy -vw +VA rw jy PX @@ -4512,17 +4397,17 @@ PX PX bQ az -sK -Nb +li +YZ jy FU wN -ai -Hj +FL +Db jy Ki ge -bW +pZ rc bQ PX @@ -4551,12 +4436,12 @@ PX cQ az tO -Ee +ly bP -dR +LZ ZK bP -SJ +ds bP rc DV @@ -4568,18 +4453,18 @@ PX (10,1,1) = {" PX db -JZ +ZN ut -Gg +lQ bP NS fV kr XY bP -sM +MJ yg -wF +mv XO lK PX @@ -4596,7 +4481,7 @@ LG LG Kw bP -hA +Is tl Zy Kn @@ -4610,15 +4495,15 @@ TT kF FQ bP -uN +bJ hj jw -ke +Aw bP zy Yq Tr -gi +sb rc PX "} @@ -4627,14 +4512,14 @@ PX dl QS Eu -Rj +OM bP -gx +zG Fm nF -NO +jl bP -zt +dK Re Qy nh @@ -4644,9 +4529,9 @@ PX (14,1,1) = {" PX az -DT +ER fM -RS +xV bP Eh IO @@ -4655,8 +4540,8 @@ rz bP AK ny -CZ -XB +Cr +mi rc PX "} @@ -4665,15 +4550,15 @@ an az az xs -Sd +RO bP -eJ +ah LK oY kp bP rc -nu +NI rc rc rc @@ -4681,38 +4566,38 @@ yY "} (16,1,1) = {" LN -dB +Zz SU xD -Sv -tv +Ba +bP bP Ci bP -oJ +xy bP YD Da vL UJ -Bf +Os Fw "} (17,1,1) = {" bC ej ej -ym +qh SD rk UD Zq -eA +xd aZ -Ix +ZO rf Sz -Dp +Fl YD YD Ac @@ -4741,15 +4626,15 @@ PX PX pv Ah -Tg +qL UO -RF +xu Ef ZL Ef -zZ +ld UO -br +JT lM hD PX @@ -4759,7 +4644,7 @@ PX PX PX ej -AT +nQ Ue Zf Rf @@ -4769,7 +4654,7 @@ QJ QJ Zf xO -Bo +TL YD PX PX @@ -4817,15 +4702,15 @@ PX PX ej CE -Vj +hH Jv -YY +xF US -Nu +aU uM -sY +Go Jv -tT +Ez Zn YD PX @@ -4836,15 +4721,15 @@ PX PX pv CN -Wh +yG Jv nP Wc -RV +hE UF Lb Jv -cD +XZ PK hD PX @@ -4857,7 +4742,7 @@ oZ AV Kk Jv -wH +Wu ov jQ eg @@ -4873,17 +4758,17 @@ PX PX eU ej -us -Dw +lH +aP Jv Jv Jv -rg +pi Jv Jv Jv -wE -DL +bx +AS YD ar PX @@ -4891,19 +4776,19 @@ PX (27,1,1) = {" PX hR -qw +fY WY WY Jv Hm FB Lf -he -Qu +RA +YF Jv SR aO -Ur +zN mt PX "} @@ -4912,15 +4797,15 @@ PX hR pC xX -Xr +Ul Jv -cL +UX zS BJ YV ie Jv -BN +xi Ip oD mt @@ -4935,8 +4820,8 @@ ZM YA Jv sL -hs -ij +SO +Jk Jv YA Xb @@ -4948,19 +4833,19 @@ PX (30,1,1) = {" PX ck -rx +to VF Za Zu YA -vn -vn -vn +Al +Al +Al YA Xb Li ko -lR +rK ky PX "} @@ -5005,19 +4890,19 @@ PX (33,1,1) = {" PX hR -uL +OF qc Lp Fu -qx +Zk cg oe fc -od +Dt SR ia Sl -th +wD mt PX "} @@ -5026,7 +4911,7 @@ PX nE GC GC -Ls +Gu GC GC WE @@ -5034,7 +4919,7 @@ xf PS Wm bD -DH +NL iD Wm Sj @@ -5044,17 +4929,17 @@ PX PX PX GC -yJ +QM Ma oC GC -Xm -bd -bd +Qp +qI +qI Wm FN HK -rp +RT Wm PX PX @@ -5063,17 +4948,17 @@ PX PX PX GC -EP +LB RI -Ql +UY GC Ii Ii Ii Wm -cB +BG Jp -jc +cY Wm PX PX @@ -5082,7 +4967,7 @@ PX PX PX nE -GN +nf Sk Jm GC @@ -5102,15 +4987,15 @@ PX PX PX GC -Ta -KS +wf +wv GC PX PX PX Wm -rF -yN +XT +Rz Wm PX PX @@ -5160,13 +5045,13 @@ PX PX PX GC -da +Qz GC PX PX PX Wm -St +VP Wm PX PX diff --git a/_maps/deprecated/Ships/nanotrasen_pubby.dmm b/_maps/deprecated/Ships/nanotrasen_pubby.dmm index ac89570a0eb0..a1680beacbaf 100644 --- a/_maps/deprecated/Ships/nanotrasen_pubby.dmm +++ b/_maps/deprecated/Ships/nanotrasen_pubby.dmm @@ -1,17 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"af" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/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/ship/cargo) "aj" = ( /obj/structure/railing/corner, /obj/effect/decal/cleanable/dirt, @@ -178,6 +165,29 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"dx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/ntspaceworks_small/left{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"dH" = ( +/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/ship/engineering) "dY" = ( /obj/structure/cable{ icon_state = "1-2" @@ -188,6 +198,23 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"ea" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Engine Access" + }, +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteshipubbyEngines" + }, +/turf/open/floor/plating, +/area/ship/engineering) "eC" = ( /obj/effect/turf_decal/industrial/caution, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -204,47 +231,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"eH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"eN" = ( -/obj/machinery/button/door{ - id = "whiteship_windows"; - name = "Windows Blast Door Control"; - pixel_x = -5; - pixel_y = 26 - }, -/obj/machinery/button/door{ - id = "whiteship_bridge"; - name = "Bridge Blast Door Control"; - pixel_x = 5; - pixel_y = 26 - }, -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"eO" = ( -/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{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "eU" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ @@ -289,71 +275,21 @@ }, /turf/open/floor/engine, /area/ship/cargo) -"ge" = ( -/obj/effect/turf_decal/spline/fancy/opaque/black{ +"gf" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"gE" = ( -/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 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"gK" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/industrial/warning{ +"hf" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/pod/light, -/area/ship/crew/dorm) -"gV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"gZ" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -25 - }, -/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/ship/crew/office) "hs" = ( /obj/machinery/power/smes{ charge = 1e+006 @@ -372,25 +308,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"hJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Engine Access" - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor{ - id = "whiteshipubbyEngines" - }, -/turf/open/floor/plating, -/area/ship/engineering) "ii" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical{ @@ -409,6 +326,19 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"ip" = ( +/obj/effect/turf_decal/industrial/stand_clear, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "pubbywspodnw"; + name = "Pod Door Control"; + pixel_x = -25 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/ship/cargo) "iD" = ( /obj/effect/turf_decal/box, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -436,6 +366,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/red, /area/ship/bridge) +"jv" = ( +/obj/structure/bed, +/obj/structure/curtain/bounty, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/firealarm/directional/west, +/obj/item/bedsheet/nanotrasen, +/turf/open/floor/wood, +/area/ship/crew/office) "jx" = ( /obj/structure/railing, /obj/structure/railing{ @@ -461,28 +401,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"jQ" = ( -/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 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"km" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "kU" = ( /obj/machinery/door/airlock/external/glass, /obj/effect/mapping_helpers/airlock/cyclelink_helper, @@ -520,17 +438,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/ship/bridge) -"lo" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "lp" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -593,16 +500,6 @@ }, /turf/open/floor/engine, /area/ship/cargo) -"mI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "mL" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt/dust, @@ -618,34 +515,35 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"mW" = ( -/obj/structure/table/reinforced, -/obj/machinery/power/apc/auto_name/north{ - pixel_y = 25 +"mM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/item/phone{ - pixel_x = 8; - pixel_y = -2 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/item/flashlight/lamp{ - pixel_x = -6; - pixel_y = 8 +/obj/effect/turf_decal/number/nine{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 8 +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"mV" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_bridge" }, -/obj/item/photo{ - pixel_y = -12 +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/item/toy/figure/captain{ - pixel_x = 7; - pixel_y = 12 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plating, /area/ship/bridge) "na" = ( /obj/effect/decal/cleanable/dirt, @@ -654,18 +552,13 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew/office) -"nb" = ( +"nc" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 8 }, /obj/structure/bookcase/random/fiction, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -32 - }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, /turf/open/floor/wood, /area/ship/bridge) "nj" = ( @@ -675,6 +568,16 @@ "nt" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/dorm) +"nA" = ( +/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/ship/engineering) "nF" = ( /obj/effect/turf_decal/industrial/caution, /obj/structure/railing/corner{ @@ -717,6 +620,13 @@ /obj/item/ammo_box/magazine/co9mm, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"oM" = ( +/obj/structure/railing, +/obj/machinery/computer/crew/retro{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "pz" = ( /obj/structure/closet/crate/bin, /obj/item/trash/pistachios{ @@ -731,19 +641,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"pM" = ( -/obj/structure/bed, -/obj/structure/curtain/bounty, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/item/bedsheet/nanotrasen, -/turf/open/floor/wood, -/area/ship/crew/office) "pO" = ( /obj/machinery/door/airlock/hatch, /obj/structure/cable{ @@ -757,20 +654,26 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/pod, /area/ship/hallway/central) -"pP" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/robot_debris, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew/office) "pR" = ( /obj/effect/turf_decal/box/corners{ dir = 4 }, /turf/open/floor/engine, /area/ship/cargo) +"qd" = ( +/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/ship/engineering) "qh" = ( /obj/machinery/door/airlock/hatch, /obj/effect/decal/cleanable/dirt, @@ -820,19 +723,48 @@ "qO" = ( /turf/closed/wall/mineral/titanium, /area/ship/engineering) -"rp" = ( -/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{ - dir = 1; - pixel_y = -25 +"qS" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/crew/office) +"qZ" = ( +/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/ship/hallway/central) +"rf" = ( +/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/ship/crew/office) "rA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -915,16 +847,27 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew/office) -"tR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +"tL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew/office) +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/ship/engineering) +"tW" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "uc" = ( /obj/effect/decal/cleanable/generic, /obj/structure/chair/office/light{ @@ -932,35 +875,28 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew/office) -"ug" = ( -/obj/structure/railing{ - dir = 8 +"up" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/kirbyplants/random, -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ship/crew/office) +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "uB" = ( /obj/effect/turf_decal/spline/fancy/opaque/black, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"uW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "vs" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -972,6 +908,26 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering) +"vv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Engine Access" + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteshipubbyEngines" + }, +/turf/open/floor/plating, +/area/ship/engineering) "vC" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo) @@ -1004,6 +960,15 @@ /obj/machinery/door/airlock/public/glass, /turf/open/floor/plasteel, /area/ship/crew/office) +"vQ" = ( +/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/ship/crew/office) "vS" = ( /obj/structure/railing{ dir = 8 @@ -1026,27 +991,61 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"vY" = ( -/obj/machinery/computer/monitor, -/obj/effect/turf_decal/industrial/warning/corner{ +"wx" = ( +/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 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"wE" = ( -/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 +/obj/item/stamp/captain{ + pixel_x = -6; + pixel_y = 8 }, -/obj/machinery/light{ +/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/ship/bridge) +"wD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/helm/retro{ dir = 8 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/engine, -/area/ship/cargo) +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"wL" = ( +/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/ship/engineering) "wO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -1056,20 +1055,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/pod, /area/ship/crew/dorm) -"wX" = ( -/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 +"wZ" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/knife{ + pixel_x = -6 }, -/obj/machinery/door/airlock/engineering, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) +/obj/item/kitchen/rollingpin, +/obj/machinery/light/directional/north, +/turf/open/floor/plastic, +/area/ship/crew/office) "xy" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 4 @@ -1084,26 +1078,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"xH" = ( -/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{ - dir = 4; - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) "xL" = ( /obj/effect/turf_decal/siding/brown, /obj/effect/turf_decal/spline/fancy/opaque/black{ @@ -1113,6 +1087,22 @@ /obj/machinery/suit_storage_unit/mining/eva, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/office) +"yb" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/pod/light, +/area/ship/crew/dorm) "ye" = ( /obj/effect/turf_decal/box, /obj/structure/table/reinforced, @@ -1141,46 +1131,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ship/cargo) -"yQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/railing, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plastic, -/area/ship/crew/office) -"yR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +"yO" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "1-4" }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"yT" = ( -/obj/structure/bed/dogbed{ - anchored = 1; - name = "citrus's bed" - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 9 - }, -/mob/living/simple_animal/sloth/citrus, -/obj/machinery/light{ - dir = 4 +"yQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 }, -/turf/open/floor/pod, -/area/ship/crew/dorm) +/obj/structure/railing, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plastic, +/area/ship/crew/office) "yV" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1224,13 +1195,6 @@ "zr" = ( /turf/closed/wall/mineral/titanium, /area/ship/bridge) -"zw" = ( -/obj/machinery/computer/helm{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "zx" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -1244,13 +1208,6 @@ }, /turf/open/floor/engine, /area/ship/cargo) -"Ai" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/structure/railing, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "AZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -1295,6 +1252,18 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Cx" = ( +/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 + }, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/cargo) "Cz" = ( /obj/item/reagent_containers/food/condiment/sugar, /obj/item/reagent_containers/food/condiment/rice, @@ -1321,20 +1290,6 @@ /obj/item/storage/fancy/egg_box, /turf/open/floor/plastic, /area/ship/crew/office) -"CA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "CL" = ( /obj/machinery/vending/cola/random, /obj/effect/turf_decal/industrial/warning{ @@ -1343,34 +1298,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"CU" = ( -/obj/effect/turf_decal/industrial/stand_clear, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "pubbywspodnw"; - name = "Pod Door Control"; - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ship/cargo) -"Df" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "Do" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1390,6 +1317,14 @@ /obj/structure/sign/nanotrasen, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering) +"DU" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/robot_debris, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew/office) "DW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1474,31 +1409,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ship/cargo) -"FK" = ( -/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/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/office) "FN" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -1546,25 +1456,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plating/catwalk_floor, /area/ship/crew/dorm) -"GH" = ( -/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 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/ship/bridge) "Hd" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt/dust, @@ -1590,23 +1481,6 @@ "Hi" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/office) -"HX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/recharger, -/obj/structure/railing{ - dir = 10; - layer = 4.1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "Ic" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4, /turf/open/floor/engine/hull, @@ -1621,38 +1495,17 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"IB" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, +"Ix" = ( /obj/structure/cable{ - icon_state = "0-4" + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 + dir = 10 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew/office) -"IC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"IJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "Jb" = ( /obj/machinery/door/airlock/glass, /obj/structure/cable{ @@ -1666,6 +1519,23 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"Je" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Engine Access" + }, +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteshipubbyEngines" + }, +/turf/open/floor/plating, +/area/ship/engineering) "Jm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1683,6 +1553,17 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"Jy" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_bridge" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/bridge) "Jz" = ( /obj/structure/closet/wall/red{ dir = 4; @@ -1716,28 +1597,23 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"JL" = ( -/obj/machinery/light, -/obj/structure/closet/wall/blue{ - dir = 1; - name = "Captain's locker"; - pixel_y = -28 +"Kd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/clothing/suit/space/hardsuit/mining/heavy, -/obj/item/clothing/suit/hooded/wintercoat/captain, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/gas/atmos/captain, -/obj/item/radio/headset/heads/captain/alt, -/obj/item/card/id/captains_spare, -/obj/item/clothing/gloves/color/captain, -/obj/item/storage/belt/sabre, -/obj/item/clothing/suit/armor/vest/capcarapace/alt, -/obj/item/clothing/head/caphat/nt, -/obj/item/clothing/under/rank/command/captain/nt, -/obj/item/clothing/under/rank/command/captain/nt/skirt, -/obj/item/gun/energy/laser, -/turf/open/floor/carpet/red, -/area/ship/bridge) +/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 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "Kh" = ( /turf/open/floor/plastic, /area/ship/crew/office) @@ -1773,6 +1649,30 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"KH" = ( +/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, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/office) +"Ll" = ( +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Ln" = ( /obj/machinery/power/terminal{ dir = 8 @@ -1788,51 +1688,23 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"Lq" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 +"Ls" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset/wall{ + dir = 1; + pixel_y = -28 }, -/obj/structure/railing/corner, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"LD" = ( -/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, -/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/ship/hallway/central) -"LF" = ( -/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{ - dir = 1; - pixel_y = -25 +"LC" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) +/turf/open/floor/plating, +/area/ship/engineering) "LM" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1852,70 +1724,105 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"Mr" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/phone{ + pixel_x = 8; + pixel_y = -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, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "Mt" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plastic, /area/ship/crew/office) -"ML" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +"MG" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"MO" = ( -/obj/machinery/light{ +"NA" = ( +/obj/structure/window/reinforced{ dir = 8 }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Engine Access" + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-8" }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -4 +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteshipubbyEngines" }, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 2 +/turf/open/floor/plating, +/area/ship/engineering) +"NH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/engineering) +"NM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/obj/item/folder/white, -/obj/item/pen, -/obj/structure/railing{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/machinery/airalarm/directional/west, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 2; - pixel_y = -14 +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"OT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 2; - pixel_y = -14 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 4; - pixel_y = -16 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/stamp/captain{ - pixel_x = -6; - pixel_y = 8 +/obj/machinery/door/airlock/grunge{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"Nz" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset/wall{ - dir = 1; - pixel_y = -28 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"NH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "Pd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1931,16 +1838,32 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"Pj" = ( -/obj/machinery/door/poddoor{ - id = "whiteship_bridge" +"Py" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera/autoname{ + dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/ship/bridge) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/office) +"PN" = ( +/obj/structure/bed/dogbed{ + anchored = 1; + name = "citrus's bed" + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 9 + }, +/mob/living/simple_animal/sloth/citrus, +/obj/machinery/light/directional/east, +/turf/open/floor/pod, +/area/ship/crew/dorm) "PZ" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -1973,21 +1896,17 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/ship/crew/office) -"Qv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Engine Access" - }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "whiteshipubbyEngines" +"Qr" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "engine fuel pump" }, -/turf/open/floor/plating, +/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/ship/engineering) "Qx" = ( /obj/structure/cable{ @@ -2011,6 +1930,29 @@ /obj/effect/turf_decal/industrial/outline/orange, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"QO" = ( +/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/ship/engineering) "QX" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -2056,6 +1998,17 @@ }, /turf/open/floor/wood, /area/ship/crew/office) +"Rt" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_bridge" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/ship/bridge) "Rw" = ( /obj/structure/railing/corner{ dir = 8 @@ -2082,11 +2035,6 @@ dir = 1 }, /obj/structure/table/reinforced, -/obj/item/pod_parts/armor/industrial, -/obj/item/pod_parts/armor/security/red{ - pixel_x = 1; - pixel_y = 2 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, @@ -2095,6 +2043,30 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"Sx" = ( +/obj/machinery/button/door{ + id = "whiteship_windows"; + name = "Windows Blast Door Control"; + pixel_x = -5; + pixel_y = 26 + }, +/obj/machinery/button/door{ + id = "whiteship_bridge"; + name = "Bridge Blast Door Control"; + pixel_x = 5; + pixel_y = 26 + }, +/obj/machinery/computer/station_alert/retro, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"SY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Tc" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -2162,17 +2134,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"Ug" = ( -/obj/structure/table/reinforced, -/obj/item/kitchen/knife{ - pixel_x = -6 - }, -/obj/item/kitchen/rollingpin, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plastic, -/area/ship/crew/office) "Uj" = ( /obj/structure/railing{ dir = 1 @@ -2219,33 +2180,12 @@ icon_state = "wood-broken4" }, /area/ship/crew/office) -"Uw" = ( -/obj/machinery/cryopod, -/obj/machinery/computer/cryopod{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plating/catwalk_floor, -/area/ship/crew/dorm) -"UK" = ( -/obj/structure/window/reinforced{ +"UN" = ( +/obj/effect/turf_decal/industrial/warning/corner{ dir = 8 }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Engine Access" - }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "whiteshipubbyEngines" - }, -/turf/open/floor/plating, +/obj/machinery/computer/monitor/retro, +/turf/open/floor/plasteel/tech, /area/ship/engineering) "Va" = ( /obj/structure/spacepoddoor{ @@ -2253,6 +2193,20 @@ }, /turf/open/floor/engine, /area/ship/cargo) +"Vg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/directional/west, +/obj/machinery/recharger, +/obj/structure/railing{ + dir = 10; + layer = 4.1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "Vh" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2311,6 +2265,28 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/engine, /area/ship/cargo) +"We" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/wall/blue{ + dir = 1; + name = "Captain's locker"; + pixel_y = -28 + }, +/obj/item/clothing/suit/space/hardsuit/mining/heavy, +/obj/item/clothing/suit/hooded/wintercoat/captain, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/gas/atmos/captain, +/obj/item/radio/headset/heads/captain/alt, +/obj/item/card/id/captains_spare, +/obj/item/clothing/gloves/color/captain, +/obj/item/storage/belt/sabre, +/obj/item/clothing/suit/armor/vest/capcarapace/alt, +/obj/item/clothing/head/caphat/nt, +/obj/item/clothing/under/rank/command/captain/nt, +/obj/item/clothing/under/rank/command/captain/nt/skirt, +/obj/item/gun/energy/laser, +/turf/open/floor/carpet/red, +/area/ship/bridge) "Wf" = ( /obj/structure/sign/number/one, /obj/effect/decal/cleanable/dirt/dust, @@ -2354,6 +2330,38 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"WW" = ( +/obj/machinery/cryopod, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm/directional/west, +/obj/machinery/computer/cryopod/retro/directional/north, +/turf/open/floor/plating/catwalk_floor, +/area/ship/crew/dorm) +"WY" = ( +/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/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/office) "Xj" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/chair/comfy/beige{ @@ -2397,39 +2405,10 @@ dir = 4 }, /area/ship/engineering) -"XI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/item/stack/sheet/mineral/wood/fifty, -/obj/structure/closet/crate, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "XM" = ( /obj/structure/sign/number/two, /turf/open/floor/engine, /area/ship/cargo) -"XV" = ( -/obj/machinery/light{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "Ya" = ( /obj/item/reagent_containers/food/drinks/britcup{ pixel_x = 9; @@ -2444,6 +2423,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/grimy, /area/ship/crew/office) +"Yl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Ys" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/spline/fancy/opaque/black{ @@ -2455,19 +2441,32 @@ /obj/structure/sign/number/one, /turf/open/floor/engine, /area/ship/cargo) -"YQ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"YC" = ( +/obj/structure/cable{ + icon_state = "1-8" }, +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/stairs{ dir = 8 }, -/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"YE" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "YT" = ( /turf/closed/wall/mineral/titanium/nodiagonal, @@ -2491,25 +2490,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"Zq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Engine Access" - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor{ - id = "whiteshipubbyEngines" - }, -/turf/open/floor/plating, -/area/ship/engineering) "ZC" = ( /obj/machinery/power/port_gen/pacman{ anchored = 1 @@ -2535,10 +2515,20 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) +"ZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/office) (1,1,1) = {" sl -sl +lT vW TQ sl @@ -2548,22 +2538,22 @@ lT JE TQ vW -sl +lT sl "} (2,1,1) = {" sl -qO -Zq -UK +lT +NA +Je lT lT AZ -Nz +Ls +lT +ea +vv lT -Qv -hJ -qO sl "} (3,1,1) = {" @@ -2573,10 +2563,10 @@ Ln yW lT lT -CA +tL lT vu -XI +Qr lL lT sl @@ -2585,12 +2575,12 @@ sl sl lT bS -Lq +nA lT -vY -YQ -km -IC +UN +Kd +wL +dx bM JH EK @@ -2603,9 +2593,9 @@ LM xy lT Hd -gE -jQ -eO +QO +mM +qd sK dm EK @@ -2646,11 +2636,11 @@ qO lT QM dY -lo -mI +SY +Ix Jm Do -Df +YE Qx Ik lT @@ -2659,31 +2649,31 @@ qO (9,1,1) = {" DH lT -EK -EK +LC +LC lT lT -wX +dH lT lT -EK -EK +LC +LC lT DH "} (10,1,1) = {" Ep -CU +ip Wf Vq -ML -eH +gf +MG Qg -ge -gV +hf +tW Go Kw -wE +Cx fw "} (11,1,1) = {" @@ -2751,12 +2741,12 @@ kU Wi TA Pg -XV +Ll ta qm oG -af -uW +NM +Yl Vy Tc qj @@ -2768,7 +2758,7 @@ nt nt nt YT -LD +OT Hi Hi Hi @@ -2778,8 +2768,8 @@ Hi "} (17,1,1) = {" nt -Uw -gK +WW +yb VK wO pO @@ -2787,7 +2777,7 @@ Ma of Qq Hi -FK +WY Bh Hi "} @@ -2795,15 +2785,15 @@ Hi nt GD EH -yT +PN Kp YT rA Hi -pP +DU Hi Uj -rp +KH Hi "} (19,1,1) = {" @@ -2813,7 +2803,7 @@ nt nt nt YT -yR +up Hi Hi Hi @@ -2823,9 +2813,9 @@ Hi "} (20,1,1) = {" QX -gZ +vQ fy -IB +Py Hi pz yV @@ -2833,7 +2823,7 @@ vM Jz aj Rw -ug +qS Hi "} (21,1,1) = {" @@ -2843,7 +2833,7 @@ Ya Ul Jb tk -IJ +yO Hi Cz Mt @@ -2855,12 +2845,12 @@ QX QX uc na -tR +ZG Hi CL -LF +qZ Hi -Ug +wZ Kh dh Xj @@ -2870,7 +2860,7 @@ QX Hi FN ii -xH +rf Hi Lp TV @@ -2878,7 +2868,7 @@ Hi eU yQ Um -pM +jv QX "} (24,1,1) = {" @@ -2900,12 +2890,12 @@ Hi zr nZ nZ -mW -MO -HX -GH +Mr +wx +Vg +YC nZ -nb +nc jl nZ nZ @@ -2915,13 +2905,13 @@ zr sl nZ nZ -eN +Sx zx qN VG qh vs -JL +We nZ zr sl @@ -2929,10 +2919,10 @@ sl (27,1,1) = {" sl zr -lQ +mV ar -zw -Ai +wD +oM bh nZ kX @@ -2946,9 +2936,9 @@ sl sl sl lQ +Jy Bx -Bx -Pj +Rt nZ nZ zr diff --git a/_maps/deprecated/Ships/syndicate_geneva.dmm b/_maps/deprecated/Ships/syndicate_geneva.dmm index c1b77dcae45d..a8a3c806964b 100644 --- a/_maps/deprecated/Ships/syndicate_geneva.dmm +++ b/_maps/deprecated/Ships/syndicate_geneva.dmm @@ -12,40 +12,6 @@ /obj/machinery/computer/crew, /turf/open/floor/carpet/nanoweave/red, /area/ship/bridge) -"an" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom/wideband, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) -"ap" = ( -/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/o2, -/obj/machinery/duct, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/item/soap/syndie, -/obj/item/defibrillator, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"ay" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/corner/opaque/brown/three_quarters, -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/obj/machinery/light/dim{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/ship/maintenance/port) "aJ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -59,28 +25,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"aR" = ( -/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"aV" = ( -/obj/structure/table/glass, -/obj/machinery/photocopier/faxmachine/longrange, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/yew, -/area/ship/crew/office) "bd" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/metal/fifty, @@ -123,6 +67,15 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/library) +"bH" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen/border{ + dir = 10 + }, +/obj/machinery/ore_silo, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/syndicateemblem/bottom/left, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "bK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -141,20 +94,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"co" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 +"ch" = ( +/obj/machinery/sleeper/syndie, +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 5 }, -/obj/item/areaeditor/shuttle, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c200, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical) "cB" = ( /turf/closed/wall, /area/ship/medical) @@ -195,26 +142,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/grass, /area/ship/crew/hydroponics) -"dj" = ( -/obj/machinery/chem_master, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) -"dy" = ( -/obj/machinery/washing_machine, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) "dB" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -262,18 +189,6 @@ /obj/item/clothing/under/syndicate/bloodred/sleepytime, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/dorm) -"dW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/seeds/corn, -/obj/item/seeds/grass, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/angel, -/obj/structure/closet/crate/hydroponics, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) "dZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/grass, @@ -299,34 +214,6 @@ }, /turf/open/floor/grass, /area/ship/crew/hydroponics) -"es" = ( -/obj/structure/closet/secure_closet{ - icon_state = "cmo"; - name = "professor's locker" - }, -/obj/item/radio/headset/syndicate/captain, -/obj/item/storage/belt/medical/surgery, -/obj/item/autosurgeon/cmo, -/obj/item/clothing/suit/toggle/labcoat/cmo, -/obj/item/clothing/neck/cloak/cmo, -/obj/item/circuitboard/machine/techfab/department/medical, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/defibrillator/compact/combat, -/obj/item/clothing/suit/armor/vest/capcarapace/syndicate, -/obj/item/clothing/head/HoS/beret/syndicate, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/gas/syndicate, -/obj/item/clothing/suit/hooded/wintercoat/medical, -/obj/machinery/firealarm{ - pixel_y = -26 - }, -/obj/item/storage/firstaid/tactical, -/obj/item/card/emag, -/obj/item/storage/box/hypospray/CMO, -/obj/item/clothing/glasses/science, -/obj/item/roller, -/turf/open/floor/wood/yew, -/area/ship/crew/office) "ew" = ( /obj/structure/cable{ icon_state = "1-4" @@ -351,27 +238,6 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"eL" = ( -/obj/machinery/door/airlock/wood/glass{ - name = "Natural Sciences Lab" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) "eO" = ( /obj/effect/turf_decal/syndicateemblem/middle/left, /obj/structure/cable{ @@ -417,38 +283,27 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"fB" = ( -/obj/machinery/door/airlock/hatch{ - name = "Crew Quarters" - }, +"fE" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/machinery/light/directional/north, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 + icon_state = "0-2" }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"fD" = ( -/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"gb" = ( +/obj/effect/turf_decal/techfloor{ dir = 4 }, -/obj/machinery/vending/medical, -/obj/machinery/duct, -/obj/machinery/firealarm{ - pixel_y = 25 +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 9 }, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "gy" = ( /obj/structure/cable{ icon_state = "1-8" @@ -479,20 +334,6 @@ "gR" = ( /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/dorm) -"gT" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) "gV" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 10 @@ -558,10 +399,40 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/crew/library) +"hx" = ( +/obj/machinery/chem_master, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "hy" = ( /obj/machinery/seed_extractor, /turf/open/floor/grass, /area/ship/crew/hydroponics) +"hG" = ( +/obj/machinery/door/airlock/engineering/glass{ + dir = 4; + name = "Engineering Bay" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "hI" = ( /turf/open/floor/grass, /area/ship/crew/hydroponics) @@ -598,19 +469,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"iH" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 26 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"iQ" = ( -/obj/machinery/vending/hydronutrients, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) "iU" = ( /obj/effect/turf_decal/syndicateemblem/bottom/middle, /obj/structure/cable{ @@ -645,6 +503,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/maintenance/port) +"jE" = ( +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ship/crew/library) "jG" = ( /obj/structure/cable{ icon_state = "4-8" @@ -673,22 +540,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"jX" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/opaque/red/filled/warning, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "jY" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 9 @@ -713,38 +564,51 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/medical) -"kq" = ( -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"kx" = ( -/obj/machinery/light, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"kG" = ( -/obj/structure/bed/pod, -/obj/item/bedsheet/syndie, -/obj/item/toy/plush/nukeplushie, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"kM" = ( -/obj/machinery/power/port_gen/pacman, -/obj/item/stack/sheet/mineral/plasma/twenty, -/obj/machinery/light{ - dir = 1 +"kg" = ( +/obj/machinery/door/airlock/command/glass{ + dir = 4; + name = "Professor's Office" }, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/wood/yew, +/area/ship/crew/office) +"kq" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm) +"kA" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters, +/obj/machinery/light/directional/east, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"kG" = ( +/obj/structure/bed/pod, +/obj/item/bedsheet/syndie, +/obj/item/toy/plush/nukeplushie, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm) "lr" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -835,19 +699,6 @@ }, /turf/open/floor/plating, /area/ship/crew/office) -"np" = ( -/obj/machinery/sleeper/syndie, -/obj/effect/turf_decal/corner/opaque/bottlegreen{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "ny" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters, /obj/machinery/smartfridge/bloodbank/preloaded, @@ -866,44 +717,28 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/maintenance/port) -"og" = ( -/obj/structure/closet/secure_closet{ - icon_state = "med"; - name = "paramedic's locker" +"nX" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Crew Quarters" }, -/obj/item/radio/headset/syndicate/alt, -/obj/item/storage/belt/medical/paramedic, -/obj/item/clothing/under/syndicate/gorlex, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/mask/gas/syndicate, -/obj/item/clothing/suit/hooded/wintercoat/medical, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "4-8" }, -/obj/machinery/power/apc/auto_name/north, -/obj/item/pinpointer/crew, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/obj/item/clothing/head/soft/paramedic, -/obj/item/clothing/suit/toggle/labcoat/paramedic, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/roller, -/obj/effect/turf_decal/corner/opaque/brown/three_quarters{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/maintenance/port) -"oo" = ( -/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters, -/obj/machinery/light{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm) "oB" = ( /obj/item/radio/headset/syndicate/alt, /obj/item/clothing/under/syndicate/gorlex, @@ -935,6 +770,28 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"oC" = ( +/obj/machinery/door/airlock/wood/glass{ + dir = 4; + name = "Natural Sciences Lab" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "oH" = ( /obj/machinery/stasis, /obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ @@ -970,36 +827,10 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel/white, /area/ship/medical) -"pL" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Professor's Office" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood/yew, -/area/ship/crew/office) -"pR" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/autolathe, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) +"pQ" = ( +/obj/effect/turf_decal/miskilamo_small/right, +/turf/open/floor/plating, +/area/ship/crew/library) "qt" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ dir = 1 @@ -1023,6 +854,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering) +"rh" = ( +/obj/effect/turf_decal/miskilamo_small, +/turf/open/floor/plating, +/area/ship/crew/library) "rz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -1080,21 +915,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"up" = ( -/obj/effect/turf_decal/corner/opaque/bottlegreen/border{ - dir = 10 - }, -/obj/machinery/ore_silo, -/obj/machinery/light, -/obj/effect/turf_decal/syndicateemblem/bottom/left, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"uC" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/wood/yew, -/area/ship/crew/office) "uJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1103,23 +923,20 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/wood/yew, /area/ship/crew/office) -"uS" = ( -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) "vp" = ( /obj/effect/turf_decal/trimline/opaque/red/filled/warning, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"wa" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine/longrange, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/yew, +/area/ship/crew/office) "wj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, @@ -1145,6 +962,21 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/white, /area/ship/medical) +"xy" = ( +/obj/machinery/door/airlock/medical/glass{ + dir = 4; + name = "Paramedic's Quarters" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "xC" = ( /obj/machinery/duct, /obj/effect/turf_decal/corner/opaque/brown/three_quarters{ @@ -1176,6 +1008,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/library) +"xY" = ( +/obj/item/kirbyplants/random, +/obj/item/vending_refill/medical, +/obj/effect/turf_decal/corner/opaque/bottlegreen/border{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/firealarm/directional/west, +/obj/item/vending_refill/autodrobe, +/obj/effect/turf_decal/syndicateemblem/top/left, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "yd" = ( /obj/machinery/computer/operating{ dir = 1 @@ -1186,12 +1030,51 @@ "yf" = ( /turf/open/floor/plasteel/dark, /area/ship/crew/library) +"za" = ( +/obj/structure/closet/secure_closet{ + icon_state = "med"; + name = "paramedic's locker" + }, +/obj/item/radio/headset/syndicate/alt, +/obj/item/storage/belt/medical/paramedic, +/obj/item/clothing/under/syndicate/gorlex, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/mask/gas/syndicate, +/obj/item/clothing/suit/hooded/wintercoat/medical, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/pinpointer/crew, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/clothing/head/soft/paramedic, +/obj/item/clothing/suit/toggle/labcoat/paramedic, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/roller, +/obj/effect/turf_decal/corner/opaque/brown/three_quarters{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/maintenance/port) "zd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"zh" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ + dir = 4 + }, +/obj/machinery/vending/medical, +/obj/machinery/duct, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) "zm" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen/full, /obj/structure/cable{ @@ -1206,6 +1089,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/medical) +"zz" = ( +/obj/machinery/sleeper/syndie, +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical) "zA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1214,26 +1106,54 @@ "zB" = ( /turf/closed/wall, /area/ship/engineering) -"zH" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Paramedic's Quarters" +"zC" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"zQ" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 6 + }, +/obj/structure/table/optable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) "Ab" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/ship/crew/library) +"An" = ( +/obj/machinery/mineral/ore_redemption{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/opaque/red/filled/warning, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Ao" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -1279,6 +1199,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"BI" = ( +/obj/machinery/washing_machine, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm) "BP" = ( /obj/machinery/duct, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -1297,6 +1226,27 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/ship/maintenance/port) +"CQ" = ( +/turf/open/floor/plating, +/area/ship/cargo) +"CS" = ( +/obj/effect/turf_decal/number/five, +/turf/open/floor/plating, +/area/ship/cargo) +"CW" = ( +/obj/effect/turf_decal/number/two, +/turf/open/floor/plating, +/area/ship/cargo) +"Da" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew/library) "Dl" = ( /obj/machinery/power/shuttle/engine/liquid/oil, /obj/structure/window/reinforced/survival_pod, @@ -1346,36 +1296,37 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"Ex" = ( -/obj/item/kirbyplants/random, -/obj/item/vending_refill/medical, -/obj/effect/turf_decal/corner/opaque/bottlegreen/border{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/obj/item/vending_refill/autodrobe, -/obj/effect/turf_decal/syndicateemblem/top/left, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"EB" = ( -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +"El" = ( +/obj/structure/closet/secure_closet{ + icon_state = "hydro"; + name = "natural scientist's locker" }, -/obj/machinery/light{ - dir = 4 +/obj/item/storage/belt/fannypack/green, +/obj/item/storage/bag/plants, +/obj/item/hatchet, +/obj/item/shovel/spade, +/obj/item/cultivator, +/obj/item/storage/bag/chemistry, +/obj/item/storage/box/disks_plantgene, +/obj/machinery/smartfridge/disks{ + density = 0; + name = "small disk compartmentalizer" }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) +/obj/item/storage/box/beakers, +/obj/item/clothing/glasses/science, +/obj/item/plant_analyzer, +/obj/item/clothing/suit/armor/solgov_trenchcoat, +/obj/item/clothing/suit/hooded/wintercoat/medical, +/obj/item/storage/box/syringes, +/obj/item/lighter, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/replicapod, +/obj/item/circuitboard/machine/reagentgrinder, +/obj/item/circuitboard/machine/chem_heater, +/obj/item/clothing/glasses/science, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "EV" = ( /obj/effect/turf_decal/corner/opaque/brown/three_quarters{ dir = 4 @@ -1392,24 +1343,31 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/maintenance/port) +"Ff" = ( +/obj/effect/turf_decal/number/zero, +/turf/open/floor/plating, +/area/ship/cargo) +"Fj" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/autolathe, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/bridge) +"FA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/wood/yew, +/area/ship/crew/office) "FB" = ( /obj/effect/turf_decal/corner/opaque/yellow/mono, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/oil, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"FU" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/bottlegreen{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/library) "Ga" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 9 @@ -1457,6 +1415,21 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/library) +"Ha" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/o2, +/obj/machinery/duct, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/soap/syndie, +/obj/item/defibrillator, +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) "He" = ( /obj/structure/fans/tiny, /obj/machinery/door/poddoor{ @@ -1464,6 +1437,32 @@ }, /turf/open/floor/plating, /area/ship/cargo) +"Hf" = ( +/obj/structure/closet/secure_closet{ + icon_state = "cmo"; + name = "professor's locker" + }, +/obj/item/radio/headset/syndicate/captain, +/obj/item/storage/belt/medical/surgery, +/obj/item/autosurgeon/cmo, +/obj/item/clothing/suit/toggle/labcoat/cmo, +/obj/item/clothing/neck/cloak/cmo, +/obj/item/circuitboard/machine/techfab/department/medical, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/defibrillator/compact/combat, +/obj/item/clothing/suit/armor/vest/capcarapace/syndicate, +/obj/item/clothing/head/HoS/beret/syndicate, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/gas/syndicate, +/obj/item/clothing/suit/hooded/wintercoat/medical, +/obj/machinery/firealarm/directional/north, +/obj/item/storage/firstaid/tactical, +/obj/item/card/emag, +/obj/item/storage/box/hypospray/CMO, +/obj/item/clothing/glasses/science, +/obj/item/roller, +/turf/open/floor/wood/yew, +/area/ship/crew/office) "Hg" = ( /obj/structure/fans/tiny, /obj/machinery/door/poddoor{ @@ -1535,6 +1534,11 @@ /obj/machinery/duct, /turf/open/floor/plasteel/dark, /area/ship/crew/library) +"IG" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/light/directional/east, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "II" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 8 @@ -1708,6 +1712,16 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Nj" = ( +/obj/machinery/light/directional/west, +/obj/item/seeds/corn, +/obj/item/seeds/grass, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/angel, +/obj/structure/closet/crate/hydroponics, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "NA" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1720,25 +1734,6 @@ }, /turf/open/floor/wood/yew, /area/ship/crew/office) -"NU" = ( -/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/power/apc/auto_name/north, -/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-8" - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "Ol" = ( /obj/effect/turf_decal/corner/opaque/red{ dir = 10 @@ -1776,15 +1771,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"OJ" = ( -/obj/structure/chair/comfy/black, -/obj/effect/turf_decal/corner/opaque/bottlegreen{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ship/crew/library) "ON" = ( /obj/machinery/duct, /obj/effect/turf_decal/techfloor{ @@ -1809,6 +1795,22 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"OZ" = ( +/turf/open/floor/plating, +/area/ship/crew/library) +"Ph" = ( +/obj/effect/turf_decal/miskilamo_small/left, +/turf/open/floor/plating, +/area/ship/crew/library) +"Po" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/machinery/door/firedoor/border_only, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Qf" = ( /obj/machinery/power/terminal{ dir = 4 @@ -1821,55 +1823,13 @@ /obj/structure/cable, /turf/open/floor/plasteel/dark, /area/ship/engineering) +"Qt" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm) "QH" = ( /turf/closed/wall, /area/ship/cargo) -"QJ" = ( -/obj/structure/closet/secure_closet{ - icon_state = "hydro"; - name = "natural scientist's locker" - }, -/obj/item/storage/belt/fannypack/green, -/obj/item/storage/bag/plants, -/obj/item/hatchet, -/obj/item/shovel/spade, -/obj/item/cultivator, -/obj/item/storage/bag/chemistry, -/obj/item/storage/box/disks_plantgene, -/obj/machinery/smartfridge/disks{ - density = 0; - name = "small disk compartmentalizer" - }, -/obj/item/storage/box/beakers, -/obj/item/clothing/glasses/science, -/obj/item/plant_analyzer, -/obj/item/clothing/suit/armor/solgov_trenchcoat, -/obj/item/clothing/suit/hooded/wintercoat/medical, -/obj/item/storage/box/syringes, -/obj/item/lighter, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/replicapod, -/obj/item/circuitboard/machine/reagentgrinder, -/obj/item/circuitboard/machine/chem_heater, -/obj/item/clothing/glasses/science, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) -"Rg" = ( -/obj/effect/turf_decal/corner/opaque/brown/three_quarters{ - dir = 8 - }, -/obj/machinery/suit_storage_unit/syndicate, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "Rh" = ( /obj/machinery/stasis, /obj/effect/turf_decal/corner/opaque/bottlegreen{ @@ -1897,19 +1857,6 @@ }, /turf/open/floor/plating, /area/ship/medical) -"Tg" = ( -/obj/effect/turf_decal/corner/opaque/bottlegreen{ - dir = 6 - }, -/obj/structure/table/optable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) "Tp" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen/full, /obj/machinery/door/airlock/virology/glass, @@ -1941,6 +1888,17 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Ue" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/west, +/obj/item/areaeditor/shuttle, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c200, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/bridge) "Uo" = ( /obj/item/kirbyplants/random, /obj/item/seeds/replicapod, @@ -1957,6 +1915,12 @@ }, /turf/open/floor/plating, /area/ship/bridge) +"UA" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/bridge) "UE" = ( /obj/structure/table/glass, /obj/effect/turf_decal/corner/opaque/bottlegreen{ @@ -1968,6 +1932,15 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel/white, /area/ship/medical) +"Vb" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/corner/opaque/brown/three_quarters, +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/obj/machinery/light/dim/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/maintenance/port) "Vw" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{ dir = 8 @@ -2013,6 +1986,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/maintenance/port) +"Wa" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "Wv" = ( /obj/machinery/duct, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -2020,6 +2004,12 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/library) +"WD" = ( +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 26 + }, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm) "WE" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 10 @@ -2044,6 +2034,18 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"WY" = ( +/obj/effect/turf_decal/corner/opaque/brown/three_quarters{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/syndicate, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Xo" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 10 @@ -2062,27 +2064,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Yo" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Bay" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) "Yq" = ( /turf/closed/wall, /area/ship/crew/dorm) @@ -2094,19 +2075,22 @@ /obj/machinery/duct, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"YR" = ( -/obj/machinery/sleeper/syndie, -/obj/effect/turf_decal/corner/opaque/bottlegreen{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "Zq" = ( /turf/closed/wall, /area/ship/crew/hydroponics) +"Zz" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "ZB" = ( /turf/template_noop, /area/template_noop) @@ -2151,7 +2135,7 @@ tl cd qS eI -gT +Wa Dl ZB ZB @@ -2165,7 +2149,7 @@ ZB ZB Zq zB -kM +fE Qf DJ FB @@ -2188,8 +2172,8 @@ Zq Zq Kq dD -uS -EB +gb +Zz hf ON Dl @@ -2203,11 +2187,11 @@ ZB ZB Zq Zq -dW +Nj hy Zq Zq -Yo +hG zB zB zB @@ -2225,7 +2209,7 @@ bK eR dZ hI -QJ +El lr VD SE @@ -2234,7 +2218,7 @@ jY Iv hs SE -ZB +OZ "} (7,1,1) = {" ZB @@ -2247,14 +2231,14 @@ ej hZ Zq Zq -NU -aR +zC +Po Ab yf Wv yf Gv -ZB +Ph "} (8,1,1) = {" ZB @@ -2274,7 +2258,7 @@ HY rN yf GF -ZB +rh "} (9,1,1) = {" ZB @@ -2282,31 +2266,31 @@ sd sd Zq Zq -dj +hx ew -iQ +IG lr oU aJ II qt -OJ +jE bG -FU +Da SE -ZB +pQ "} (10,1,1) = {" Ux Ux -an -co +UA +Ue Zq Zq -eL +oC Zq Zq -np +zz WK ss LI @@ -2322,16 +2306,16 @@ am Lw jh Sc -Ex +xY eO -up +bH cB mp OS Jp WE In -fD +zh Ga KE Hi @@ -2371,8 +2355,8 @@ oM XI Jd In -ap -Tg +Ha +zQ yd Hi "} @@ -2380,13 +2364,13 @@ Hi Ux Ux bd -pR +Fj Yq Yq -fB +nX Yq Yq -YR +ch WK sY Nb @@ -2402,7 +2386,7 @@ sd sd cB Yq -dy +BI gy ka ME @@ -2412,9 +2396,9 @@ dB ny oB Ho -jX +An QH -ZB +CS "} (16,1,1) = {" ZB @@ -2434,7 +2418,7 @@ zd BF TG He -ZB +Ff "} (17,1,1) = {" ZB @@ -2442,19 +2426,19 @@ ZB ZB cB Yq -iH +WD gC -kx +Qt Yq Yq Vw -oo +kA il zA BP vp Hg -ZB +CW "} (18,1,1) = {" ZB @@ -2469,12 +2453,12 @@ mR ME zm QH -Rg +WY um YK Li QH -ZB +CQ "} (19,1,1) = {" ZB @@ -2487,10 +2471,10 @@ gW kG Yq Yq -pL +kg JA Gr -zH +xy Cz Gr QH @@ -2508,7 +2492,7 @@ Yq Yq ai jG -uC +FA Gr EV xC @@ -2547,11 +2531,11 @@ ZB JA nd JA -aV -es +wa +Hf Gr -og -ay +za +Vb Ge ZB ZB diff --git a/_maps/deprecated/Ships/syndicate_kugelblitz.dmm b/_maps/deprecated/Ships/syndicate_kugelblitz.dmm index 3dfac6de226d..0f903a4e70f4 100644 --- a/_maps/deprecated/Ships/syndicate_kugelblitz.dmm +++ b/_maps/deprecated/Ships/syndicate_kugelblitz.dmm @@ -39,6 +39,13 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"aE" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/mineral/plastitanium/airless, +/area/ship/external) "aH" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on, /turf/open/floor/plating/airless, @@ -49,18 +56,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"aR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "aX" = ( /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/blue{ @@ -97,22 +92,6 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) -"bB" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, -/obj/effect/decal/hammerandsickle{ - desc = "Engineers powerful force" - }, -/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 = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) "bF" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 @@ -138,6 +117,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ship/engineering/engine) +"cg" = ( +/obj/structure/fans/tiny, +/obj/machinery/button/door{ + id = "moth_doors_west"; + name = "Port Blast Doors"; + pixel_y = -25 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "moth_doors_west"; + name = "Western Blast Door" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/medical) "ci" = ( /obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, /obj/effect/decal/cleanable/dirt, @@ -161,6 +154,20 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"cQ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, +/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 = 4 + }, +/obj/effect/turf_decal/syndicateemblem/middle/middle, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) "cW" = ( /obj/effect/turf_decal/box/corners, /obj/item/stock_parts/cell/hyper, @@ -219,6 +226,18 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) +"dM" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "moth_east_door"; + name = "Eastern Blast Door" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/science/robotics) "dU" = ( /obj/machinery/atmospherics/pipe/simple/orange{ dir = 8 @@ -255,28 +274,13 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) -"ee" = ( -/obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ +"er" = ( +/obj/effect/turf_decal/techfloor/orange{ dir = 8 }, -/obj/structure/closet/secure{ - icon_state = "med"; - name = "Chemist's locker" - }, -/obj/item/construction/plumbing, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/pipe_dispenser, -/obj/item/clothing/head/beret/chem, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/belt{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/plunger/reinforced, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/under/syndicate/tacticool/skirt, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "ew" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -290,12 +294,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/ship/engineering/engine) +"eE" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/door/poddoor{ + dir = 4; + id = "moth_east_door"; + name = "Eastern Blast Door" + }, +/obj/machinery/button/door{ + id = "moth_east_door"; + name = "Starboard Blast Doors"; + pixel_y = -25 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/science/robotics) "eF" = ( /obj/structure/cable{ icon_state = "2-8" }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"eG" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/obj/item/mecha_parts/part/ripley_left_leg, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew) "eX" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 9 @@ -329,20 +355,6 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) -"fb" = ( -/obj/structure/tank_dispenser, -/obj/machinery/light, -/obj/effect/turf_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/button/door{ - dir = 4; - id = "kugelsm"; - name = "SM Window Shutters"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) "fg" = ( /obj/machinery/atmospherics/pipe/simple/orange{ dir = 8 @@ -364,6 +376,13 @@ /obj/machinery/computer/helm, /turf/open/floor/mineral/plastitanium, /area/ship/crew) +"fy" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ship/science/robotics) "fQ" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped{ dir = 8; @@ -379,26 +398,6 @@ /obj/machinery/computer/cargo/express, /turf/open/floor/mineral/plastitanium, /area/ship/crew) -"gf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/remains/human, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"gk" = ( -/obj/structure/window/plasma/reinforced/spawner/east{ - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) "gl" = ( /obj/structure/window/plasma/reinforced/spawner/east{ dir = 2 @@ -449,55 +448,57 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"hl" = ( +"hh" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/table/reinforced, +/obj/item/stack/rods/fifty, +/obj/machinery/light/directional/east, +/obj/item/mecha_parts/mecha_equipment/rcd, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/storage/part_replacer, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"hu" = ( /obj/structure/fans/tiny, /obj/machinery/door/poddoor{ + dir = 4; id = "moth_east_door"; name = "Eastern Blast Door" }, /turf/open/floor/mineral/plastitanium/red, /area/ship/science/robotics) -"hw" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +"hD" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 }, /obj/structure/closet/secure{ - icon_state = "eng_secure"; - name = "Engineer's locker" + icon_state = "atmos"; + name = "Technician's locker" }, /obj/item/clothing/gloves/color/yellow, /obj/item/pipe_dispenser, /obj/item/clothing/glasses/meson/engine, +/obj/item/extinguisher/advanced, /obj/item/clothing/suit/toggle/hazard, +/obj/item/clothing/head/beret/atmos, /obj/item/clothing/head/beret/eng/hazard, -/obj/item/clothing/head/beret/eng, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/north, /obj/item/clothing/under/syndicate/tacticool, /obj/item/clothing/under/syndicate/tacticool/skirt, -/obj/item/holosign_creator/engineering, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"hA" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/science/robotics) -"hN" = ( -/obj/item/radio/intercom{ - pixel_y = 32 - }, -/obj/machinery/vending/wardrobe/engi_wardrobe{ - all_items_free = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew) +/obj/item/holosign_creator/atmos, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "hS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red, @@ -521,25 +522,26 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/crew) -"iE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/crew) +"iJ" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/pill_bottle/penacid, +/obj/item/storage/pill_bottle/potassiodide, +/obj/effect/turf_decal/industrial/warning, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/pill_bottle/potassiodide, +/obj/item/storage/pill_bottle/penacid, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/engine, +/area/ship/engineering/engine) "ja" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -567,12 +569,14 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"ji" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 6 +"jl" = ( +/obj/structure/window/plasma/reinforced/spawner/east{ + dir = 2 }, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input, +/obj/machinery/light/directional/north, +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) "jq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -591,39 +595,31 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"jz" = ( -/obj/structure/cable{ - icon_state = "4-8" +"jt" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/ship/science/robotics) +"ju" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ + dir = 5 }, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) -"jC" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/engine, +/area/ship/engineering/engine) "jF" = ( /obj/structure/cable{ icon_state = "4-8" @@ -690,34 +686,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"kc" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/structure/closet/secure{ - icon_state = "atmos"; - name = "Technician's locker" - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/pipe_dispenser, -/obj/item/clothing/glasses/meson/engine, -/obj/item/extinguisher/advanced, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/clothing/head/beret/atmos, -/obj/item/clothing/head/beret/eng/hazard, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/under/syndicate/tacticool/skirt, -/obj/item/holosign_creator/atmos, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) "kd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -734,60 +702,39 @@ /obj/machinery/status_display/shuttle, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/atmospherics) -"kk" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +"kj" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/table/reinforced, /obj/structure/cable{ - icon_state = "1-8" + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/wrench, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/glasses/meson, -/obj/item/pipe_dispenser, /obj/effect/turf_decal/industrial/warning{ - dir = 6 + dir = 9 }, -/turf/open/floor/engine, -/area/ship/engineering/engine) +/obj/effect/turf_decal/syndicateemblem/top/left, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) "kz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, /turf/open/floor/mineral/plastitanium/red, /area/ship/crew) -"kM" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/item/mecha_parts/part/ripley_left_leg, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew) -"kY" = ( -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 1; - layer = 2; - piping_layer = 2 - }, -/obj/item/radio/intercom{ - pixel_y = -32 +"kH" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 6 }, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) +/obj/machinery/suit_storage_unit/ce, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/engine, +/area/ship/engineering/engine) "lc" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 4 @@ -818,6 +765,27 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering/atmospherics) +"lC" = ( +/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/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "lI" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -825,32 +793,6 @@ /obj/structure/ore_box, /turf/open/floor/mineral/plastitanium/red, /area/ship/science/robotics) -"lR" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/item/reagent_containers/food/snacks/hotdog, -/obj/item/reagent_containers/food/snacks/hotdog, -/obj/item/reagent_containers/food/snacks/hotdog, -/obj/item/reagent_containers/food/snacks/hotdog, -/obj/item/reagent_containers/food/snacks/hotdog, -/obj/item/reagent_containers/food/snacks/hotdog, -/obj/item/reagent_containers/food/snacks/hotdog, -/obj/item/reagent_containers/food/snacks/hotdog, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew) -"mi" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "kugelwindow"; - name = "Window Shutters"; - pixel_y = -25 - }, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew) "mn" = ( /obj/structure/table, /obj/item/radio, @@ -862,16 +804,13 @@ /obj/item/reagent_containers/food/snacks/rationpack, /turf/open/floor/mineral/plastitanium, /area/ship/crew) -"mC" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = -32 +"mv" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 10 }, -/obj/item/stock_parts/capacitor/adv, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew) +/obj/effect/turf_decal/syndicateemblem/bottom/left, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) "mL" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 8 @@ -879,22 +818,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"mR" = ( -/obj/machinery/nuclearbomb/beer{ - desc = "A commemorative model of a Nuclear Device, the same used by the brave troops in red to voice their complaints about station conditions to NT. Seems to have a tap on the back."; - name = "\improper Dwarven Accessibility Device" - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew) -"mV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +"nc" = ( +/obj/structure/closet/secure{ + icon_state = "ce"; + name = "Overseer's locker" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/item/clothing/gloves/combat, +/obj/item/pipe_dispenser, +/obj/item/clothing/head/beret/eng, +/obj/item/clothing/head/beret/ce, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/clothing/head/hardhat/weldhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/under/rank/engineering/chief_engineer/skirt, +/obj/item/clothing/under/rank/engineering/chief_engineer, +/obj/item/storage/belt/utility/chief/full, +/obj/item/areaeditor/shuttle, +/obj/item/construction/rcd/arcd, +/obj/effect/turf_decal/techfloor/orange{ + dir = 10 }, -/turf/open/floor/mineral/plastitanium, +/obj/item/clothing/head/HoS/beret/syndicate, +/obj/item/clothing/suit/armor/vest/capcarapace/syndicate, +/obj/item/card/emag, +/obj/machinery/light/directional/west, +/obj/item/circuitboard/machine/techfab/department/engineering, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/under/syndicate/tacticool/skirt, +/obj/item/holosign_creator/engineering, +/obj/item/holosign_creator/atmos, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel/tech/grid, /area/ship/engineering) "nf" = ( /obj/structure/window/plasma/reinforced/spawner/north, @@ -915,6 +869,23 @@ /obj/structure/closet/firecloset/wall, /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/crew) +"nv" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"nw" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "nE" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 9 @@ -946,28 +917,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"nW" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/pill_bottle/penacid, -/obj/item/storage/pill_bottle/potassiodide, -/obj/effect/turf_decal/industrial/warning, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/pill_bottle/potassiodide, -/obj/item/storage/pill_bottle/penacid, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/machinery/firealarm{ - pixel_y = -26 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) "oa" = ( /obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ dir = 4 @@ -989,30 +938,56 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) -"oh" = ( -/obj/machinery/airalarm/all_access{ +"on" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/button/door{ dir = 1; - pixel_y = -25 + id = "kugelwindow"; + name = "Window Shutters"; + pixel_y = -20 }, -/obj/item/radio/intercom{ - pixel_x = 32 +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew) +"oG" = ( +/obj/machinery/door/airlock/medical/glass{ + dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/suit_storage_unit/ce, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"oK" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - pixel_y = 25 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/white, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, /area/ship/medical) +"oJ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/effect/turf_decal/syndicateemblem/top/middle, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) "oM" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 1 @@ -1042,17 +1017,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/engine, /area/ship/engineering/engine) -"pq" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/suit_storage_unit/engine, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "pt" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -1090,15 +1054,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"qc" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/science/robotics) "qg" = ( /obj/docking_port/mobile{ can_move_docking_ports = 1; @@ -1114,13 +1069,16 @@ "qk" = ( /turf/open/floor/mineral/plastitanium/red/airless, /area/ship/external) -"qB" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "moth_doors_west"; - name = "Western Blast Door" +"qr" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 5 }, -/turf/open/floor/mineral/plastitanium/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, /area/ship/medical) "qS" = ( /obj/effect/turf_decal/corner/opaque/yellow{ @@ -1153,6 +1111,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ship/medical) +"ro" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/item/stock_parts/capacitor/adv, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew) "rv" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/effect/turf_decal/industrial/warning/corner{ @@ -1176,45 +1142,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"rP" = ( -/obj/machinery/door/airlock/medical/glass, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical) -"rS" = ( -/obj/effect/turf_decal/number/six{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/ship/external) -"se" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/button/massdriver{ - id = "smejection"; - pixel_y = -25 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 10 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) "sk" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 8 @@ -1260,32 +1187,22 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"sK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ - dir = 5 - }, +"sT" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/effect/turf_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"sY" = ( -/obj/structure/table, -/obj/item/radio/intercom/wideband, -/obj/item/circuitboard/mecha/ripley/peripherals, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew) +/obj/effect/turf_decal/syndicateemblem/top/right, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) "tp" = ( /obj/structure/window/plasma/reinforced/spawner/north, /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ @@ -1300,25 +1217,67 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"ui" = ( -/obj/machinery/door/airlock/research/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"ub" = ( +/obj/machinery/vending/wardrobe/engi_wardrobe{ + all_items_free = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/item/radio/intercom/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew) +"ur" = ( +/obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/closet/secure{ + icon_state = "med"; + name = "Chemist's locker" }, -/obj/machinery/door/firedoor/border_only{ +/obj/item/construction/plumbing, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/pipe_dispenser, +/obj/item/clothing/head/beret/chem, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/belt{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/plunger/reinforced, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/under/syndicate/tacticool/skirt, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"uB" = ( +/obj/structure/table, +/obj/item/circuitboard/mecha/ripley/peripherals, +/obj/item/radio/intercom/wideband/table{ + dir = 1; + pixel_y = 7 + }, +/obj/structure/table, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew) +"uI" = ( +/obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "uQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -1408,19 +1367,6 @@ "vJ" = ( /turf/open/floor/mineral/plastitanium/red, /area/ship/science/robotics) -"vM" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "moth_doors_west"; - name = "Western Blast Door" - }, -/obj/machinery/button/door{ - id = "moth_doors_west"; - name = "Port Blast Doors"; - pixel_y = -25 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/medical) "vP" = ( /obj/effect/turf_decal/techfloor/orange/corner{ dir = 8 @@ -1480,19 +1426,6 @@ /obj/effect/turf_decal/syndicateemblem/top/left, /turf/open/floor/mineral/plastitanium/red, /area/ship/engineering) -"wr" = ( -/obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/orange, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "ww" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1510,19 +1443,9 @@ /obj/effect/turf_decal/industrial/warning{ dir = 5 }, -/obj/effect/turf_decal/syndicateemblem/top/right, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/engineering) -"wy" = ( -/obj/machinery/door/airlock/atmos/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) +/obj/effect/turf_decal/syndicateemblem/top/right, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) "wz" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -1533,6 +1456,14 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/crew) +"wG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/remains/human, +/turf/open/floor/engine, +/area/ship/engineering/engine) "wK" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -1549,29 +1480,6 @@ /obj/machinery/status_display/shuttle, /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/crew) -"wY" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/gps/engineering, -/obj/item/gps/engineering, -/obj/item/gps/engineering, -/obj/item/gps/engineering, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/item/mecha_parts/part/ripley_torso, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) "xd" = ( /obj/item/stack/ore/salvage/scrapmetal, /turf/open/floor/mineral/plastitanium/red, @@ -1592,22 +1500,12 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"xr" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/light{ - dir = 4 +"xp" = ( +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = -16 }, -/turf/open/floor/mineral/plastitanium/airless, -/area/ship/external) -"xu" = ( -/obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew) "xC" = ( /obj/machinery/mineral/ore_redemption{ dir = 8 @@ -1639,62 +1537,10 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"xX" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/oil, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) "yg" = ( /obj/machinery/status_display/shuttle, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical) -"yo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) -"yz" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/structure/closet/secure{ - icon_state = "atmos"; - name = "Technician's locker" - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/pipe_dispenser, -/obj/item/clothing/glasses/meson/engine, -/obj/item/extinguisher/advanced, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/clothing/head/beret/atmos, -/obj/item/clothing/head/beret/eng/hazard, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/under/syndicate/tacticool/skirt, -/obj/item/holosign_creator/atmos, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) "yJ" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 8 @@ -1714,19 +1560,6 @@ /obj/item/holosign_creator/engineering, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"yY" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/structure/curtain/bounty, -/obj/item/toy/plush/beeplushie, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew) "zJ" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1735,6 +1568,16 @@ /obj/effect/spawner/lootdrop/maintenance/four, /turf/open/floor/mineral/plastitanium/red, /area/ship/engineering) +"zN" = ( +/obj/effect/turf_decal/rechargefloor, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 10 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/mecha_parts/chassis/firefighter, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) "zP" = ( /obj/effect/turf_decal/corner/opaque/purple{ dir = 9 @@ -1774,35 +1617,22 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/science/robotics) -"An" = ( -/obj/machinery/door/airlock/engineering/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/crew) "Ao" = ( /obj/effect/turf_decal/industrial/warning, /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/mineral/plastitanium, /area/ship/science/robotics) -"AX" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/door/poddoor{ - id = "moth_east_door"; - name = "Eastern Blast Door" +"AV" = ( +/obj/structure/sign/warning/radiation/rad_area{ + pixel_y = 30 }, -/obj/machinery/button/door{ - id = "moth_east_door"; - name = "Starboard Blast Doors"; - pixel_y = -25 +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 }, -/turf/open/floor/mineral/plastitanium, -/area/ship/science/robotics) +/obj/effect/turf_decal/techfloor/orange, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Ba" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -1851,6 +1681,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) +"Bu" = ( +/obj/effect/landmark/observer_start, +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/syndicateemblem/bottom/middle, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) "BJ" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1 @@ -1860,6 +1702,33 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"BP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/crew) +"BY" = ( +/obj/effect/turf_decal/number/zero{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/ship/external) "Cn" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 5 @@ -1876,19 +1745,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/ship/medical) -"CJ" = ( -/obj/machinery/door/airlock/medical/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 8 +"CI" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical) +/obj/effect/turf_decal/corner/opaque/purple/three_quarters, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) "CP" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 8 @@ -1904,6 +1768,28 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"Dl" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"Dm" = ( +/obj/machinery/door/airlock/medical/glass{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical) "Do" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -1911,6 +1797,18 @@ /obj/effect/decal/remains/human, /turf/open/floor/engine, /area/ship/engineering/engine) +"Ds" = ( +/obj/machinery/door/airlock/engineering/glass{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/crew) "DS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -1939,67 +1837,57 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/engineering) +"DY" = ( +/obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Ef" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/turf_decal/syndicateemblem/bottom/right, -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/engineering) -"Em" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"En" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4 - }, -/obj/effect/decal/remains/human, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"Eu" = ( -/obj/machinery/door/airlock/research/glass, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) -"EF" = ( -/obj/machinery/door/airlock/atmos/glass, -/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{ +/obj/effect/turf_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/turf_decal/syndicateemblem/bottom/right, +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) +"Em" = ( +/obj/effect/turf_decal/techfloor/orange{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ dir = 4 }, /turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) +/area/ship/engineering) +"En" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4 + }, +/obj/effect/decal/remains/human, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"EA" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew) "Fd" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 8 @@ -2016,6 +1904,24 @@ /obj/effect/turf_decal/atmos/air, /turf/open/floor/engine/air, /area/ship/engineering/atmospherics) +"Fq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/decal/cleanable/oil, +/obj/item/kirbyplants/random, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, +/obj/machinery/shower{ + pixel_y = 19 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "FF" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 8 @@ -2023,18 +1929,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"Gc" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Gj" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 9 @@ -2051,31 +1945,42 @@ /obj/item/mecha_parts/mecha_equipment/mining_scanner, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"GH" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +"GJ" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 1 }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/table/reinforced, -/obj/item/stack/rods/fifty, -/obj/machinery/light{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ + dir = 1 }, -/obj/item/mecha_parts/mecha_equipment/rcd, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/storage/part_replacer, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "GL" = ( /obj/machinery/atmospherics/components/binary/pump, /obj/effect/turf_decal/corner/opaque/purple/three_quarters, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) +"GU" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 6 + }, +/obj/item/vending_refill/engivend, +/obj/structure/table/reinforced, +/obj/item/circuitboard/mecha/ripley/main, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Hn" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) +"Ho" = ( +/obj/effect/turf_decal/corner/opaque/yellow/three_quarters, +/obj/item/kirbyplants/random, +/obj/item/stock_parts/scanning_module/adv, +/obj/item/radio/intercom/directional/south, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Hp" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 1 @@ -2083,37 +1988,32 @@ /obj/structure/window/reinforced/spawner, /turf/open/floor/plating/airless, /area/ship/medical) -"Ht" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "Hy" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 10 }, /turf/open/floor/plasteel/white, /area/ship/medical) -"HA" = ( -/obj/effect/turf_decal/corner/opaque/yellow/three_quarters, -/obj/item/kirbyplants/random, -/obj/item/stock_parts/scanning_module/adv, -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "HI" = ( /obj/effect/turf_decal/techfloor/orange/corner{ dir = 4 }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"HP" = ( +/obj/structure/tank_dispenser, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/button/door{ + dir = 4; + id = "kugelsm"; + name = "SM Window Shutters"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) "HQ" = ( /obj/machinery/mass_driver{ dir = 1; @@ -2144,20 +2044,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"Id" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/vending/engivend{ - all_items_free = 1; - default_price = 0; - extra_price = 0 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Ik" = ( /obj/machinery/mech_bay_recharge_port, /obj/effect/turf_decal/corner/opaque/purple/three_quarters{ @@ -2166,26 +2052,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"Im" = ( -/obj/effect/turf_decal/rechargefloor, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 10 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/mecha_parts/chassis/firefighter, -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"Iu" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/purple/three_quarters, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) "Je" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 1 @@ -2216,47 +2082,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/crew) -"JE" = ( -/obj/structure/closet/secure{ - icon_state = "ce"; - name = "Overseer's locker" - }, -/obj/item/clothing/gloves/combat, -/obj/item/pipe_dispenser, -/obj/item/clothing/head/beret/eng, -/obj/item/clothing/head/beret/ce, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/clothing/head/hardhat/weldhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/under/rank/engineering/chief_engineer/skirt, -/obj/item/clothing/under/rank/engineering/chief_engineer, -/obj/item/storage/belt/utility/chief/full, -/obj/item/areaeditor/shuttle, -/obj/item/construction/rcd/arcd, -/obj/effect/turf_decal/techfloor/orange{ - dir = 10 - }, -/obj/item/clothing/head/HoS/beret/syndicate, -/obj/item/clothing/suit/armor/vest/capcarapace/syndicate, -/obj/item/card/emag, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/circuitboard/machine/techfab/department/engineering, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/under/syndicate/tacticool/skirt, -/obj/item/holosign_creator/engineering, -/obj/item/holosign_creator/atmos, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"JR" = ( -/obj/effect/turf_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "JT" = ( /obj/item/storage/toolbox/electrical, /obj/effect/decal/cleanable/dirt, @@ -2300,11 +2125,12 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"Kl" = ( +"Ky" = ( /obj/machinery/ore_silo, /obj/effect/turf_decal/techfloor/orange{ dir = 6 }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) "KD" = ( @@ -2313,38 +2139,9 @@ }, /turf/open/floor/plating/airless, /area/ship/science/robotics) -"KR" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/poddoor{ - id = "moth_east_door"; - name = "Eastern Blast Door" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/science/robotics) -"Lb" = ( -/obj/effect/landmark/observer_start, -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) "Lf" = ( /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/engineering) -"Lq" = ( -/obj/item/radio/intercom/wideband{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/engineering) "Lx" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 10 @@ -2383,18 +2180,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"Md" = ( -/obj/item/radio/intercom{ - pixel_x = 32 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 6 - }, -/obj/item/vending_refill/engivend, -/obj/structure/table/reinforced, -/obj/item/circuitboard/mecha/ripley/main, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Mf" = ( /obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 1 @@ -2466,6 +2251,16 @@ "MH" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) +"MP" = ( +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/wideband/directional/south{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "MV" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 @@ -2476,35 +2271,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"Nm" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +"Nq" = ( +/obj/machinery/door/airlock/research/glass{ + dir = 4 }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/mineral/plastitanium/airless, -/area/ship/external) -"Nr" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"Nu" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 5 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) "NW" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2518,6 +2305,18 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"OX" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Pi" = ( /obj/effect/turf_decal/techfloor/orange/corner{ dir = 1 @@ -2549,26 +2348,6 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) -"PE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/orange, -/obj/effect/decal/cleanable/oil, -/obj/item/kirbyplants/random, -/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, -/obj/machinery/shower{ - pixel_y = 19 - }, -/obj/effect/turf_decal/box/white, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "PN" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -2584,6 +2363,23 @@ "PO" = ( /turf/open/floor/plasteel/white, /area/ship/medical) +"PZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/button/massdriver{ + dir = 1; + id = "smejection"; + pixel_x = 9; + pixel_y = -17 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/engine, +/area/ship/engineering/engine) "Qf" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/plasteel/tech/grid, @@ -2611,6 +2407,18 @@ "QB" = ( /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"QR" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/vending/engivend{ + all_items_free = 1; + default_price = 0; + extra_price = 0 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "QX" = ( /obj/structure/sign/poster/official/wtf_is_co2, /turf/closed/wall/r_wall/syndicate/nodiagonal, @@ -2635,6 +2443,45 @@ }, /turf/open/floor/mineral/plastitanium/airless, /area/ship/external) +"RG" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/turf_decal/syndicateemblem/bottom/right, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) +"RL" = ( +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 1; + layer = 2; + piping_layer = 2 + }, +/obj/item/radio/intercom/directional/north{ + pixel_y = -32 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"RO" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + dir = 4; + id = "moth_doors_west"; + name = "Western Blast Door" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/medical) "RP" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 1 @@ -2651,12 +2498,18 @@ /obj/item/mecha_parts/part/ripley_right_leg, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"Sh" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 10 +"Sg" = ( +/obj/machinery/door/airlock/atmos/glass{ + dir = 4 }, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "Si" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -2690,6 +2543,21 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) +"SQ" = ( +/obj/machinery/door/airlock/research/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) "SS" = ( /obj/structure/window/plasma/reinforced/spawner/north, /obj/machinery/air_sensor/atmos/oxygen_tank, @@ -2701,6 +2569,15 @@ /obj/item/kirbyplants/random, /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) +"SZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/structure/curtain/bounty, +/obj/item/toy/plush/beeplushie, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew) "Tp" = ( /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/blue{ @@ -2724,21 +2601,14 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Tt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"Tu" = ( +/obj/machinery/nuclearbomb/beer{ + desc = "A commemorative model of a Nuclear Device, the same used by the brave troops in red to voice their complaints about station conditions to NT. Seems to have a tap on the back."; + name = "\improper Dwarven Accessibility Device" }, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium, -/area/ship/engineering) +/area/ship/crew) "TI" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 1 @@ -2758,6 +2628,32 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"Uw" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/structure/closet/secure{ + icon_state = "atmos"; + name = "Technician's locker" + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/item/extinguisher/advanced, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/clothing/head/beret/atmos, +/obj/item/clothing/head/beret/eng/hazard, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/under/syndicate/tacticool/skirt, +/obj/item/holosign_creator/atmos, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "UA" = ( /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/blue{ @@ -2771,22 +2667,35 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"UB" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 +"UE" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 +/obj/structure/table/reinforced, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/item/wrench, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/glasses/meson, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/industrial/warning{ + dir = 6 }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"UF" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/green{ - dir = 8 +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 }, -/obj/machinery/suit_storage_unit/atmos, -/obj/machinery/light, +/obj/effect/decal/cleanable/oil, +/obj/machinery/portable_atmospherics/pump, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) "UN" = ( @@ -2812,6 +2721,36 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"UU" = ( +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/gps/engineering, +/obj/item/gps/engineering, +/obj/item/gps/engineering, +/obj/item/gps/engineering, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/item/mecha_parts/part/ripley_torso, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"Vf" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/obj/effect/turf_decal/techfloor/orange/corner, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Vi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 @@ -2829,22 +2768,22 @@ /obj/machinery/status_display/shuttle, /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/engineering/atmospherics) -"Vp" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/ship/science/robotics) "VH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, /turf/open/floor/plasteel/white, /area/ship/medical) +"VN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/syndicateemblem/middle/left, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) "VP" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2866,6 +2805,11 @@ "WF" = ( /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/engineering/atmospherics) +"Xb" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/light/directional/east, +/turf/open/floor/mineral/plastitanium/airless, +/area/ship/external) "Xn" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/preopen{ @@ -2876,6 +2820,23 @@ "Xt" = ( /turf/open/floor/plating/airless, /area/ship/external) +"XC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/syndicateemblem/middle/right, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/engineering) +"Yc" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ship/science/robotics) "Yi" = ( /obj/effect/turf_decal/techfloor/orange/corner{ dir = 4 @@ -2885,20 +2846,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"Yv" = ( -/obj/machinery/computer/cryopod, -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/crew) -"Yy" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 9 - }, -/obj/effect/turf_decal/techfloor/orange/corner, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "YM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -2981,10 +2928,10 @@ pC Xn pC Xt -Nm +aE qk qk -xr +Xb Xt Zf Zf @@ -3003,13 +2950,13 @@ Zf Zf Zf pC -Yv +xp Jx wN Ws Ws -qB -vM +RO +cg Ws Ws Xt @@ -3029,14 +2976,14 @@ Zf Zf pC pC -hN +ub ZW Jy pC oa qS qS -xu +DY Ws Ws Zf @@ -3054,12 +3001,12 @@ Zf Zf Zf pC -yY +SZ hS ZW -lR +EA pC -oK +nv qY PO xE @@ -3083,9 +3030,9 @@ pC zR ZW hS -mi +on pC -Nr +qr Vi VH Mf @@ -3116,14 +3063,14 @@ xo vR Mf BJ -Ht +GJ Ws Zf Zf "} (8,1,1) = {" Zf -rS +Xt Zf Zf Zf @@ -3131,13 +3078,13 @@ Zf Zf Zf Xn -sY +uB vg ix ZW -mC +ro pC -Nu +Dl xo PO xL @@ -3149,7 +3096,7 @@ Zf "} (9,1,1) = {" Zf -ao +aQ Zf Zf Zf @@ -3161,21 +3108,21 @@ ge wz ix ZW -mR +Tu nt -ee +ur rw vW vW CE -HA +Ho Ws Xt Xt "} (10,1,1) = {" Xt -ao +BY Xt Ol Ol @@ -3186,14 +3133,14 @@ pC qW ZW Rf -kM +eG wN pC oY -rP +oG oY yg -CJ +Dm oY Ws Lf @@ -3201,28 +3148,28 @@ Xt "} (11,1,1) = {" Xt -aQ +ao Ol Ol qU Pz Pz -fb +HP sy pC -An -iE +Ds +BP pC pC nE -pq +er sk vY yJ CP -hw -JE -Lq +yJ +nc +Lf Lf "} (12,1,1) = {" @@ -3234,12 +3181,12 @@ of pk ci rv -se +PZ YP -Yy +Vf jq MF -aR +nw Pi QB sq @@ -3247,25 +3194,25 @@ Sn Sn nT HI -JR +MP Lx Mw "} (13,1,1) = {" Zf YP -gf +wG Do dh pt dC Zc -sK +ju NW -PE -jz -yo -Sh +Fq +kj +VN +mv TI Qf sJ @@ -3289,9 +3236,9 @@ ja nG uZ PN -jC -bB -Lb +oJ +cQ +Bu TK Qn UQ @@ -3312,12 +3259,12 @@ bv ew fQ kd -nW +iJ YP -wr -Tt -mV -ji +AV +sT +XC +RG De QB YM @@ -3338,11 +3285,11 @@ dL eX dU ae -oh +kH YP Qt jF -Gc +OX Kf Yi QB @@ -3352,7 +3299,7 @@ cM Em HW Ka -Md +GU Mw "} (17,1,1) = {" @@ -3363,21 +3310,21 @@ LL cK eZ dV -kk +UE YP WF -wy -EF +Sg +lC Zg Vl tR -GH +hh Mj Sb Sn lc -Id -Kl +QR +Ky Lf Lf "} @@ -3394,14 +3341,14 @@ WF Fj wK Bp -kY +RL WF WF pS -ui +Nq pS xC -Eu +SQ pS pS Lf @@ -3417,7 +3364,7 @@ Zf Zf Zf Zg -gk +jl gS jS lh @@ -3425,7 +3372,7 @@ tp nL pW uQ -wY +UU zP Fd Ik @@ -3454,7 +3401,7 @@ vz Hn Ab FF -Im +zN pS Xt Zf @@ -3475,12 +3422,12 @@ jY aX nf WF -qc +fy vH lI Ae Gj -Iu +CI pS Zf Zf @@ -3496,7 +3443,7 @@ Zf Zf Zg Zg -xX +UF ka UA MA @@ -3522,12 +3469,12 @@ Zf Zf Zf gu -yz +Uw MV HU Mm WF -hA +Yc nn cW gA @@ -3549,11 +3496,11 @@ Zf Zf Zg Zg -kc +hD Tp Wk WF -Vp +jt vJ xd Ao @@ -3576,13 +3523,13 @@ Zf Zf Zg ke -UB +uI Zg WF -KR -hl -hl -AX +dM +hu +hu +eE pS Xt Zf diff --git a/_maps/map_catalogue.txt b/_maps/map_catalogue.txt index c596d75abbdc..5e6b9c99e1e4 100644 --- a/_maps/map_catalogue.txt +++ b/_maps/map_catalogue.txt @@ -450,7 +450,7 @@ Find the key for using this catalogue in "map_catalogue_key.txt" File Name = "_maps\RandomRuins\SpaceRuins\vaporwave.dmm" Size = (x = 19)(y = 15)(z = 1) Tags = "No Combat", "Minor Loot", "Shelter" - + File Name = "_maps\RandomRuins\SpaceRuins\singularitylab.dmm" Size = (x = 118)(y = 75)(z = 1) Tags = "Boss Combat Challenge", "Major Loot", "Shelter" @@ -473,6 +473,8 @@ Find the key for using this catalogue in "map_catalogue_key.txt" Tags = "Minor Combat Challenge", "Minor Loot" File Name = "_maps\RandomRuins\BeachRuins\beach_fishing_hut.dmm" + Size = (x = 30)(y = 40)(z = 1) + Tags = "Hard Combat Challenge, "Major Loot", "Hazardous" File Name = "_maps\RandomRuins\BeachRuins\beach_crashed_engineer.dmm" Size = (x = 32)(y = 32)(z = 1) diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index dc552f39386f..62c35fc2f67a 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -9,7 +9,7 @@ /turf/open/space, /area/space) "acj" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 8 @@ -546,9 +546,7 @@ name = "CentCom Stand"; req_access_txt = "109" }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/grimy, /area/centcom/control) "alc" = ( @@ -576,9 +574,7 @@ name = "CentCom Stand"; req_access_txt = "109" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/grimy, /area/centcom/control) "alg" = ( @@ -608,7 +604,7 @@ /turf/open/floor/plating, /area/syndicate_mothership/control) "alm" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/syndicate_mothership/control) "alr" = ( @@ -862,9 +858,7 @@ /obj/structure/toilet{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white, /area/centcom/ferry) "ank" = ( @@ -896,9 +890,7 @@ /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) "any" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/syndicate_mothership/control) "anz" = ( @@ -1019,9 +1011,7 @@ /turf/open/floor/plasteel/grimy, /area/centcom/ferry) "aoV" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/centcom/holding) "aoW" = ( @@ -1093,9 +1083,7 @@ /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -1213,7 +1201,7 @@ /area/centcom/ferry) "aqf" = ( /obj/structure/closet/crate/bin, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/centcom/ferry) "aqg" = ( @@ -1281,9 +1269,7 @@ /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/pointybush, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/grass, /area/centcom/evac) "aqB" = ( @@ -1295,9 +1281,7 @@ /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/brflowers, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/grass, /area/centcom/evac) "aqD" = ( @@ -1330,9 +1314,7 @@ "aqO" = ( /obj/item/soap/syndie, /obj/structure/mopbucket, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/freezer, /area/syndicate_mothership/control) "aqP" = ( @@ -1401,9 +1383,7 @@ /obj/item/kirbyplants{ icon_state = "plant-21" }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/centcom/ferry) "arx" = ( @@ -1438,9 +1418,7 @@ /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/fernybush, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel{ icon_state = "asteroid5"; name = "plating" @@ -1452,9 +1430,7 @@ /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/grass, /area/centcom/control) "arK" = ( @@ -1508,15 +1484,11 @@ /turf/open/floor/grass, /area/centcom/evac) "arW" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/engine/cult, /area/wizard_station) "arX" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/engine/cult, /area/wizard_station) "arY" = ( @@ -1579,9 +1551,7 @@ /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/centcom/supply) "asx" = ( @@ -1592,9 +1562,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) "asy" = ( @@ -1805,7 +1773,7 @@ /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/palebush, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/asteroid, /area/centcom/evac) "auC" = ( @@ -1903,9 +1871,7 @@ /obj/machinery/atmospherics/components/unary/tank/air{ dir = 1 }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/centcom/ferry) "avh" = ( @@ -2086,7 +2052,7 @@ /turf/open/floor/plasteel/dark, /area/centcom/supplypod) "awl" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/syndicate_mothership/control) "awm" = ( @@ -2120,16 +2086,13 @@ /turf/open/floor/wood, /area/wizard_station) "awN" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/engine/cult, /area/wizard_station) "awO" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/engine/cult, /area/wizard_station) "awP" = ( @@ -2191,7 +2154,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 6 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/ferry) "axh" = ( @@ -2223,7 +2186,7 @@ /turf/open/floor/plating, /area/centcom/evac) "axu" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/wizard_station) "axv" = ( @@ -2251,7 +2214,7 @@ "axz" = ( /obj/structure/table/wood/fancy, /obj/item/storage/photo_album, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/carpet, /area/wizard_station) "axA" = ( @@ -2269,9 +2232,7 @@ /area/centcom/holding) "axD" = ( /obj/structure/closet/secure_closet/ertEngi, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/industrial/warning{ dir = 6 }, @@ -2285,9 +2246,7 @@ /turf/open/floor/plating, /area/syndicate_mothership/control) "axI" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/mech_bay_recharge_floor, /area/syndicate_mothership/control) "axJ" = ( @@ -2330,9 +2289,7 @@ /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/palebush, /obj/structure/window/reinforced/fulltile, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/grass, /area/centcom/holding) "ayg" = ( @@ -2379,9 +2336,7 @@ "ayE" = ( /obj/structure/table/wood, /obj/item/retractor, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/engine/cult, /area/wizard_station) "ayF" = ( @@ -2392,9 +2347,7 @@ /obj/structure/mirror/magic{ pixel_y = 28 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/engine/cult, /area/wizard_station) "ayG" = ( @@ -2527,9 +2480,7 @@ /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/palebush, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/asteroid, /area/centcom/evac) "azN" = ( @@ -2690,9 +2641,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/centcom/evac) "aAG" = ( @@ -2767,7 +2716,7 @@ /turf/open/floor/engine/cult, /area/wizard_station) "aBh" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/engine/cult, /area/wizard_station) "aBi" = ( @@ -2840,13 +2789,11 @@ /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/grass, /area/centcom/evac) "aCi" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/engine/cult, /area/wizard_station) "aCp" = ( @@ -3001,9 +2948,8 @@ /turf/open/floor/plasteel/white, /area/wizard_station) "aEb" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/carpet, /area/wizard_station) @@ -3013,23 +2959,18 @@ /turf/open/floor/carpet, /area/wizard_station) "aEd" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/carpet, /area/wizard_station) "aEe" = ( /obj/item/soap/homemade, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plasteel/white, /area/wizard_station) "aEf" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/white, /area/wizard_station) "aEk" = ( @@ -3151,9 +3092,7 @@ /area/centcom/holding) "aFb" = ( /obj/structure/musician/piano, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/carpet/black, /area/centcom/holding) "aFc" = ( @@ -3172,9 +3111,7 @@ /obj/structure/chair/wood/wings{ dir = 3 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/centcom/holding) "aFj" = ( @@ -3186,7 +3123,7 @@ dir = 4 }, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/wizard_station) "aFt" = ( @@ -3245,9 +3182,7 @@ /turf/open/lava, /area/wizard_station) "aGs" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/centcom/holding) "aGu" = ( @@ -3399,9 +3334,7 @@ /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/palebush, /obj/structure/window/reinforced/fulltile, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/grass, /area/centcom/holding) "aHn" = ( @@ -3464,7 +3397,7 @@ /turf/open/space, /area/space) "aHH" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/wood, /area/centcom/holding) "aHL" = ( @@ -3489,9 +3422,7 @@ /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/palebush, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating/asteroid, /area/tdome/tdomeadmin) "aIH" = ( @@ -3523,9 +3454,7 @@ /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/fernybush, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel{ dir = 6; icon_state = "asteroid8"; @@ -3659,9 +3588,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/centcom/evac) "aKg" = ( @@ -3704,7 +3631,7 @@ /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/pointybush, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/grass, /area/tdome/tdomeadmin) "aKC" = ( @@ -3790,9 +3717,7 @@ /turf/open/floor/plating, /area/centcom/evac) "aKR" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/centcom/evac) "aKS" = ( @@ -3841,24 +3766,18 @@ /turf/open/floor/mineral/titanium/blue, /area/centcom/evac) "aKZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/centcom/evac) "aLa" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/titanium/blue, /area/centcom/evac) "aLb" = ( /turf/open/floor/mineral/titanium/blue, /area/centcom/evac) "aLc" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/titanium/blue, /area/centcom/evac) "aLd" = ( @@ -3957,9 +3876,7 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/centcom/evac) "aLu" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/titanium, /area/centcom/evac) "aLv" = ( @@ -3972,9 +3889,7 @@ /area/centcom/evac) "aLx" = ( /obj/structure/bed, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/titanium/blue, /area/centcom/evac) "aLy" = ( @@ -3999,7 +3914,7 @@ "aLB" = ( /obj/structure/table, /obj/item/hand_labeler, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/mineral/titanium/blue, /area/centcom/evac) "aLC" = ( @@ -4033,9 +3948,7 @@ "aLH" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/titanium/blue, /area/centcom/evac) "aLI" = ( @@ -4045,9 +3958,7 @@ "aLJ" = ( /obj/structure/table, /obj/item/radio/off, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/titanium/blue, /area/centcom/evac) "aLN" = ( @@ -4094,7 +4005,7 @@ dir = 1 }, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/evac) "aLV" = ( @@ -4169,9 +4080,7 @@ /turf/open/floor/carpet/black, /area/centcom/holding) "aMx" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/rack, /obj/item/nullrod/claymore/saber/red{ damtype = "stamina"; @@ -4181,7 +4090,7 @@ /area/centcom/holding) "aMz" = ( /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/ferry) "aMD" = ( @@ -4228,9 +4137,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "aMI" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/table/wood, /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/plasteel/dark, @@ -4246,16 +4153,12 @@ /turf/open/floor/carpet/black, /area/centcom/holding) "aMR" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/carpet/black, /area/centcom/holding) "aMV" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) "aMW" = ( @@ -4316,9 +4219,7 @@ /area/centcom/holding) "aNy" = ( /obj/machinery/modular_computer/console/preset/research, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/centcom/holding) "aNz" = ( @@ -4335,7 +4236,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) "aND" = ( @@ -4401,9 +4302,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/centcom/supplypod) "aOa" = ( @@ -4526,9 +4425,7 @@ /area/centcom/ferry) "aOG" = ( /obj/structure/dresser, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/centcom/holding) "aON" = ( @@ -4579,7 +4476,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/centcom/supplypod) "aPa" = ( @@ -4590,10 +4487,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = 30 - }, +/obj/machinery/newscaster/directional/west, /turf/open/floor/plasteel/grimy, /area/centcom/control) "aPe" = ( @@ -4631,9 +4525,7 @@ /turf/open/floor/carpet/black, /area/centcom/holding) "aPn" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/industrial/warning{ dir = 9 }, @@ -4691,7 +4583,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/centcom/supplypod) "aPz" = ( @@ -4742,9 +4634,7 @@ /area/centcom/holding) "aPN" = ( /obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/soap/deluxe, /turf/open/floor/plasteel, /area/centcom/holding) @@ -4759,9 +4649,7 @@ /area/centcom/holding) "aPT" = ( /obj/machinery/gibber, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/centcom/holding) "aPW" = ( @@ -4852,7 +4740,7 @@ /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/ferry) "aQq" = ( @@ -4869,9 +4757,7 @@ /turf/open/floor/plasteel, /area/tdome/tdomeobserve) "aQu" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/centcom/holding) "aQw" = ( @@ -4888,9 +4774,7 @@ /turf/open/floor/plasteel, /area/tdome/arena) "aQH" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -5015,10 +4899,7 @@ /obj/item/clothing/gloves/fingerless, /obj/item/clothing/gloves/color/black, /obj/item/clothing/glasses/eyepatch, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) "aRs" = ( @@ -5060,10 +4941,7 @@ pixel_x = -4 }, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, /area/centcom/ferry) "aRB" = ( @@ -5128,9 +5006,7 @@ /turf/open/floor/plating/abductor, /area/abductor_ship) "aRS" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/rack, /obj/item/nullrod/claymore/glowing{ damtype = "stamina"; @@ -5223,9 +5099,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/centcom/supplypod) "aSH" = ( @@ -5236,13 +5110,8 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = 30 - }, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/west, /turf/open/floor/plasteel/grimy, /area/centcom/control) "aSM" = ( @@ -5267,10 +5136,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) "aTb" = ( @@ -5322,7 +5188,7 @@ /area/centcom/ferry) "aTl" = ( /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/evac) "aTn" = ( @@ -5371,10 +5237,7 @@ /turf/open/floor/plasteel, /area/centcom/supplypod) "aTA" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = 30 - }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/wood, /area/centcom/holding) "aTC" = ( @@ -5382,10 +5245,7 @@ /turf/open/floor/carpet/black, /area/centcom/holding) "aTE" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/wood, /area/centcom/holding) "aTI" = ( @@ -5460,9 +5320,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/centcom/ferry) "aUg" = ( @@ -5471,9 +5329,7 @@ /turf/open/floor/plasteel, /area/centcom/holding) "aUh" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/rack, /obj/item/nullrod/claymore/darkblade{ damtype = "stamina"; @@ -5487,7 +5343,7 @@ /turf/open/floor/plasteel, /area/wizard_station) "aUk" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/noticeboard{ dir = 1; pixel_y = -32 @@ -5501,19 +5357,14 @@ /obj/item/gun/energy/pulse/carbine/loyalpin, /obj/item/flashlight/seclite, /obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, /turf/open/floor/plasteel, /area/centcom/ferry) "aUw" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/supplypod) "aUy" = ( @@ -5531,16 +5382,12 @@ /turf/open/floor/wood, /area/centcom/holding) "aUH" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/closet/secure_closet/personal, /turf/open/floor/plasteel/dark, /area/centcom/supplypod) "aUJ" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/light_switch{ dir = 4; pixel_x = 23 @@ -5661,7 +5508,7 @@ /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/palebush, /obj/structure/window/reinforced/fulltile, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/grass, /area/centcom/holding) "aVx" = ( @@ -5681,9 +5528,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "aVA" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white, /area/centcom/holding) "aVC" = ( @@ -5762,9 +5607,8 @@ /turf/open/floor/plasteel, /area/centcom/holding) "aWj" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 +/obj/machinery/light/small/directional/west{ + brightness = 3 }, /turf/open/floor/plasteel/freezer, /area/syndicate_mothership/control) @@ -5811,14 +5655,8 @@ /obj/effect/turf_decal/industrial/warning{ dir = 5 }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 27 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 - }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, /area/centcom/ferry) "aWy" = ( @@ -5826,10 +5664,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, @@ -5853,7 +5688,7 @@ /area/centcom/control) "aWM" = ( /obj/structure/table/reinforced, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/supplypod) "aWO" = ( @@ -5877,10 +5712,7 @@ /turf/open/floor/wood, /area/centcom/holding) "aXa" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/white, /area/tdome/tdomeobserve) "aXb" = ( @@ -6185,9 +6017,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "aYV" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/rack, /obj/item/nullrod/claymore/saber{ damtype = "stamina"; @@ -6385,9 +6215,7 @@ /turf/open/floor/carpet/black, /area/centcom/holding) "aZV" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/centcom/holding) "aZW" = ( @@ -6453,10 +6281,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/ferry) "beI" = ( @@ -6555,7 +6380,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/supply) "btt" = ( @@ -6564,9 +6389,7 @@ /obj/item/gun/ballistic/automatic/smg/wt550, /obj/item/clothing/head/helmet/swat/nanotrasen, /obj/item/crowbar/red, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -6630,9 +6453,7 @@ /turf/open/floor/plasteel/dark, /area/ctf) "bAg" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -6721,9 +6542,7 @@ /turf/open/floor/plasteel/dark, /area/centcom/control) "bQk" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 }, @@ -6787,10 +6606,7 @@ /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -6810,9 +6626,7 @@ /turf/open/floor/circuit/red, /area/ctf) "cfq" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/table/reinforced, /obj/item/crowbar/red, /obj/item/wrench, @@ -6847,10 +6661,7 @@ /area/centcom/ferry) "chq" = ( /obj/structure/bookcase/random, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -6900,7 +6711,7 @@ /obj/machinery/computer/security{ dir = 1 }, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -30 }, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -6931,7 +6742,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/control) "cqN" = ( @@ -6948,10 +6759,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/plasteel/dark, /area/centcom/control) "crJ" = ( @@ -6988,9 +6796,7 @@ "cth" = ( /obj/structure/table/reinforced, /obj/item/storage/lockbox/loyalty, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel, /area/centcom/control) @@ -7140,7 +6946,7 @@ /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -7217,7 +7023,7 @@ /turf/open/floor/plasteel, /area/centcom/supply) "cWZ" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -7392,10 +7198,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = 30 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/plasteel/dark, /area/centcom/ferry) "duv" = ( @@ -7447,9 +7250,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/dark, /area/centcom/control) "dGq" = ( @@ -7462,10 +7263,7 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/white, /area/centcom/control) "dJP" = ( @@ -7481,9 +7279,7 @@ /area/ctf) "dKT" = ( /obj/structure/bookcase/random, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -7695,9 +7491,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 9 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/centcom/control) "edw" = ( @@ -7724,9 +7518,7 @@ /area/centcom/supply) "ege" = ( /obj/structure/bookcase/random, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -7773,7 +7565,7 @@ /area/tdome/tdomeobserve) "eii" = ( /obj/machinery/vending/coffee, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -30 }, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -7854,9 +7646,7 @@ /obj/structure/table, /obj/item/paper_bin, /obj/item/pen, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -7882,10 +7672,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/plasteel/dark, /area/centcom/evac) "eub" = ( @@ -7980,10 +7767,7 @@ /turf/open/floor/plasteel/dark, /area/ctf) "eDS" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/structure/filingcabinet/filingcabinet, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -8048,9 +7832,7 @@ /obj/item/kirbyplants{ icon_state = "plant-22" }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -8110,9 +7892,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/centcom/control) "eSF" = ( @@ -8275,10 +8055,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/centcom/control) "fhE" = ( @@ -8425,10 +8202,7 @@ /obj/item/kirbyplants{ icon_state = "plant-22" }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -8448,10 +8222,7 @@ /obj/item/crowbar/power, /obj/item/storage/belt/security/full, /obj/effect/turf_decal/industrial/warning, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel, /area/centcom/ferry) "fzm" = ( @@ -8479,7 +8250,7 @@ /turf/open/floor/plasteel, /area/centcom/evac) "fCj" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/brown, /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 @@ -8630,9 +8401,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "fUK" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -8682,7 +8451,7 @@ /turf/open/floor/plasteel/dark, /area/ctf) "fZL" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -8711,9 +8480,7 @@ /turf/open/floor/plasteel/dark, /area/centcom/control) "gdk" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -8796,9 +8563,7 @@ /turf/open/floor/plasteel/dark, /area/centcom/supply) "gmh" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/table/reinforced, /obj/item/crowbar/red, /obj/item/wrench, @@ -8822,9 +8587,7 @@ "gmW" = ( /obj/structure/table, /obj/structure/bedsheetbin, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -8861,9 +8624,7 @@ /turf/open/floor/plasteel/dark, /area/ctf) "gza" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -8890,9 +8651,7 @@ /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/centcom/supply) "gDP" = ( @@ -9069,7 +8828,7 @@ /obj/effect/turf_decal/corner/opaque/green{ dir = 8 }, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -30 }, /turf/open/floor/plasteel, @@ -9098,10 +8857,7 @@ /obj/effect/turf_decal/corner/opaque/brown{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/centcom/supply) "hbh" = ( @@ -9137,10 +8893,7 @@ /obj/item/clipboard, /obj/item/folder/white, /obj/item/pen/blue, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -9166,18 +8919,14 @@ /obj/machinery/power/smes/magical, /obj/effect/turf_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/cable{ icon_state = "0-2" }, /turf/open/floor/plasteel, /area/centcom/ferry) "hob" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 }, @@ -9218,9 +8967,7 @@ /obj/structure/table/reinforced, /obj/item/storage/lockbox/loyalty, /obj/item/gun/ballistic/automatic/assualt/ar, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel, /area/centcom/ferry) @@ -9298,7 +9045,7 @@ /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -9456,10 +9203,7 @@ "hYc" = ( /obj/structure/destructible/cult/tome, /obj/item/book/codex_gigas, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -9515,9 +9259,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/dark, /area/centcom/supply) "ieA" = ( @@ -9566,14 +9308,11 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/control) "igm" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 }, @@ -9642,10 +9381,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/centcom/control) "inF" = ( @@ -9679,9 +9415,7 @@ /obj/item/kirbyplants{ icon_state = "plant-21" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/mirror{ pixel_x = 28 }, @@ -9765,9 +9499,7 @@ /area/centcom/control) "iyA" = ( /obj/machinery/photocopier, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/button/door/indestructible{ id = "XCCFerry"; name = "Hanger Bay Shutters"; @@ -9809,7 +9541,7 @@ /obj/machinery/computer/secure_data{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -9854,10 +9586,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/centcom/control) "iDE" = ( @@ -9894,9 +9623,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "iNA" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ dir = 4 @@ -9962,7 +9689,7 @@ /turf/open/floor/plasteel, /area/syndicate_mothership/control) "jcR" = ( -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -30 }, /obj/machinery/computer/med_data{ @@ -10024,9 +9751,7 @@ /obj/item/paper/pamphlet/centcom/visitor_info, /obj/item/paper/pamphlet/centcom/visitor_info, /obj/item/paper/pamphlet/centcom/visitor_info, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -10243,7 +9968,7 @@ /turf/open/floor/plasteel, /area/tdome/tdomeobserve) "jLt" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -10293,9 +10018,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/newscaster/security_unit{ dir = 8; pixel_x = -30 @@ -10354,7 +10077,7 @@ /obj/item/kirbyplants{ icon_state = "plant-22" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/noticeboard{ dir = 1; pixel_y = -32 @@ -10420,17 +10143,11 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/control) "keq" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10505,10 +10222,7 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/white, /area/centcom/control) "kjG" = ( @@ -10532,10 +10246,7 @@ /obj/machinery/computer/security{ dir = 8 }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10617,10 +10328,7 @@ /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/tdome/tdomeobserve) "kAn" = ( @@ -10651,7 +10359,7 @@ /area/centcom/control) "kEm" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/centcom/control) "kHH" = ( @@ -10687,7 +10395,7 @@ "kJf" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10704,7 +10412,7 @@ /obj/structure/chair/comfy/black{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/status_display/evac{ pixel_y = -32 }, @@ -10746,7 +10454,7 @@ /obj/item/reagent_containers/food/drinks/bottle/whiskey{ pixel_y = 5 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10761,9 +10469,8 @@ /area/tdome/tdomeadmin) "kWg" = ( /obj/structure/table/wood, -/obj/item/radio/intercom{ - desc = "Talk smack through this."; - +/obj/item/radio/intercom/directional/north{ + desc = "Talk smack through this." }, /turf/open/floor/plasteel/grimy, /area/centcom/control) @@ -10806,9 +10513,7 @@ /turf/open/floor/plasteel, /area/centcom/supplypod/loading/one) "ldM" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10840,9 +10545,7 @@ /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -10863,9 +10566,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 @@ -10908,10 +10609,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/newscaster{ - dir = 8; - pixel_x = -30 - }, +/obj/machinery/newscaster/directional/east, /turf/open/floor/plasteel/dark, /area/tdome/tdomeobserve) "lkr" = ( @@ -10954,9 +10652,7 @@ /turf/open/floor/plasteel/dark, /area/ctf) "lmc" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 }, @@ -10992,9 +10688,7 @@ desc = "Used to grind things up into raw materials and liquids."; pixel_y = 5 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -11054,26 +10748,19 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/newscaster{ - dir = 8; - pixel_x = -30 - }, +/obj/machinery/newscaster/directional/east, /turf/open/floor/plasteel/dark, /area/centcom/ferry) "lwW" = ( /obj/structure/table/wood, /obj/machinery/door/window, -/obj/item/radio/intercom{ - desc = "Talk smack through this."; - +/obj/item/radio/intercom/directional/north{ + desc = "Talk smack through this." }, /turf/open/floor/plasteel/grimy, /area/centcom/control) "lxT" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/opaque/brown{ dir = 1 }, @@ -11106,10 +10793,7 @@ /obj/item/book/manual/wiki/security_space_law, /obj/item/restraints/handcuffs, /obj/item/assembly/flash/handheld, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -11152,10 +10836,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/tdome/tdomeadmin) "lEZ" = ( @@ -11458,9 +11139,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/centcom/control) "mtq" = ( @@ -11511,9 +11190,7 @@ /area/ctf) "myC" = ( /obj/structure/bookcase/random, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -11545,9 +11222,7 @@ /obj/item/stack/packageWrap, /obj/item/hand_labeler, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/centcom/supply) "mCQ" = ( @@ -11587,10 +11262,7 @@ /area/centcom/supply) "mGc" = ( /obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel, /area/centcom/supply) @@ -11655,9 +11327,7 @@ /area/tdome/tdomeobserve) "mLL" = ( /obj/structure/closet/crate/bin, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -11680,10 +11350,7 @@ /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -11720,16 +11387,11 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/dark, /area/centcom/ferry) "mYG" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/structure/filingcabinet/filingcabinet, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -11747,9 +11409,7 @@ /obj/item/paper_bin, /obj/item/pen/fourcolor, /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -11760,10 +11420,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = 30 - }, +/obj/machinery/newscaster/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/ferry) "ncR" = ( @@ -11969,7 +11626,7 @@ /obj/structure/table/wood, /obj/item/folder/red, /obj/item/lighter, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -30 }, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -12009,9 +11666,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/centcom/control) "nGO" = ( @@ -12053,10 +11708,7 @@ id = "XCCsec3"; name = "CC Main Access Control" }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -12345,9 +11997,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "oum" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -12420,9 +12070,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/dark, /area/centcom/control) "oEZ" = ( @@ -12448,10 +12096,7 @@ /obj/effect/turf_decal/corner/opaque/green{ dir = 4 }, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = 30 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/plasteel, /area/centcom/control) "oGj" = ( @@ -12669,9 +12314,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "phB" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -12747,9 +12390,7 @@ /turf/open/floor/circuit, /area/ctf) "pkK" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -12773,10 +12414,9 @@ /obj/structure/chair{ dir = 8 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ desc = "Talk smack through this."; - pixel_x = -32; - + pixel_x = -32 }, /turf/open/floor/plasteel/grimy, /area/centcom/control) @@ -12927,9 +12567,7 @@ /area/centcom/ferry) "pBE" = ( /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/centcom/evac) "pDx" = ( @@ -12937,7 +12575,7 @@ /obj/item/book/manual/wiki/barman_recipes, /obj/item/reagent_containers/food/drinks/shaker, /obj/item/reagent_containers/glass/rag, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -30 }, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -13077,9 +12715,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "pPW" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -13110,7 +12746,7 @@ /turf/open/floor/plasteel/dark, /area/centcom/ferry) "pRb" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/green, /turf/open/floor/plasteel, /area/centcom/control) @@ -13166,22 +12802,15 @@ /turf/open/floor/plasteel/dark, /area/centcom/control) "pWB" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/centcom/control) "pXI" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/brown, /obj/effect/turf_decal/corner/opaque/brown{ dir = 4 @@ -13237,9 +12866,7 @@ /obj/item/kirbyplants{ icon_state = "plant-21" }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -13256,13 +12883,8 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/centcom/control) "qnU" = ( @@ -13285,16 +12907,11 @@ /turf/open/floor/plasteel/white, /area/tdome/tdomeobserve) "qsF" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/centcom/control) "qvc" = ( @@ -13306,9 +12923,7 @@ /area/centcom/supply) "qxD" = ( /obj/structure/filingcabinet/medical, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -13383,9 +12998,7 @@ "qKD" = ( /obj/machinery/computer/security/telescreen, /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/status_display/ai{ pixel_y = 32 }, @@ -13483,10 +13096,7 @@ /obj/item/clothing/mask/cigarette/cigar{ pixel_x = 4.5 }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -13677,10 +13287,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/plasteel/dark, /area/centcom/control) "rln" = ( @@ -13734,9 +13341,7 @@ /obj/item/paper/pamphlet/centcom/visitor_info, /obj/item/paper/pamphlet/centcom/visitor_info, /obj/item/paper/pamphlet/centcom/visitor_info, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -13766,9 +13371,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/brown{ dir = 1 }, @@ -13858,7 +13461,7 @@ /area/ctf) "rDa" = ( /obj/structure/bookcase/random, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -13974,9 +13577,7 @@ /obj/item/kirbyplants{ icon_state = "plant-22" }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -14129,9 +13730,7 @@ }, /area/tdome/tdomeobserve) "sdM" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -14148,10 +13747,7 @@ /obj/machinery/chem_master/condimaster{ name = "HoochMaster 2000" }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -14305,19 +13901,14 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/ferry) "sJA" = ( /obj/structure/table, /obj/item/paper_bin, /obj/item/pen, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -14338,9 +13929,7 @@ /turf/open/floor/plasteel, /area/centcom/ferry) "sJU" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -14404,9 +13993,7 @@ /turf/open/floor/plasteel/white, /area/centcom/holding) "sRB" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -14450,7 +14037,7 @@ /area/centcom/holding) "sVg" = ( /obj/machinery/vending/cigarette, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -30 }, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -14565,10 +14152,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = 30 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/plasteel/dark, /area/tdome/tdomeobserve) "tgw" = ( @@ -14614,9 +14198,7 @@ /area/centcom/control) "tkL" = ( /obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -14632,9 +14214,7 @@ "tlL" = ( /obj/structure/table, /obj/structure/bedsheetbin, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 @@ -14645,7 +14225,7 @@ /obj/structure/table/wood, /obj/item/folder/red, /obj/item/lighter, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = -30 }, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -14758,9 +14338,7 @@ /turf/open/floor/plasteel/dark, /area/centcom/ferry) "tBW" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -14805,9 +14383,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 5 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/centcom/control) "tJZ" = ( @@ -14839,7 +14415,7 @@ /obj/machinery/computer/prisoner/management{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -14917,9 +14493,7 @@ pixel_y = 5 }, /obj/item/radio, -/obj/machinery/airalarm{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel, /area/centcom/control) @@ -14954,7 +14528,7 @@ /turf/open/floor/plasteel, /area/centcom/control) "udD" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -15125,7 +14699,7 @@ /turf/open/floor/plasteel/dark, /area/centcom/control) "uKl" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15143,10 +14717,7 @@ pixel_y = 3 }, /obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, @@ -15213,9 +14784,7 @@ /turf/open/floor/plasteel, /area/centcom/supplypod/loading/one) "uTF" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -15345,9 +14914,7 @@ /turf/open/floor/circuit/red, /area/ctf) "vkE" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -15396,9 +14963,7 @@ /turf/open/floor/plasteel/white, /area/centcom/control) "vnx" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 @@ -15421,9 +14986,7 @@ /area/tdome/tdomeobserve) "vqb" = ( /obj/structure/closet/crate/bin, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15434,10 +14997,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/supply) "vtH" = ( @@ -15450,7 +15010,7 @@ /turf/open/floor/plasteel/dark, /area/ctf) "vuT" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15464,9 +15024,7 @@ /turf/open/floor/plasteel/dark, /area/tdome/tdomeobserve) "vwe" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15594,9 +15152,7 @@ /area/centcom/holding) "vNl" = ( /obj/machinery/vending/boozeomat, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15628,9 +15184,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/centcom/control) "vZq" = ( @@ -15661,9 +15215,7 @@ "wbz" = ( /obj/machinery/computer/security, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/centcom/control) "wcA" = ( @@ -15750,9 +15302,7 @@ }, /obj/item/stamp, /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15772,10 +15322,7 @@ pixel_x = -3; pixel_y = 5 }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15789,7 +15336,7 @@ /turf/open/floor/plasteel/dark, /area/tdome/tdomeobserve) "wpe" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -15828,9 +15375,7 @@ /turf/open/floor/plasteel, /area/centcom/supply) "wxs" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/corner/opaque/brown{ dir = 1 }, @@ -15894,17 +15439,13 @@ /turf/open/floor/plasteel, /area/centcom/control) "wJt" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/corner/opaque/green, /turf/open/floor/plasteel, /area/centcom/control) "wJP" = ( /obj/structure/closet/crate/bin, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -15915,14 +15456,11 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/ferry) "wPO" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, @@ -15955,10 +15493,7 @@ /area/centcom/ferry) "wRm" = ( /obj/structure/filingcabinet/filingcabinet, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/industrial/warning{ dir = 9 }, @@ -15969,9 +15504,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/centcom/evac) "wUg" = ( @@ -16003,10 +15536,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = 30 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/plasteel/dark, /area/centcom/control) "wWB" = ( @@ -16016,9 +15546,8 @@ /area/centcom/control) "wXa" = ( /obj/structure/table/wood, -/obj/item/radio/intercom{ - desc = "Talk smack through this."; - +/obj/item/radio/intercom/directional/north{ + desc = "Talk smack through this." }, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; @@ -16114,10 +15643,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = 30 - }, +/obj/machinery/newscaster/directional/west, /turf/open/floor/plasteel/dark, /area/centcom/evac) "xpf" = ( @@ -16267,7 +15793,7 @@ req_access_txt = "102" }, /obj/structure/table/reinforced, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -16285,7 +15811,7 @@ /turf/open/floor/circuit, /area/ctf) "xYL" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 diff --git a/_maps/shuttles/misc/infiltrator_advanced.dmm b/_maps/shuttles/misc/infiltrator_advanced.dmm index ca9b4c84a300..d24017f4d8c0 100644 --- a/_maps/shuttles/misc/infiltrator_advanced.dmm +++ b/_maps/shuttles/misc/infiltrator_advanced.dmm @@ -31,9 +31,7 @@ /area/shuttle/syndicate/bridge) "ag" = ( /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/reagent_containers/food/drinks/bottle/whiskey{ desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front."; name = "Bottle of Tears"; @@ -62,9 +60,7 @@ /area/shuttle/syndicate/bridge) "ai" = ( /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/storage/toolbox/syndicate, /obj/item/assembly/voice, /obj/item/crowbar/red, @@ -86,9 +82,7 @@ /area/shuttle/syndicate/bridge) "al" = ( /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/item/stack/cable_coil, /obj/item/crowbar/red, /obj/item/radio/headset/syndicate/alt, @@ -122,7 +116,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ freerange = 1; name = "Syndicate Radio Intercom" }, @@ -182,10 +176,7 @@ dir = 4 }, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/bridge) "aB" = ( @@ -212,9 +203,7 @@ name = "tactical chair" }, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/status_display/evac{ pixel_y = 32 @@ -227,9 +216,7 @@ "aG" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/paper_bin{ pixel_x = -4; pixel_y = 4 @@ -239,9 +226,7 @@ pixel_x = 6; pixel_y = 6 }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/hallway) "aH" = ( @@ -252,9 +237,7 @@ name = "tactical chair" }, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) "aJ" = ( @@ -270,9 +253,7 @@ /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/turf_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) "aO" = ( @@ -325,9 +306,7 @@ pixel_x = 6 }, /obj/item/stack/medical/ointment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/machinery/status_display/ai{ pixel_y = 32 }, @@ -368,9 +347,7 @@ }, /obj/item/reagent_containers/glass/bottle/charcoal, /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) @@ -427,16 +404,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/eva) -"bu" = ( -/obj/structure/chair/comfy/shuttle{ - name = "tactical chair" - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate/airlock) "bw" = ( /obj/structure/shuttle/engine/propulsion, /obj/effect/turf_decal/industrial/warning/full, @@ -579,7 +546,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 9 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ freerange = 1; name = "Syndicate Radio Intercom"; pixel_y = 22 @@ -718,10 +685,7 @@ /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/rack, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /obj/item/clothing/suit/space/syndicate, /obj/item/tank/internals/oxygen/yellow, /obj/item/clothing/mask/gas{ @@ -912,10 +876,7 @@ "cU" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/rack, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/firealarm/directional/west, /obj/item/clothing/suit/space/syndicate/black/red, /obj/item/tank/internals/oxygen/yellow, /obj/item/clothing/mask/gas{ @@ -1009,7 +970,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "dd" = ( @@ -1063,7 +1024,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 6 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "dr" = ( @@ -1082,7 +1043,7 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ freerange = 1; name = "Syndicate Radio Intercom"; pixel_y = 22 @@ -1099,9 +1060,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/status_display/evac{ pixel_x = -32 }, @@ -1141,7 +1100,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) @@ -1162,13 +1121,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/box/corners, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/eva) "dN" = ( @@ -1263,9 +1217,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/status_display/evac{ pixel_x = 32 }, @@ -1280,7 +1232,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/armory) "eb" = ( @@ -1339,9 +1291,7 @@ pixel_x = 4; pixel_y = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/machinery/airalarm/syndicate{ pixel_y = 25 }, @@ -1381,10 +1331,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/pod/dark, /area/shuttle/syndicate/armory) "ev" = ( @@ -1463,9 +1410,7 @@ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -1505,13 +1450,8 @@ /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "1-2" @@ -1605,9 +1545,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) @@ -1655,9 +1593,7 @@ "ol" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/item/storage/fancy/cigarettes/cigpack_syndicate{ pixel_x = 8 }, @@ -1766,13 +1702,8 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, /obj/structure/cable{ icon_state = "1-2" }, @@ -2045,7 +1976,7 @@ /obj/effect/turf_decal/industrial/warning/cee{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/circuit/red, /area/shuttle/syndicate/hallway) "KL" = ( @@ -2099,12 +2030,8 @@ /obj/effect/turf_decal/box/corners{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/north, /obj/structure/cable{ icon_state = "1-2" }, @@ -2330,9 +2257,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "We" = ( @@ -2766,7 +2691,7 @@ ad ad ad aO -bu +aI bJ Sa nu diff --git a/_maps/shuttles/misc/pirate_default.dmm b/_maps/shuttles/misc/pirate_default.dmm index 09f3b4e56e6c..e24ae5d92697 100644 --- a/_maps/shuttles/misc/pirate_default.dmm +++ b/_maps/shuttles/misc/pirate_default.dmm @@ -3,13 +3,8 @@ /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/light/small/directional/west, +/obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, @@ -43,7 +38,7 @@ name = "Bridge Shutters Control"; pixel_y = -5 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 5 }, /obj/effect/decal/cleanable/dirt, @@ -84,21 +79,16 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/pod/dark, /area/shuttle/pirate) "aj" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/shuttle/pirate) "ak" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/closet/secure_closet/freezer{ locked = 0; name = "fridge" @@ -170,13 +160,8 @@ /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/small/directional/east, +/obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, @@ -289,9 +274,7 @@ /turf/open/floor/plasteel, /area/shuttle/pirate) "ax" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -326,17 +309,12 @@ /turf/open/floor/plasteel, /area/shuttle/pirate) "aB" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/computer/monitor/secret{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -396,9 +374,7 @@ /turf/open/floor/plating/airless, /area/shuttle/pirate) "aI" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, @@ -437,7 +413,7 @@ /turf/open/floor/wood, /area/shuttle/pirate) "aN" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/button/door{ id = "pirateportexternal"; name = "External Bolt Control"; @@ -453,7 +429,7 @@ /turf/open/floor/plating, /area/shuttle/pirate) "aO" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/button/door{ id = "piratestarboardexternal"; name = "External Bolt Control"; @@ -506,18 +482,13 @@ /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "aW" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/frame/computer{ anchored = 1; dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ dir = 4 @@ -583,12 +554,8 @@ /obj/effect/turf_decal/industrial/warning{ dir = 6 }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/table, /obj/item/gun/energy/laser{ @@ -605,9 +572,7 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "bo" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, @@ -631,9 +596,7 @@ /turf/open/floor/wood, /area/shuttle/pirate) "bu" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -676,13 +639,8 @@ /turf/open/floor/plasteel, /area/shuttle/pirate) "bC" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -717,7 +675,7 @@ /turf/open/floor/plasteel, /area/shuttle/pirate) "bI" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/computer/piratepad_control{ dir = 1 }, @@ -745,7 +703,7 @@ /obj/structure/toilet{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -854,16 +812,12 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/shuttle/pirate) "dU" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -993,9 +947,7 @@ "km" = ( /obj/machinery/atmospherics/components/unary/tank/air, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/shuttle/pirate) @@ -1020,9 +972,7 @@ "np" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/shuttle/pirate) @@ -1162,9 +1112,7 @@ /turf/open/floor/plasteel, /area/shuttle/pirate) "OD" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, @@ -1193,9 +1141,7 @@ /obj/effect/mob_spawn/human/pirate/captain{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ pixel_x = -32 @@ -1237,12 +1183,8 @@ /obj/effect/turf_decal/industrial/warning{ dir = 10 }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/table, /obj/item/melee/transforming/energy/sword/saber/pirate{ diff --git a/_maps/shuttles/ruin/ruin_caravan_victim.dmm b/_maps/shuttles/ruin/ruin_caravan_victim.dmm index 9344dff4ad98..4b8d1803616d 100644 --- a/_maps/shuttles/ruin/ruin_caravan_victim.dmm +++ b/_maps/shuttles/ruin/ruin_caravan_victim.dmm @@ -43,9 +43,7 @@ /turf/open/floor/plasteel/airless, /area/ship/crew) "bg" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -75,7 +73,7 @@ /turf/open/floor/plasteel/airless, /area/ship/crew) "bI" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/box/white/corners, /obj/machinery/button/door{ id = "caravantrade1_cargo"; @@ -98,7 +96,7 @@ /obj/structure/sink{ pixel_y = 25 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/showroomfloor{ @@ -126,7 +124,7 @@ /obj/effect/turf_decal/corner/opaque/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/power/terminal, /obj/structure/cable{ icon_state = "0-4" @@ -319,9 +317,7 @@ /turf/open/floor/plating/airless, /area/ship/engineering/engine) "lM" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/sign/warning/vacuum{ pixel_x = 32 }, @@ -341,13 +337,8 @@ /turf/closed/wall/mineral/titanium, /area/ship/cargo) "mw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -361,7 +352,7 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/power/terminal, /obj/structure/cable, /turf/open/floor/plasteel/dark{ @@ -421,7 +412,7 @@ /turf/open/floor/plasteel/dark/airless, /area/ship/cargo) "pR" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -457,10 +448,7 @@ }, /area/ship/bridge) "qM" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -470,7 +458,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/power/terminal{ dir = 1 }, @@ -495,9 +483,7 @@ /turf/open/floor/plasteel/airless, /area/ship/crew) "sf" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/table, /obj/item/stack/packageWrap, /obj/item/crowbar, @@ -505,9 +491,7 @@ pixel_x = 1; pixel_y = 5 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, /area/ship/cargo) @@ -528,9 +512,7 @@ "ss" = ( /obj/structure/rack, /obj/item/storage/belt/utility, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, @@ -569,14 +551,11 @@ }, /area/ship/cargo) "uA" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/bed, /obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/button/door{ id = "caravantrade1_cabin1"; name = "Cabin Bolt Control"; @@ -872,13 +851,8 @@ }, /area/ship/bridge) "EQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/light/small/directional/east, +/obj/machinery/firealarm/directional/west, /obj/effect/decal/cleanable/blood, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -932,9 +906,7 @@ /turf/template_noop, /area/ship/cargo) "GJ" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -953,12 +925,8 @@ /turf/open/floor/plasteel/airless, /area/ship/crew) "Ib" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -968,9 +936,7 @@ /turf/open/floor/plasteel/airless, /area/ship/bridge) "Ja" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/rack, /obj/item/storage/firstaid/regular, @@ -1064,7 +1030,7 @@ /turf/open/floor/plasteel/airless, /area/ship/cargo) "Mb" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1176,14 +1142,11 @@ /turf/open/floor/plasteel/dark/airless, /area/ship/cargo) "PM" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/bed, /obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/button/door{ id = "caravantrade1_cabin2"; name = "Cabin Bolt Control"; @@ -1218,12 +1181,10 @@ /turf/open/floor/plasteel/airless, /area/ship/cargo) "Qs" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/power/terminal{ dir = 4 }, @@ -1250,9 +1211,7 @@ "QY" = ( /obj/structure/table, /obj/machinery/cell_charger, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/item/stack/cable_coil/yellow{ pixel_x = 12; pixel_y = 4 @@ -1326,10 +1285,7 @@ /turf/open/floor/plating/airless, /area/ship/cargo) "UW" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ icon_state = "1-2" @@ -1423,10 +1379,7 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo) "WU" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/mob_spawn/human/corpse/cargo_tech, diff --git a/_maps/shuttles/ruin/ruin_pirate_cutter.dmm b/_maps/shuttles/ruin/ruin_pirate_cutter.dmm index d8e3e968dd86..e71d9c9c7fb6 100644 --- a/_maps/shuttles/ruin/ruin_pirate_cutter.dmm +++ b/_maps/shuttles/ruin/ruin_pirate_cutter.dmm @@ -20,6 +20,19 @@ }, /turf/open/floor/plasteel, /area/ship/crew) +"aK" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/medical) "bd" = ( /obj/structure/table/reinforced, /obj/machinery/button/door{ @@ -43,6 +56,14 @@ }, /turf/open/floor/plasteel, /area/ship/medical) +"cU" = ( +/obj/machinery/sleeper{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "de" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -99,18 +120,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"fS" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "fU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/effect/turf_decal/corner/opaque/red, @@ -119,6 +128,21 @@ }, /turf/open/floor/plasteel, /area/ship/security) +"gG" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/ship/medical) +"gT" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/melee/classic_baton, +/obj/effect/turf_decal/corner/opaque/red, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "hh" = ( /mob/living/simple_animal/hostile/pirate{ environment_smash = 0 @@ -138,23 +162,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"hN" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/ship/security) -"hT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "hZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -172,6 +179,27 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew) +"ig" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/cautery{ + pixel_x = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/medical) "iF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -211,6 +239,19 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) +"ja" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/power/terminal, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ship/security) "jh" = ( /obj/machinery/power/port_gen/pacman{ anchored = 1 @@ -225,24 +266,6 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ship/engineering) -"jo" = ( -/obj/structure/table, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/item/ammo_box/a40mm, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "kl" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -277,6 +300,22 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"kZ" = ( +/obj/structure/table, +/obj/machinery/airalarm/directional/north, +/obj/item/ammo_box/a40mm, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) "le" = ( /obj/machinery/porta_turret/syndicate/pod{ dir = 5; @@ -339,76 +378,12 @@ }, /turf/open/floor/plating, /area/ship/security) -"mI" = ( -/obj/structure/table, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"na" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/medical) -"nD" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/medical) -"oe" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/cautery{ - pixel_x = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/medical) +"oa" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "oF" = ( /obj/structure/closet{ name = "pirate outfits" @@ -462,38 +437,19 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"pK" = ( -/obj/item/stack/sheet/mineral/gold{ - amount = 25 - }, -/obj/item/stack/sheet/mineral/bananium{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/silver{ - amount = 25 - }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 10 - }, -/obj/item/stack/sheet/mineral/diamond{ - amount = 5 +"oV" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 }, -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/coin/silver, -/obj/item/coin/silver, -/obj/item/coin/gold, -/obj/item/coin/gold, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/power/terminal{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 }, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) +/turf/open/floor/plasteel, +/area/ship/security) "pS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, @@ -502,23 +458,6 @@ }, /turf/open/floor/plasteel, /area/ship/security) -"pZ" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "qo" = ( /obj/machinery/porta_turret/syndicate/pod{ dir = 6; @@ -562,19 +501,6 @@ "rI" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew) -"sr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/power/terminal, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ship/security) "su" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -607,6 +533,11 @@ /obj/item/reagent_containers/food/drinks/bottle/rum, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"ty" = ( +/obj/structure/closet/crate/secure/loot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "tM" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/hostile/pirate/ranged{ @@ -642,6 +573,13 @@ }, /turf/open/floor/plasteel, /area/ship/security) +"uB" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/ship/security) "vd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -652,32 +590,33 @@ }, /turf/open/floor/plasteel, /area/ship/security) -"vq" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +"wa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/obj/effect/turf_decal/corner/opaque/black, -/obj/effect/turf_decal/corner/opaque/black{ +/obj/machinery/firealarm/directional/south, +/obj/machinery/holopad/emergency/command, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"wk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/crew) -"vW" = ( -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/power/terminal{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-2" }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/medical) "wL" = ( /obj/machinery/button/door{ id = "caravanpirate_bolt_port"; @@ -698,21 +637,6 @@ }, /turf/open/floor/plasteel, /area/ship/medical) -"wX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/ship/security) "wZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -742,17 +666,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew) -"xR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "yt" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/industrial/warning{ @@ -854,15 +767,6 @@ }, /turf/open/floor/plating, /area/ship/medical) -"BI" = ( -/obj/structure/table, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/item/spacecash/bundle/c200, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "BL" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -871,31 +775,16 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plating, /area/ship/engineering) -"Cb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering) -"DY" = ( -/obj/structure/closet/crate/secure/loot, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +"CF" = ( +/obj/structure/table, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/item/storage/firstaid/fire, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Ek" = ( /obj/machinery/atmospherics/components/unary/tank/toxins{ dir = 1 @@ -966,6 +855,21 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Gb" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) "Gh" = ( /obj/machinery/atmospherics/components/unary/tank/air, /obj/effect/turf_decal/industrial/outline/yellow, @@ -992,19 +896,6 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) -"GQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/security) "GR" = ( /obj/structure/table, /obj/item/coin/gold, @@ -1015,6 +906,19 @@ "Hp" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) +"Hq" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/corner/opaque/black, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/crew) "HD" = ( /obj/structure/window/reinforced{ dir = 4 @@ -1043,6 +947,38 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel/white, /area/ship/medical) +"IZ" = ( +/obj/item/stack/sheet/mineral/gold{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/bananium{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/uranium{ + amount = 10 + }, +/obj/item/stack/sheet/mineral/diamond{ + amount = 5 + }, +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "Jb" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/mapping_helpers/airlock/locked, @@ -1061,17 +997,23 @@ "Jv" = ( /turf/template_noop, /area/template_noop) -"Kd" = ( -/obj/machinery/sleeper{ - dir = 1 +"Ka" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +/turf/open/floor/plating, +/area/ship/engineering) +"Kr" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/closet/crate/secure/loot, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "Ku" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/mapping_helpers/airlock/locked, @@ -1097,19 +1039,17 @@ "LG" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical) -"NM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/crate/secure/loot, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +"NE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" }, /turf/open/floor/plasteel/dark, -/area/ship/crew) +/area/ship/bridge) "ON" = ( /obj/machinery/porta_turret/syndicate/pod{ dir = 10; @@ -1127,6 +1067,32 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering) +"Pp" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"PL" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"Qj" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security) "QQ" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/security) @@ -1188,15 +1154,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"Sd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/ship/medical) "Sk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1223,22 +1180,26 @@ }, /turf/open/floor/plasteel, /area/ship/crew) -"SR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/holopad/emergency/command, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Ty" = ( /obj/machinery/atmospherics/components/unary/tank/toxins, /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plating, /area/ship/engineering) +"TK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm/directional/east, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/engineering) "UP" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -1248,25 +1209,9 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Wb" = ( -/obj/machinery/light/small, -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "Wd" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) -"Xq" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/melee/classic_baton, -/obj/effect/turf_decal/corner/opaque/red, -/obj/item/radio/intercom/wideband{ - pixel_y = -29 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Yb" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew) @@ -1311,6 +1256,14 @@ }, /turf/open/floor/plating, /area/ship/bridge) +"ZD" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/obj/item/spacecash/bundle/c200, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "ZY" = ( /obj/structure/chair/office{ dir = 8 @@ -1378,11 +1331,11 @@ Jv af Gh kY -vW +Ka fh -Cb +TK hI -vW +Ka Zo BL af @@ -1408,11 +1361,11 @@ Jv LG Ld Rq -oe +ig ul Hp Yo -wX +oV un Gw Hp @@ -1422,30 +1375,30 @@ Jv oL LG LG -na +wk su Ag Hp -jo +kZ tM -sr +ja Hp Hp QQ "} (8,1,1) = {" Jb -Sd +gG Rz kl EK -mI +CF Hp -pZ +Gb pS fU Ku -hN +uB Ah "} (9,1,1) = {" @@ -1454,7 +1407,7 @@ LG LG wL lY -Kd +cU Hp oT hh @@ -1467,13 +1420,13 @@ QQ Jv Bi Ld -nD +aK bH II Hp iX vd -GQ +Qj Gw mF Jv @@ -1499,9 +1452,9 @@ Jv rI aE SF -vq -NM -fS +Hq +Kr +Pp RC oF rI @@ -1512,13 +1465,13 @@ Jv Jv Jv rI -hT +oa yu hZ wZ de iF -Wb +PL rI Jv Jv @@ -1530,7 +1483,7 @@ le rI xg qC -pK +IZ Sk ku rI @@ -1560,7 +1513,7 @@ Jv Jv lu to -BI +ZD Yw lu Jv @@ -1576,7 +1529,7 @@ Jv lu GR ZY -xR +NE lu Jv Jv @@ -1589,9 +1542,9 @@ Jv Jv Jv lu -DY +ty lG -SR +wa lu Jv Jv @@ -1606,7 +1559,7 @@ Jv lu UP dE -Xq +gT lu Jv Jv diff --git a/_maps/shuttles/ruin/ruin_solgov_exploration_pod.dmm b/_maps/shuttles/ruin/ruin_solgov_exploration_pod.dmm index 3df3790631d9..6ab4c6c19195 100644 --- a/_maps/shuttles/ruin/ruin_solgov_exploration_pod.dmm +++ b/_maps/shuttles/ruin/ruin_solgov_exploration_pod.dmm @@ -48,7 +48,7 @@ /obj/structure/chair/comfy/shuttle{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/power/terminal{ dir = 1 }, diff --git a/_maps/shuttles/ruin/ruin_syndicate_dropship.dmm b/_maps/shuttles/ruin/ruin_syndicate_dropship.dmm index 2b1aabaadaa5..edec2afb3308 100644 --- a/_maps/shuttles/ruin/ruin_syndicate_dropship.dmm +++ b/_maps/shuttles/ruin/ruin_syndicate_dropship.dmm @@ -14,9 +14,7 @@ pixel_x = -25 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -25,16 +23,11 @@ /turf/open/floor/plating, /area/ship/crew) "bo" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ship/crew) "bB" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/button/door{ id = "caravansyndicate3_bolt_starboard"; name = "External Bolt Control"; @@ -223,9 +216,7 @@ "uy" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, @@ -259,9 +250,7 @@ /turf/open/floor/plating/airless, /area/ship/crew) "xC" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/button/door{ id = "caravansyndicate3_bolt_port"; name = "External Bolt Control"; @@ -292,10 +281,7 @@ /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, +/obj/machinery/firealarm/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 9 @@ -313,7 +299,7 @@ }, /obj/item/storage/box/syndie_kit/chameleon, /obj/item/crowbar/red, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/mineral/plastitanium, /area/ship/crew) "Dx" = ( @@ -478,9 +464,7 @@ }, /obj/item/clothing/under/syndicate, /obj/item/clothing/glasses/night, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/mineral/plastitanium, /area/ship/crew) "Pt" = ( @@ -520,7 +504,7 @@ /obj/effect/turf_decal/industrial/hatch/yellow{ dir = 4 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ship/crew) "Rj" = ( @@ -533,9 +517,7 @@ /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency, /obj/item/wrench, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/red{ @@ -646,10 +628,7 @@ /turf/open/floor/plasteel/dark, /area/ship/crew) "ZZ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/holopad/emergency/command, /turf/open/floor/plasteel/dark, diff --git a/_maps/shuttles/ruin/ruin_syndicate_fighter_shiv.dmm b/_maps/shuttles/ruin/ruin_syndicate_fighter_shiv.dmm index ef7826b0f289..34f45b2b62da 100644 --- a/_maps/shuttles/ruin/ruin_syndicate_fighter_shiv.dmm +++ b/_maps/shuttles/ruin/ruin_syndicate_fighter_shiv.dmm @@ -120,9 +120,7 @@ /obj/machinery/computer/helm{ dir = 1 }, -/obj/item/radio/intercom/wideband{ - pixel_y = -29 - }, +/obj/item/radio/intercom/wideband/directional/north, /turf/open/floor/mineral/plastitanium/red, /area/ship/security) "wV" = ( diff --git a/_maps/shuttles/ruin/ruin_syndicate_interceptor.dmm b/_maps/shuttles/ruin/ruin_syndicate_interceptor.dmm index 3d849f884c54..d08a43ace5fb 100644 --- a/_maps/shuttles/ruin/ruin_syndicate_interceptor.dmm +++ b/_maps/shuttles/ruin/ruin_syndicate_interceptor.dmm @@ -61,9 +61,7 @@ /obj/machinery/atmospherics/pipe/manifold/orange{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ship/bridge) "E" = ( @@ -167,10 +165,7 @@ /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) "Y" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 33; - pixel_x = -8 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/machinery/button/door{ pixel_y = 26; pixel_x = 5; diff --git a/_maps/shuttles/shiptest/independent_box.dmm b/_maps/shuttles/shiptest/independent_box.dmm index 683004544325..79776e2118b3 100644 --- a/_maps/shuttles/shiptest/independent_box.dmm +++ b/_maps/shuttles/shiptest/independent_box.dmm @@ -10,14 +10,6 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo) "ae" = ( -/obj/docking_port/mobile{ - callTime = 250; - dir = 2; - launch_status = 0; - name = "Hospital Ship"; - port_direction = 8; - preferred_direction = 4 - }, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, @@ -90,22 +82,6 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"as" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Engine Access" - }, -/obj/machinery/door/poddoor{ - id = "box_engine1" - }, -/turf/open/floor/plating, -/area/ship/engineering) "at" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering) @@ -113,30 +89,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/medical) -"aw" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay" - }, -/obj/effect/turf_decal/trimline/opaque/white/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "az" = ( /obj/effect/turf_decal/corner/opaque/blue/full, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -198,30 +150,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/tech/grid, /area/ship/medical/morgue) -"aG" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/medical) -"aH" = ( -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/medical) "aI" = ( /obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel/tech, @@ -266,14 +194,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"aR" = ( -/obj/machinery/vending/medical, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) "aS" = ( /turf/closed/wall/mineral/titanium, /area/ship/engineering) @@ -282,83 +202,6 @@ /obj/machinery/atmospherics/components/unary/tank/toxins, /turf/open/floor/plating, /area/ship/engineering) -"aU" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, -/turf/open/floor/plasteel/dark, -/area/ship/medical/morgue) -"aV" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/light/small/built, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32; - pixel_y = 4 - }, -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/ship/medical/morgue) -"aW" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/morgue) -"aX" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) "aZ" = ( /obj/structure/railing{ dir = 5 @@ -381,18 +224,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"bb" = ( -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = -25; - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, -/obj/effect/turf_decal/trimline/opaque/white/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "bc" = ( /obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, /obj/effect/decal/cleanable/dirt, @@ -401,16 +232,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"bd" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "be" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/bridge) @@ -421,61 +242,6 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"bg" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/button/door{ - id = "box_engine3"; - name = "Egnine shutter"; - pixel_y = -28; - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"bh" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 8; - layer = 2.35 - }, -/obj/machinery/advanced_airlock_controller{ - pixel_y = 28 - }, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"bi" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/ship/engineering) "bj" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 9 @@ -552,25 +318,9 @@ /obj/structure/catwalk/over, /turf/open/floor/plating/airless, /area/ship/external) -"bp" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/iv_drip/saline, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plating, -/area/ship/engineering) "bq" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/medical/morgue) -"br" = ( -/obj/effect/turf_decal/siding/blue, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "bs" = ( /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 8 @@ -586,22 +336,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"bt" = ( -/obj/structure/closet/secure_closet{ - icon_state = "med"; - name = "equipment locker" - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/belt/medical, -/obj/item/storage/belt/medical, -/obj/item/clothing/glasses/hud/health/prescription, -/obj/item/clothing/glasses/hud/health/prescription, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/storage/belt/medical/webbing, -/turf/open/floor/plasteel/dark, -/area/ship/medical) "bu" = ( /obj/structure/table/glass, /obj/structure/bedsheetbin, @@ -614,51 +348,38 @@ /obj/structure/sign/poster/official/random, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/medical) -"bx" = ( -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = -9 +"by" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/ship/engineering) +"bz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 }, -/obj/item/melee/classic_baton/telescopic{ - pixel_x = 8 +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"bB" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 6; + pixel_y = -25 }, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/gun/mini{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/stock_parts/cell/gun/mini{ - pixel_x = 10; - pixel_y = 3 - }, -/obj/item/stock_parts/cell/gun/mini{ - pixel_x = 10 +/obj/structure/window/reinforced/spawner/west, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/opaque/blue/warning{ + dir = 10 }, -/obj/machinery/recharger, -/obj/item/gun/energy/e_gun/mini{ - pixel_x = -6; - pixel_y = 6 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Cockpit"; - pixel_y = 30 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"by" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ship/engineering) -"bz" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/turf/open/floor/plasteel/mono/dark, +/turf/open/floor/plasteel/tech, /area/ship/medical) "bI" = ( /obj/machinery/door/window/southleft{ @@ -700,21 +421,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"bK" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "bM" = ( /obj/machinery/atmospherics/components/unary/cryo_cell{ dir = 4 @@ -746,9 +452,24 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"bS" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/gibs/down, +"bP" = ( +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -758,10 +479,11 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical) -"bT" = ( -/obj/machinery/computer/operating, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"bS" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/gibs/down, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -797,45 +519,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/medical) -"bX" = ( -/obj/structure/closet/crate/medical, -/obj/item/vending_refill/medical, -/obj/item/screwdriver, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel/white, -/area/ship/cargo) -"bY" = ( -/obj/machinery/door/airlock/command{ - name = "Bridge" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "bZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 @@ -853,20 +536,6 @@ /obj/machinery/holopad/emergency/command, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"cb" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - icon_state = "intercom-wideband-table"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "cc" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -910,303 +579,103 @@ }, /turf/open/floor/plasteel/tech, /area/ship/medical) -"cl" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/roller{ - pixel_y = 4 +"cn" = ( +/obj/structure/chair/comfy/shuttle{ + desc = "STOP! YOU'RE GOING TO TEST THIS SHIP RIGHT INTO AN ICEBERG!"; + dir = 4; + name = "Helmsman" }, -/obj/item/roller{ - pixel_y = 8 +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) +"cr" = ( +/obj/structure/cable{ + icon_state = "6-9" }, -/obj/item/roller{ - pixel_y = 12 +/obj/effect/decal/cleanable/wrapping, +/turf/open/floor/plating, +/area/ship/engineering) +"cu" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/engineering) +"cw" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/medical) +"cB" = ( +/obj/machinery/power/smes/engineering{ + charge = 1e+006 }, -/obj/effect/turf_decal/trimline/opaque/blue/warning{ - dir = 5 +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/tech, -/area/ship/medical) -"cm" = ( -/obj/machinery/light/small/built{ - dir = 8 +/turf/open/floor/plating, +/area/ship/engineering) +"cC" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/firealarm{ +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; dir = 4; - pixel_x = -26 + id = "box_cargo"; + locked = 1 }, -/obj/machinery/button/door{ - id = "whiteship_windows"; - name = "Windows Blast Door Control"; - pixel_x = -5; - pixel_y = -27; - dir = 1 +/obj/structure/cable{ + icon_state = "0-6" }, -/obj/machinery/button/door{ - id = "whiteship_bridge"; - name = "Bridge Blast Door Control"; - pixel_x = 5; - pixel_y = -27; - dir = 1 +/obj/machinery/door/poddoor{ + id = "emergencybay_blastdoors" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/button/door{ - id = "emergencybay_blastdoors"; - name = "Emergency Bay Blastdoors"; - pixel_x = 5; - pixel_y = -40; +/turf/open/floor/engine, +/area/ship/cargo) +"cD" = ( +/obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, -/obj/machinery/button/shieldwallgen{ - id = "box_cargo"; - pixel_x = -5; - pixel_y = -38; +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/structure/flora/bigplant, +/obj/effect/turf_decal/trimline/opaque/white/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"cn" = ( -/obj/structure/chair/comfy/shuttle{ - desc = "STOP! YOU'RE GOING TO TEST THIS SHIP RIGHT INTO AN ICEBERG!"; - dir = 4; - name = "Helmsman" +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"co" = ( -/obj/effect/turf_decal/corner/opaque/blue{ +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"cE" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/machinery/computer/helm{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"cp" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 8; - layer = 2.35 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/advanced_airlock_controller{ - pixel_y = -28 - }, -/obj/effect/turf_decal/arrows, -/turf/open/floor/plating, -/area/ship/engineering) -"cq" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"cr" = ( -/obj/structure/cable{ - icon_state = "6-9" - }, -/obj/effect/decal/cleanable/wrapping, -/turf/open/floor/plating, -/area/ship/engineering) -"cs" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/layer2, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plating, -/area/ship/engineering) -"ct" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) -"cu" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering) -"cv" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/wrench/medical, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = -8; - pixel_y = -8 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/medical) -"cw" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/medical) -"cx" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/structure/sign/poster/official/mini_energy_gun{ - pixel_y = -32 - }, -/obj/machinery/computer/cargo/express{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"cy" = ( -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/ship/engineering) -"cz" = ( -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "6-9" - }, -/turf/open/floor/plating, -/area/ship/engineering) -"cB" = ( -/obj/machinery/power/smes/engineering{ - charge = 1e+006 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"cC" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - dir = 4; - id = "box_cargo"; - locked = 1 - }, -/obj/structure/cable{ - icon_state = "0-6" - }, -/obj/machinery/door/poddoor{ - id = "emergencybay_blastdoors" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ship/cargo) -"cD" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, -/obj/structure/flora/bigplant, -/obj/effect/turf_decal/trimline/opaque/white/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"cE" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"cF" = ( -/obj/structure/sign/departments/restroom, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew) -"cG" = ( -/obj/structure/closet/emcloset/anchored, +/area/ship/crew) +"cF" = ( +/obj/structure/sign/departments/restroom, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/crew) +"cG" = ( +/obj/structure/closet/emcloset/anchored, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 4 }, @@ -1221,27 +690,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"cH" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay" - }, -/obj/effect/turf_decal/trimline/opaque/white/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"cI" = ( -/obj/machinery/light/built, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/ship/cargo) "cJ" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 4 @@ -1283,37 +731,6 @@ /obj/item/storage/box/pillbottles, /turf/open/floor/plasteel/freezer, /area/ship/crew) -"cL" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"cM" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) -"cN" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/cyan{ - amount = 5 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew) "cO" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -1342,21 +759,6 @@ /obj/machinery/smartfridge/chemistry/preloaded, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew) -"cR" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"cS" = ( -/obj/machinery/photocopier/faxmachine, -/obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "cT" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -1393,17 +795,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew) -"cX" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/cryopod, -/obj/effect/turf_decal/box/white, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "cY" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/wall/mineral/titanium/nodiagonal, @@ -1448,24 +839,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew) -"dd" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "de" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -1521,19 +894,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/crew) -"dk" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/freezer, -/area/ship/crew) "dm" = ( /obj/structure/table/glass, /obj/item/paper_bin, @@ -1543,26 +903,6 @@ /obj/effect/turf_decal/spline/fancy/opaque/black/corner, /turf/open/floor/plasteel/dark, /area/ship/crew) -"dn" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/folder/white{ - pixel_x = -7 - }, -/obj/item/pen{ - pixel_x = 4 - }, -/obj/item/clothing/glasses/hud/health/sunglasses, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/window/reinforced/spawner/east, -/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/effect/turf_decal/spline/fancy/opaque/black, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "do" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/bed/dogbed/runtime{ @@ -1580,19 +920,6 @@ /obj/item/bedsheet/dorms, /turf/open/floor/carpet/blue, /area/ship/crew) -"dq" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew) "dr" = ( /obj/effect/turf_decal/siding/white/corner{ dir = 8 @@ -1617,26 +944,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"dv" = ( -/obj/machinery/light/small/built{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "dz" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -1652,39 +959,48 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"dY" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 4 - }, -/obj/item/flashlight{ - pixel_x = 3; - pixel_y = 3 +"dR" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_bridge" }, -/obj/item/areaeditor/shuttle, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/item/bot_assembly/hygienebot, -/turf/open/floor/plating, -/area/ship/engineering) -"eB" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/techfloor{ - dir = 9 +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/structure/table/glass, -/obj/item/clothing/neck/stethoscope{ - pixel_y = 5; - pixel_x = -3 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "0-4" +/turf/open/floor/plating, +/area/ship/bridge) +"dS" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/weldingtool/largetank, +/obj/structure/sign/warning/chemdiamond{ + pixel_y = 32 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/ship/engineering) +"ei" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/cryopod, +/obj/effect/turf_decal/box/white, +/obj/machinery/computer/cryopod/retro/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"eH" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/structure/sign/poster/official/here_for_your_safety{ + pixel_y = -32 }, -/turf/open/floor/plasteel/tech, -/area/ship/medical) +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "eP" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 4 @@ -1750,22 +1066,57 @@ }, /turf/open/floor/plasteel/tech, /area/ship/medical) -"gh" = ( +"fN" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/door/poddoor{ - id = "whiteship_windows" +/obj/machinery/door/airlock/medical/glass{ + dir = 4; + name = "Medbay" }, -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/effect/turf_decal/trimline/opaque/white/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "gi" = ( /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ dir = 4 }, /turf/open/floor/plasteel/white, /area/ship/medical) +"gB" = ( +/obj/machinery/light/small/built/directional/east, +/obj/structure/rack, +/obj/item/roller{ + pixel_y = 4 + }, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 12 + }, +/obj/effect/turf_decal/trimline/opaque/blue/warning{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/tech, +/area/ship/medical) +"gC" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/light/small/built/directional/north, +/turf/open/floor/pod/dark, +/area/ship/medical/morgue) "gD" = ( /obj/structure/closet/secure_closet/CMO, /obj/structure/sign/poster/official/help_others{ @@ -1784,6 +1135,35 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/white, /area/ship/medical) +"gM" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/structure/closet/firecloset/wall{ + dir = 4; + pixel_x = -32 + }, +/obj/item/storage/firstaid/fire, +/obj/item/extinguisher/mini, +/turf/open/floor/plasteel/tech, +/area/ship/medical) +"hc" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastleft, +/obj/machinery/door/poddoor{ + dir = 4; + id = "box_engine2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/engineering) "hi" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 @@ -1805,6 +1185,25 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"hQ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" + }, +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/ship/medical) +"hS" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/cyan{ + amount = 5 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew) "iv" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -1824,37 +1223,106 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"jl" = ( -/obj/effect/turf_decal/techfloor{ - dir = 8 +"iQ" = ( +/obj/machinery/power/terminal{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/catwalk/over, +/obj/effect/turf_decal/ntspaceworks_small/right, +/turf/open/floor/plating, +/area/ship/engineering) +"iU" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"iV" = ( +/obj/docking_port/mobile{ + dir = 8; + launch_status = 0; + name = "Hospital Ship"; + preferred_direction = 4 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/engineering) +"ja" = ( +/obj/structure/toilet{ dir = 8 }, -/obj/structure/closet/firecloset/wall{ - dir = 4; - pixel_x = -32 +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 }, -/obj/item/storage/firstaid/fire, -/obj/item/extinguisher/mini, -/turf/open/floor/plasteel/tech, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/freezer, +/area/ship/crew) +"jk" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/stasis{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, /area/ship/medical) "jr" = ( /obj/machinery/smartfridge/bloodbank/preloaded, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo) +"jG" = ( +/obj/machinery/vending/medical, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "jI" = ( /obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"jR" = ( +/obj/machinery/light/built/directional/south, +/obj/machinery/defibrillator_mount/charging{ + pixel_y = -32 + }, +/obj/structure/rack, +/obj/item/defibrillator/loaded, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"jV" = ( +/obj/effect/turf_decal/siding/blue, +/obj/item/radio/intercom/wideband/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"kQ" = ( +/obj/docking_port/stationary{ + width = 15; + height = 15 + }, +/turf/template_noop, +/area/template_noop) "kZ" = ( /obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, /obj/effect/turf_decal/trimline/opaque/white/filled/corner{ dir = 1 }, /turf/open/floor/plasteel/dark, -/area/ship/cargo) +/area/ship/cargo) +"lp" = ( +/obj/structure/closet/secure_closet{ + icon_state = "med"; + name = "equipment locker" + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/clothing/glasses/hud/health/prescription, +/obj/item/clothing/glasses/hud/health/prescription, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/storage/belt/medical/webbing, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "lI" = ( /obj/effect/turf_decal/spline/fancy/opaque/black, /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ @@ -1862,26 +1330,45 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"lL" = ( -/obj/machinery/light_switch{ - pixel_y = -25; - dir = 1; - pixel_x = 6 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/opaque/blue/warning{ - dir = 10 +"lM" = ( +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"lQ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/item/clothing/neck/stethoscope{ + pixel_x = -3; + pixel_y = 5 }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/tech, /area/ship/medical) "mx" = ( @@ -1922,19 +1409,27 @@ /obj/structure/table, /turf/open/floor/plasteel/tech/grid, /area/ship/medical) -"nC" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 +"nA" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/donkpockets{ + pixel_y = 3 }, -/obj/machinery/stasis{ - dir = 4 +/obj/effect/spawner/lootdrop/donkpockets{ + pixel_x = -5; + pixel_y = 3 }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/wood, +/area/ship/crew) "nQ" = ( /turf/closed/wall/mineral/titanium, /area/ship/crew) +"og" = ( +/obj/machinery/stasis, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "ot" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 4 @@ -1948,13 +1443,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"ph" = ( -/obj/structure/cable{ - icon_state = "4-9" - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) "ql" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -1962,57 +1450,113 @@ /obj/effect/turf_decal/industrial/stand_clear, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"qP" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/light/small{ - dir = 4 +"qx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" + }, +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/ship/cargo) +"qD" = ( +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "6-9" + }, +/obj/effect/turf_decal/ntspaceworks_small, /turf/open/floor/plating, /area/ship/engineering) "qX" = ( /turf/open/floor/plasteel/white, /area/ship/medical) -"rn" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor{ - id = "whiteship_bridge" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"ri" = ( +/obj/structure/cable{ + icon_state = "1-8" }, +/obj/structure/catwalk/over, +/obj/effect/turf_decal/number/two, /turf/open/floor/plating, -/area/ship/bridge) -"si" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 +/area/ship/engineering) +"ro" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -25; + pixel_y = -25 }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/light/small/built{ - dir = 1 +/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal, +/obj/effect/turf_decal/trimline/opaque/white/filled/line{ + dir = 8 }, -/turf/open/floor/pod/dark, -/area/ship/medical/morgue) -"sy" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/effect/turf_decal/siding/white{ +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"sl" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/shower{ - dir = 1 +/obj/machinery/button/door{ + dir = 4; + id = "emergencybay_blastdoors"; + name = "Emergency Bay Blastdoors"; + pixel_x = -25; + pixel_y = 37 }, -/obj/item/soap, -/obj/structure/curtain, +/obj/machinery/button/shieldwallgen{ + dir = 4; + id = "box_cargo"; + pixel_x = -25; + pixel_y = 24 + }, +/obj/structure/closet/emcloset/wall{ + dir = 4; + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/ship/cargo) +"ss" = ( /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-9" }, -/turf/open/floor/plasteel/freezer, -/area/ship/crew) +/obj/structure/catwalk/over, +/obj/effect/turf_decal/number/nine, +/turf/open/floor/plating, +/area/ship/engineering) +"su" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/computer/operating/retro, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical) "sz" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/bookcase/manuals/medical, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/ship/crew) +"tn" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "tw" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -2022,6 +1566,17 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering) +"tz" = ( +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/ntspaceworks_small/left, +/turf/open/floor/plating, +/area/ship/engineering) "tD" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew) @@ -2045,19 +1600,55 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"tX" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 4 +"uj" = ( +/obj/machinery/light/small/built/directional/west, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 25 }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/railing{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/firealarm{ - pixel_y = 25 +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) +"ux" = ( +/obj/machinery/light/small/built/directional/west, +/obj/machinery/button/door{ + dir = 1; + id = "whiteship_windows"; + name = "Windows Blast Door Control"; + pixel_x = -5; + pixel_y = -27 }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/machinery/button/door{ + dir = 1; + id = "whiteship_bridge"; + name = "Bridge Blast Door Control"; + pixel_x = 5; + pixel_y = -27 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/button/door{ + dir = 1; + id = "emergencybay_blastdoors"; + name = "Emergency Bay Blastdoors"; + pixel_x = 5; + pixel_y = -40 + }, +/obj/machinery/button/shieldwallgen{ + dir = 1; + id = "box_cargo"; + pixel_x = -5; + pixel_y = -38 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "uD" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo) @@ -2067,22 +1658,29 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"uM" = ( -/obj/structure/window/reinforced{ +"vj" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering" + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Engine Access" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/door/poddoor{ - id = "box_engine3" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk/over, +/turf/open/floor/plasteel/dark, +/area/ship/medical/morgue) "vk" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 @@ -2097,11 +1695,29 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"vo" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/morgue) "vq" = ( /obj/machinery/door/poddoor{ id = "whiteship_windows" @@ -2112,10 +1728,61 @@ /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/ship/crew) +"vs" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/light/small/built/directional/south, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32; + pixel_y = 4 + }, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/ship/medical/morgue) +"vx" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/structure/sign/poster/official/mini_energy_gun{ + pixel_y = -32 + }, +/obj/machinery/computer/cargo/express{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "vE" = ( /obj/structure/dresser, /turf/open/floor/plasteel, /area/ship/crew) +"vX" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/crew) +"vY" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 1; + id = "whiteship_bridge" + }, +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/ship/bridge) "wb" = ( /obj/machinery/power/port_gen/pacman{ anchored = 1 @@ -2125,15 +1792,6 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ship/engineering) -"wc" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/wood, -/area/ship/crew) "wd" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 @@ -2166,6 +1824,23 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) +"wj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "box_engine3" + }, +/turf/open/floor/plating, +/area/ship/engineering) "wG" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/poddoor{ @@ -2174,6 +1849,42 @@ /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/ship/medical) +"wY" = ( +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = -9 + }, +/obj/item/melee/classic_baton/telescopic{ + pixel_x = 8 + }, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/gun/mini{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/stock_parts/cell/gun/mini{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/stock_parts/cell/gun/mini{ + pixel_x = 10 + }, +/obj/machinery/recharger, +/obj/item/gun/energy/e_gun/mini{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Cockpit"; + pixel_y = 30 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "xk" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 8 @@ -2209,6 +1920,7 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/landmark/observer_start, /turf/open/floor/plasteel/mono/white, /area/ship/medical) "xP" = ( @@ -2218,6 +1930,43 @@ /obj/effect/turf_decal/trimline/opaque/blue/filled/line, /turf/open/floor/plasteel/white, /area/ship/medical) +"yA" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 8; + layer = 2.35 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_y = -28 + }, +/obj/effect/turf_decal/arrows, +/turf/open/floor/plating, +/area/ship/engineering) +"yI" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/button/door{ + dir = 1; + id = "box_engine3"; + name = "Egnine shutter"; + pixel_y = -28 + }, +/turf/open/floor/plating, +/area/ship/engineering) "yN" = ( /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ dir = 4 @@ -2260,21 +2009,55 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"zZ" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets{ - pixel_y = 3 +"Ag" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 }, -/obj/effect/spawner/lootdrop/donkpockets{ - pixel_x = -5; - pixel_y = 3 +/obj/machinery/firealarm/directional/west, +/obj/machinery/sleeper{ + dir = 4 }, -/obj/machinery/light/small{ - dir = 1 +/turf/open/floor/plasteel/tech, +/area/ship/medical) +"AH" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/wood, -/area/ship/crew) +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 8; + layer = 2.35 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_y = 28 + }, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) +"AL" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + dir = 4; + name = "Medbay" + }, +/obj/effect/turf_decal/trimline/opaque/white/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Bh" = ( /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 4 @@ -2293,31 +2076,55 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"BD" = ( -/obj/structure/rack, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/storage/box/lights/bulbs, -/obj/item/circuitboard/machine/ore_redemption, -/obj/item/pickaxe/emergency, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/sheet/mineral/plasma/twenty, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/engineering) -"BE" = ( -/obj/machinery/power/smes/shuttle/precharged{ +"By" = ( +/obj/machinery/light/built/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/cargo) +"BR" = ( +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastleft, -/obj/machinery/door/poddoor{ - id = "box_engine2" +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/grunge{ + dir = 4; + name = "Morgue" + }, +/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 = "0-8" + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"BV" = ( +/obj/structure/closet/crate/medical, +/obj/item/vending_refill/medical, +/obj/item/screwdriver, +/obj/machinery/airalarm/directional/south, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/open/floor/plasteel/white, +/area/ship/cargo) +"Cn" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/machinery/computer/crew/retro{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "CH" = ( /obj/effect/turf_decal/corner/transparent/neutral, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -2336,6 +2143,24 @@ /obj/item/clothing/accessory/pocketprotector, /turf/open/floor/plasteel/dark, /area/ship/crew) +"CR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/storage/bag/trash{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ship/engineering) "Dm" = ( /obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -2344,14 +2169,6 @@ /obj/item/reagent_containers/food/snacks/burrito, /turf/open/floor/plating/airless, /area/ship/external) -"Dp" = ( -/obj/machinery/stasis, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) "Dr" = ( /obj/machinery/door/airlock{ name = "Crew Quarters" @@ -2430,19 +2247,13 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"FP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 9 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central6, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/morgue) +"FL" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/meter/atmos/layer2, +/turf/open/floor/plating, +/area/ship/engineering) "Gb" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/structure/catwalk/over, @@ -2459,48 +2270,90 @@ /obj/item/wallframe/firealarm, /turf/open/floor/plating, /area/ship/engineering) -"Gv" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/weldingtool/largetank, -/obj/structure/sign/warning/chemdiamond{ - pixel_y = 32 +"Gi" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/light/small{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering) -"Ht" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/radio/intercom{ - pixel_y = 23 +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"Jf" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/button/door{ - id = "emergencybay_blastdoors"; - name = "Emergency Bay Blastdoors"; - pixel_x = -25; - pixel_y = 37; +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/door/airlock/external{ dir = 4 }, -/obj/machinery/button/shieldwallgen{ - id = "box_cargo"; - pixel_x = -25; - pixel_y = 24; +/turf/open/floor/plating, +/area/ship/engineering) +"Gs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, -/obj/structure/closet/emcloset/wall{ +/obj/machinery/door/window/northleft{ dir = 4; - pixel_x = -32 + name = "Engine Access" }, -/turf/open/floor/plasteel/white, -/area/ship/cargo) +/obj/machinery/door/poddoor{ + dir = 4; + id = "box_engine1" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"HM" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/layer2, +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/plating, +/area/ship/engineering) +"Ic" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/wrench/medical, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = -8; + pixel_y = -8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"In" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/iv_drip/saline, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plating, +/area/ship/engineering) +"Ja" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "whiteship_bridge" + }, +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/ship/bridge) "Jq" = ( /obj/effect/turf_decal/trimline/opaque/blue/filled/line, /obj/effect/turf_decal/spline/fancy/opaque/black/corner{ @@ -2508,41 +2361,61 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Ju" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +"JI" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light/small{ +/turf/open/floor/plasteel/white, +/area/ship/crew) +"KE" = ( +/obj/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering) -"KX" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "0-2" }, /obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/meter/atmos/layer2, -/turf/open/floor/plating, -/area/ship/engineering) -"Ld" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 6 +/obj/machinery/button/door{ + dir = 4; + id = "box_engine2"; + name = "Egnine shutter"; + pixel_x = -25; + pixel_y = 37 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/light/broken{ +/turf/open/floor/plating, +/area/ship/engineering) +"KI" = ( +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/item/reagent_containers/glass/filter{ - pixel_x = -8 +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" }, -/turf/open/floor/plasteel/white, +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/ship/engineering) +"Lf" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/wood, /area/ship/crew) "Ln" = ( /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ @@ -2560,30 +2433,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"Lt" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/gps{ - gpstag = "NTREC1"; - pixel_x = -9; - pixel_y = 4 - }, -/obj/item/gps{ - gpstag = "NTREC1"; - pixel_x = -9; - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/opaque/blue/warning{ - dir = 6 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/turf/open/floor/plasteel/tech, -/area/ship/medical) "LG" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop{ @@ -2597,54 +2446,84 @@ /obj/effect/turf_decal/spline/fancy/opaque/black, /turf/open/floor/plasteel/dark, /area/ship/crew) -"Mi" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/medical/morgue) -"MG" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor{ - id = "whiteship_bridge" +"LV" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 6 }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/light/broken/directional/west, +/obj/item/reagent_containers/glass/filter{ + pixel_x = -8 }, -/turf/open/floor/plating, -/area/ship/bridge) +/turf/open/floor/plasteel/white, +/area/ship/crew) +"Mi" = ( +/turf/closed/wall/mineral/titanium, +/area/ship/medical/morgue) "MR" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 9 }, /turf/open/floor/plating, /area/ship/engineering) -"Nq" = ( -/obj/machinery/iv_drip, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +"NK" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/window/reinforced/spawner/west, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/opaque/blue/warning{ + dir = 9 }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, /area/ship/medical) -"OA" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25; - pixel_x = -5 +"NT" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/item/soap, +/obj/structure/curtain, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/freezer, +/area/ship/crew) +"OF" = ( +/obj/machinery/photocopier/faxmachine, +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"OS" = ( +/obj/machinery/door/airlock{ + dir = 4; + name = "Restroom" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ship/cargo) -"OD" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/door/poddoor{ - id = "whiteship_windows" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/ship/medical) +/turf/open/floor/plasteel/dark, +/area/ship/crew) "Ps" = ( /obj/structure/catwalk/over, /obj/machinery/atmospherics/components/unary/outlet_injector/on{ @@ -2653,6 +2532,11 @@ /obj/item/chair/plastic, /turf/open/floor/plating/airless, /area/ship/external) +"Qh" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/ship/cargo) "QD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2666,33 +2550,14 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"QS" = ( -/obj/machinery/light/built, -/obj/machinery/defibrillator_mount/charging{ - pixel_y = -32 - }, -/obj/structure/rack, -/obj/item/defibrillator/loaded, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"QT" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank, +"QM" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/storage/bag/trash{ - pixel_x = 6 +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/machinery/light/small/built/directional/west, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) "Rx" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor{ @@ -2703,6 +2568,24 @@ }, /turf/open/floor/plating, /area/ship/crew) +"RR" = ( +/obj/structure/filingcabinet/medical, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"RS" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/table{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Sg" = ( /obj/effect/turf_decal/techfloor{ dir = 1 @@ -2718,52 +2601,52 @@ /obj/item/stock_parts/manipulator, /turf/open/floor/plasteel/tech, /area/ship/medical) +"Sx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) "SJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood, /area/ship/crew) -"Tv" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/medical/morgue) -"TB" = ( +"Tr" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor{ + dir = 4; id = "whiteship_bridge" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ dir = 8 }, /turf/open/floor/plating, /area/ship/bridge) -"Ur" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/catwalk/over, -/obj/machinery/button/door{ - id = "box_engine2"; - name = "Egnine shutter"; - pixel_x = -25; - pixel_y = 37; - dir = 4 +"Tv" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/medical/morgue) +"UA" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/flashlight{ + pixel_x = 3; + pixel_y = 3 }, +/obj/item/areaeditor/shuttle, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/item/bot_assembly/hygienebot, +/obj/effect/turf_decal/number/four, /turf/open/floor/plating, /area/ship/engineering) "UN" = ( @@ -2787,23 +2670,103 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/ship/crew) +"Vp" = ( +/obj/machinery/iv_drip, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "VC" = ( /obj/structure/sign/poster/official/safety_internals{ pixel_y = -32 }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"WP" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor{ - id = "whiteship_bridge" +"VQ" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"Wd" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/machinery/computer/helm/retro{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"WB" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/folder/white{ + pixel_x = -7 + }, +/obj/item/pen{ + pixel_x = 4 + }, +/obj/item/clothing/glasses/hud/health/sunglasses, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/window/reinforced/spawner/east, +/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/effect/turf_decal/spline/fancy/opaque/black, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"WI" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_bridge" + }, +/obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/ship/bridge) +"WW" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/ship/engineering) +"XD" = ( +/obj/structure/rack, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/storage/box/lights/bulbs, +/obj/item/circuitboard/machine/ore_redemption, +/obj/item/pickaxe/emergency, +/obj/item/storage/box/lights/mixed, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/engineering) +"XN" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central6, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/morgue) "XY" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ @@ -2836,6 +2799,28 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Yg" = ( +/obj/machinery/light/small/built/directional/east, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/gps{ + gpstag = "NTREC1"; + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/gps{ + gpstag = "NTREC1"; + pixel_x = -9; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/opaque/blue/warning{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/plasteel/tech, +/area/ship/medical) "Yj" = ( /obj/machinery/door/window/eastleft, /obj/effect/turf_decal/corner/opaque/blue{ @@ -2846,16 +2831,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew) -"Yt" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4 - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/medical) "Yz" = ( /obj/effect/turf_decal/corner/opaque/blue, /obj/effect/turf_decal/corner/opaque/blue{ @@ -2884,23 +2859,11 @@ }, /turf/open/floor/plasteel/tech, /area/ship/medical) -"ZO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/opaque/blue/warning{ - dir = 9 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/medical) +"ZN" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/ship/engineering) (1,1,1) = {" aa @@ -2909,10 +2872,11 @@ aa aa aa aa +aa vk at aa -at +iV vk aa aa @@ -2927,12 +2891,13 @@ aa aa aa aa +aa aS -as +Gs at aa at -uM +wj aS aa aa @@ -2946,12 +2911,13 @@ aa aa aa aa +aa at cG cu Dm cu -bg +yI at aa aa @@ -2965,12 +2931,13 @@ aa aa aa aa +aa at -bh +AH by Ps cc -cp +yA at aa aa @@ -2984,12 +2951,13 @@ aa aa aa aa +aa at -bi +Gi at bo at -cq +lM at aa aa @@ -3002,6 +2970,7 @@ aa aa aa aa +aa aS at DP @@ -3021,14 +2990,15 @@ aa aa aa aa +aa at -Gv +dS bk at tw at ot -Ju +WW at aa aa @@ -3040,14 +3010,15 @@ aa aa aa aa +aa at -tX +Sx vl at -BE +hc at wh -QT +CR at aa aa @@ -3058,15 +3029,16 @@ aa aa aa aa +aa aS at cJ bm fG -Ur +KE Gb bj -KX +FL at aS aa @@ -3077,15 +3049,16 @@ aa aa aa aa +aa at aT Ln bn -qP +ZN MR iI cr -cy +tz wb at aa @@ -3096,16 +3069,17 @@ aa aa aa aa +aa bq Tv -aU +vj bq bq -gh +KI at -cs -cz -dY +HM +qD +UA at aa aa @@ -3114,17 +3088,18 @@ aa (12,1,1) = {" aa aa +aa Mi bq -FP +XN bl -aV +vs bq aa at -bp -ct -ph +In +iQ +ss at aS aa @@ -3133,33 +3108,35 @@ aa (13,1,1) = {" aa aa +aa bq -si +gC aF -aW +vo bq bq -OD +hQ al al cB -cM -BD +ri +XD at aa aa "} (14,1,1) = {" aa +aa ag al al al -aX +BR al -Yt +QM bM -aG +VQ al at at @@ -3170,25 +3147,27 @@ aa "} (15,1,1) = {" aa +aa al -eB -jl -aH +lQ +gM +Ag zy -br +jV bz bN cd -cv +Ic cF -cN -Ld -sy +hS +LV +NT tD aa "} (16,1,1) = {" aa +aa wG Sg au @@ -3208,6 +3187,7 @@ aa "} (17,1,1) = {" aa +aa al am FA @@ -3221,68 +3201,72 @@ gi cQ cP da -dk +ja tD aa "} (18,1,1) = {" +aa ad uD uD -aw -cH +AL +fN jr yN dr Bh tT -nC +jk tD tD -dd +OS tD tD cY "} (19,1,1) = {" +aa cC aj -Jf +sl QD VC uD -Ht +iU lI -bT +su xP ED tD -cR +RR Yd dm gD Rx "} (20,1,1) = {" +aa aN dt ah Yz -bX +BV uD -bt +lp lI bS ch -QS +jR tD -cS +OF dc LG -dq +JI Rx "} (21,1,1) = {" +kQ aN ql aB @@ -3293,58 +3277,61 @@ bu lI mE xP -Nq +Vp tD cT de -dn +WB Yj vq "} (22,1,1) = {" +aa iv my aA dz -cI +Qh uD bI Ye bs Jq -Dp +og tD -wc +Lf df UP ER Rx "} (23,1,1) = {" +aa ae aj yU FH -OA +By uD al -ZO +NK eR -lL +bB al tD -zZ +nA dg do ds Rx "} (24,1,1) = {" +aa ad uD cD aC -bb +ro kZ UN Zq @@ -3360,15 +3347,16 @@ cY "} (25,1,1) = {" aa +aa ak aq bc jI zl bw -cl +gB fJ -Lt +Yg cw vE cV @@ -3379,17 +3367,18 @@ aa "} (26,1,1) = {" aa +aa ak Ff aE aQ -bd +eH be be -bY +bP be be -cL +tn cW dj mx @@ -3398,18 +3387,19 @@ aa "} (27,1,1) = {" aa +aa ab uD uJ -aR +jG be be -dv +uj bZ -cm +ux be be -cX +ei CH tD nQ @@ -3418,18 +3408,19 @@ aa (28,1,1) = {" aa aa +aa ab -ak +qx ad be -bx +wY bJ ca cn -cx +vx be cY -Rx +vX nQ aa aa @@ -3440,12 +3431,13 @@ aa aa aa aa +aa bf -WP -bK -cb -co -TB +Tr +Cn +RS +Wd +dR bf aa aa @@ -3460,11 +3452,12 @@ aa aa aa aa -rn -MG -MG -MG -rn +aa +vY +WI +WI +WI +Ja aa aa aa diff --git a/_maps/shuttles/shiptest/independent_boyardee.dmm b/_maps/shuttles/shiptest/independent_boyardee.dmm index 7e2c0d2da53c..edfee9d9cb71 100644 --- a/_maps/shuttles/shiptest/independent_boyardee.dmm +++ b/_maps/shuttles/shiptest/independent_boyardee.dmm @@ -1,26 +1,40 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/vending/clothing, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"ao" = ( +/obj/machinery/power/smes/engineering, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/ship/maintenance) "as" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/layer4, /turf/open/floor/plating/airless, /area/ship/external) -"ay" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew) -"bk" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/corner/opaque/white/half, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 +"az" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) +"aV" = ( +/obj/item/paicard, +/obj/structure/table/wood/reinforced, /turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) +/area/ship/crew/canteen) "bv" = ( /obj/machinery/smartfridge/drinks, /turf/closed/wall, @@ -31,64 +45,17 @@ }, /turf/open/floor/plasteel/mono, /area/ship/bridge) -"bM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/closet/secure_closet/freezer/meat/open, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/box, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/turf/open/floor/plasteel/dark, -/area/ship/storage) -"bQ" = ( -/obj/machinery/newscaster{ - pixel_x = -30; - pixel_y = 30 - }, -/turf/open/floor/plasteel/mono, -/area/ship/bridge) -"ce" = ( -/obj/machinery/door/airlock, +"cc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"cl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 + dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 25 + icon_state = "0-4" }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew) +/turf/open/floor/plating, +/area/ship/maintenance) "cp" = ( /obj/machinery/door/poddoor{ id = "cargoblastdoors" @@ -97,24 +64,23 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/ship/cargo) -"cq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +"ct" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, /obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 25 + icon_state = "1-4" }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/freezer, -/area/ship/storage) +/turf/open/floor/carpet/red_gold, +/area/ship/crew) +"cy" = ( +/obj/item/paper_bin, +/obj/structure/table/wood/reinforced, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/canteen) "cA" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/condiment/rice, @@ -125,42 +91,22 @@ "cC" = ( /turf/closed/wall/r_wall, /area/ship/crew/canteen) -"cK" = ( -/obj/machinery/light{ - dir = 4 +"cJ" = ( +/obj/structure/toilet{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/storage/firstaid/medical{ + pixel_x = -5; + pixel_y = -4 }, -/obj/machinery/airalarm/all_access{ +/obj/structure/closet/wall/white{ dir = 8; - pixel_x = 25 - }, -/turf/open/floor/wood, -/area/ship/crew) -"cT" = ( -/obj/machinery/processor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -27 - }, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) -"cY" = ( -/obj/machinery/door/window/eastright, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 + name = "First Aid"; + pixel_x = 28 }, -/turf/open/floor/plasteel/dark, +/obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/patterned/brushed, /area/ship/crew/canteen) "dh" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -168,16 +114,10 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/bridge) -"dl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) -"dq" = ( +"di" = ( /obj/structure/table/wood/poker, -/obj/item/toy/cards/deck/syndicate, -/turf/open/floor/wood, +/obj/item/toy/cards/deck/kotahi, +/turf/open/floor/carpet/red_gold, /area/ship/crew/canteen) "dt" = ( /obj/structure/urinal{ @@ -188,49 +128,30 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew/canteen) -"dD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/structure/table/wood/fancy/black, +"dy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/carpet/red_gold, +/area/ship/crew) +"dF" = ( +/obj/machinery/advanced_airlock_controller{ + locked = 0; + pixel_x = 25 }, -/turf/open/floor/wood, +/obj/structure/chair, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "dH" = ( /turf/closed/wall/r_wall, /area/ship/maintenance) -"dM" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) "dN" = ( /obj/effect/turf_decal/box, /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"dQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) "dV" = ( /turf/closed/wall, /area/ship/maintenance) @@ -240,18 +161,53 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"eg" = ( +"dZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/freezer{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage) +"ef" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/item/megaphone{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"ej" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/corner/opaque/white/half, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "ep" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 @@ -267,6 +223,34 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"ex" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"eE" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/opaque/white/half, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"eG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/crew/hydroponics) "eS" = ( /obj/machinery/door/poddoor{ id = "windowlockdown" @@ -289,6 +273,29 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) +"fa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/crew/hydroponics) +"fl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "fs" = ( /turf/open/floor/plasteel, /area/ship/crew/hydroponics) @@ -311,59 +318,49 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/bridge) -"fM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" +"gL" = ( +/obj/effect/turf_decal/number/two, +/turf/open/floor/plating/airless, +/area/ship/external) +"gQ" = ( +/obj/machinery/door/airlock/external/glass{ + dir = 4; + name = "Internal Airlock" }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"gi" = ( -/obj/machinery/door/airlock/external, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"gv" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck/kotahi, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"gN" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" +"gV" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"gX" = ( -/turf/open/floor/wood, -/area/ship/crew/canteen) -"hk" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"hp" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"hl" = ( +/obj/effect/turf_decal/ihejirika_small/left{ + dir = 8 }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) +/turf/open/floor/plating/airless, +/area/ship/external) "hs" = ( /obj/structure/table/glass, /obj/machinery/plantgenes, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) +"hA" = ( +/obj/effect/turf_decal/ihejirika_small/right{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/ship/external) +"hL" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/structure/curtain/bounty, +/turf/open/floor/wood/walnut, +/area/ship/crew) "hQ" = ( /obj/structure/window/reinforced/spawner/east, /obj/machinery/biogenerator, @@ -372,49 +369,38 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"ie" = ( -/obj/machinery/advanced_airlock_controller{ - locked = 0; - pixel_x = 25 - }, -/obj/structure/chair, -/obj/item/radio/intercom{ - pixel_y = 20 +"hZ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/carpet/red_gold, /area/ship/crew/canteen) -"ir" = ( -/obj/machinery/light, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +"is" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plating, +/area/ship/maintenance) "iB" = ( /obj/machinery/status_display/shuttle, /turf/closed/wall, /area/ship/storage) -"jh" = ( -/obj/machinery/door/airlock/external, -/obj/docking_port/mobile{ - can_move_docking_ports = 1; - dir = 4; - dwidth = 5; - height = 29; - launch_status = 0; - name = "diner ship"; - port_direction = 2; - width = 19 - }, -/turf/open/floor/plasteel/dark, +"iR" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) -"ji" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer2{ +"ja" = ( +/obj/machinery/door/poddoor{ + id = "windowlockdown"; dir = 4 }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"jj" = ( +/turf/open/floor/carpet/red_gold, /area/ship/crew/canteen) "jl" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ @@ -422,30 +408,66 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) -"jv" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25 +"ju" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, /area/ship/cargo) -"jx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 +"jL" = ( +/obj/structure/chair/office{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) +/turf/open/floor/wood/walnut, +/area/ship/crew) "jN" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, /turf/open/floor/plasteel, /area/ship/cargo) +"kf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"kh" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/folder, +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 17 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/walnut, +/area/ship/crew) "kr" = ( /obj/structure/sign/warning/chemdiamond, /turf/closed/wall, /area/ship/maintenance) +"ku" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "bridgelockdown" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ship/bridge) "kM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -462,6 +484,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) +"kZ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "lg" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/border_only{ @@ -470,14 +504,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"lp" = ( -/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) "ly" = ( /obj/machinery/advanced_airlock_controller{ pixel_y = 25 @@ -541,24 +567,12 @@ /obj/item/spacecash/bundle/c1000, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"lJ" = ( -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) -"mb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" +"lY" = ( +/obj/machinery/cryopod{ + dir = 1 }, -/turf/open/floor/plasteel, -/area/ship/cargo) +/turf/open/floor/wood/walnut, +/area/ship/crew) "me" = ( /obj/structure/window/reinforced/spawner/west, /obj/machinery/power/smes/shuttle/precharged{ @@ -593,6 +607,18 @@ "mr" = ( /turf/closed/wall, /area/ship/crew/hydroponics) +"my" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "mH" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/yellow{ @@ -602,14 +628,13 @@ /obj/item/stack/sheet/mineral/plasma/five, /turf/open/floor/plating, /area/ship/maintenance) -"mR" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 4 +"mX" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "nc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/effect/turf_decal/industrial/warning{ @@ -617,10 +642,6 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"ng" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) "no" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -656,42 +677,12 @@ }, /turf/open/floor/plating, /area/ship/maintenance) -"nN" = ( -/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/canteen) -"nP" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/neutral, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) +"nZ" = ( +/turf/closed/wall, +/area/ship/external) "of" = ( /turf/closed/wall/r_wall, /area/ship/bridge) -"oi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/chair/wood, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) "om" = ( /obj/structure/cable{ icon_state = "2-8" @@ -699,12 +690,20 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/freezer, /area/ship/storage) -"oO" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/ship/crew/canteen) +"op" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/item/areaeditor/shuttle{ + pixel_x = -11 + }, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/plasteel/mono/white, +/area/ship/bridge) "ph" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -717,15 +716,6 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/bridge) -"pl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/crew/canteen) "pt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -748,15 +738,26 @@ }, /turf/open/floor/plating, /area/ship/maintenance) -"qa" = ( +"qe" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = -25 }, -/obj/machinery/firealarm{ - pixel_y = -28 +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/plating, /area/ship/maintenance) @@ -772,17 +773,22 @@ /turf/open/floor/plasteel/dark, /area/ship/cargo) "qu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/door/poddoor{ + id = "windowlockdown"; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ship/crew/hydroponics) +"qO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew) +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "qU" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 10 @@ -799,29 +805,53 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew/canteen) +"ro" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "rr" = ( /obj/structure/table/reinforced, /obj/machinery/chem_dispenser/drinks{ dir = 8 }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"rB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +"rt" = ( +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/corner/transparent/neutral, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"rA" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 }, -/obj/effect/landmark/observer_start, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew) +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "rH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/structure/cable{ @@ -829,9 +859,52 @@ }, /turf/open/floor/plating, /area/ship/maintenance) +"rM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"rR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"rY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "sg" = ( /turf/closed/wall, /area/ship/storage) +"sn" = ( +/obj/structure/table/wood/reinforced, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/canteen) "sp" = ( /obj/structure/chair/stool/bar, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -842,9 +915,16 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) +"st" = ( +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "sD" = ( /obj/machinery/door/poddoor{ - id = "windowlockdown" + id = "windowlockdown"; + dir = 4 }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -853,47 +933,49 @@ /obj/machinery/status_display/shuttle, /turf/closed/wall, /area/ship/cargo) +"sT" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "sU" = ( /turf/closed/wall, /area/ship/crew/canteen) -"tq" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/structure/curtain/bounty, -/turf/open/floor/wood, -/area/ship/crew) -"tK" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +"sX" = ( +/obj/structure/tank_dispenser/oxygen, /obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 + dir = 4 }, /obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 + dir = 1 }, +/obj/effect/turf_decal/corner/transparent/neutral, +/obj/effect/turf_decal/box, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, -/area/ship/crew/hydroponics) -"tM" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel/dark, -/area/ship/maintenance) -"tO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" +/area/ship/cargo) +"ta" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, +/obj/item/soap/deluxe, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/canteen) +"tz" = ( +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/structure/closet/crate, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "0-2" }, -/turf/open/floor/carpet/nanoweave, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood/walnut, /area/ship/crew) "tP" = ( /obj/effect/turf_decal/corner/transparent/neutral{ @@ -906,81 +988,102 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"tR" = ( +"tT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) +"tW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/ship/crew) -"up" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/chair/stool/bar{ - dir = 1 +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"ua" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/cargo) +"uC" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/turf/open/floor/wood, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) -"uR" = ( -/turf/closed/wall, -/area/ship/crew) -"vf" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/light/small{ +"uI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "1-2" }, +/obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, -/area/ship/maintenance) -"vj" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ship/storage) -"vq" = ( -/obj/structure/table/reinforced, +/area/ship/crew/hydroponics) +"uN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/item/reagent_containers/food/condiment/peppermill, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) -"vI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"uR" = ( +/turf/closed/wall, +/area/ship/crew) +"uS" = ( +/obj/machinery/processor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/obj/machinery/light/small{ +/obj/effect/turf_decal/corner/opaque/white/half{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"vw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/item/soap/deluxe, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/canteen) -"vJ" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 5; - pixel_y = 5 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/wood, -/area/ship/crew/canteen) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/crew/hydroponics) "vZ" = ( /turf/template_noop, /area/template_noop) @@ -992,18 +1095,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/plating, /area/ship/crew/canteen) -"wh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ship/cargo) "wm" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1011,26 +1102,42 @@ /obj/machinery/holopad/emergency/kitchen, /turf/open/floor/plasteel/mono/white, /area/ship/bridge) -"wn" = ( -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"wG" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/wood{ dir = 5 }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/mono/dark, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) "wO" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/box, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) +"wQ" = ( +/obj/machinery/door/airlock/external/glass{ + dir = 4; + name = "Internal Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"wY" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/hydroponics) "xh" = ( /obj/structure/window/reinforced/spawner/west, /obj/machinery/atmospherics/components/unary/shuttle/heater{ @@ -1046,15 +1153,6 @@ /obj/item/storage/bag/tray, /turf/open/floor/plasteel/mono, /area/ship/bridge) -"xp" = ( -/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/crew/canteen) "xr" = ( /obj/machinery/door/poddoor{ id = "windowlockdown" @@ -1062,35 +1160,45 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/crew/canteen) -"xH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 +"xw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/turf/open/floor/plasteel/mono, -/area/ship/bridge) -"xM" = ( -/obj/structure/closet/secure_closet/bar{ - req_access = null +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/item/radio/intercom{ - pixel_y = -28 +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance) +"xy" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/mono/dark, +/obj/structure/table/wood/poker, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/carpet/red_gold, /area/ship/crew/canteen) -"xS" = ( +"xC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) -"xW" = ( -/obj/structure/chair/stool/bar{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) +"xH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/mono, +/area/ship/bridge) "xX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -1100,6 +1208,16 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) +"yg" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "yi" = ( /turf/open/floor/plating/airless, /area/ship/external) @@ -1110,6 +1228,14 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/ship/cargo) +"yn" = ( +/obj/structure/closet/secure_closet/bar{ + req_access = null + }, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/canteen) "yF" = ( /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 @@ -1129,16 +1255,29 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"yW" = ( -/obj/machinery/power/apc/auto_name/west, +"yV" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/ship/cargo) +"zd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 25 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/freezer, +/area/ship/storage) "zl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 @@ -1149,34 +1288,38 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/bridge) -"zw" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 8 +"zs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) -"zM" = ( +"zu" = ( +/obj/machinery/gibber, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-4" }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"zP" = ( -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel/freezer, +/turf/open/floor/plasteel/dark, /area/ship/storage) -"zQ" = ( -/obj/machinery/firealarm{ - pixel_y = -28 +"zy" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 }, -/obj/effect/turf_decal/corner/transparent/neutral{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/effect/turf_decal/corner/transparent/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/door/firedoor/border_only{ dir = 4 }, @@ -1184,57 +1327,40 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"zW" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ +/area/ship/maintenance) +"zP" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/freezer, +/area/ship/storage) +"Af" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "Ag" = ( /turf/closed/wall/r_wall, /area/ship/cargo) -"Ar" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/hydroponics) "Au" = ( /turf/closed/wall/r_wall, /area/ship/storage) -"Aw" = ( -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"Ax" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"Av" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, -/area/ship/maintenance) +/area/ship/cargo) "AA" = ( /obj/machinery/computer/helm{ dir = 8 @@ -1247,24 +1373,22 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"AT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +"AF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/machinery/newscaster{ - pixel_y = -30 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"AW" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/ship/cargo) +/obj/effect/landmark/observer_start, +/turf/open/floor/carpet/red_gold, +/area/ship/crew) "Ba" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/effect/turf_decal/industrial/warning{ @@ -1272,12 +1396,30 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"Bg" = ( -/obj/structure/chair/wood{ - dir = 8 +"Bc" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck/syndicate, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) +"Bp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"Bq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/turf/open/floor/wood, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) +"BC" = ( +/obj/effect/turf_decal/number/zero, +/turf/open/floor/plating/airless, +/area/ship/external) "BE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -1287,12 +1429,16 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"BF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +"BP" = ( +/obj/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor/wood, -/area/ship/crew/canteen) +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance) "BQ" = ( /obj/structure/table/reinforced, /obj/machinery/vending/boozeomat/all_access{ @@ -1306,27 +1452,17 @@ /obj/item/reagent_containers/glass/rag, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) -"Ce" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/item/areaeditor/shuttle{ - pixel_x = -11 - }, -/obj/item/radio/intercom/wideband, -/turf/open/floor/plasteel/mono/white, -/area/ship/bridge) -"Co" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +"Ck" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"Cn" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-2" }, /turf/open/floor/plasteel, -/area/ship/cargo) +/area/ship/crew/hydroponics) "Cu" = ( /obj/machinery/door/poddoor{ id = "bridgelockdown" @@ -1334,40 +1470,41 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/bridge) -"Cx" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25 +"CF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/mono, -/area/ship/bridge) -"CB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"CP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) -"CJ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/corner/transparent/neutral, /obj/machinery/door/firedoor/border_only{ dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/door/airlock/glass, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"CL" = ( -/obj/machinery/gibber, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, /turf/open/floor/plasteel/dark, -/area/ship/storage) +/area/ship/crew/canteen) "CV" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/glass/bucket, @@ -1376,6 +1513,13 @@ /obj/effect/turf_decal/box, /turf/open/floor/plating, /area/ship/maintenance) +"Da" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "Dd" = ( /obj/machinery/grill, /obj/effect/turf_decal/corner/opaque/white/half, @@ -1402,48 +1546,72 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew/canteen) -"Dt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/white/half{ +"Dj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) -"Dx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck/cas{ + pixel_y = 8 }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew) -"Dy" = ( -/obj/machinery/door/airlock, +/obj/item/toy/cards/deck/cas/black, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) +"Dk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"Ds" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"DB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance) +"Dt" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ship/cargo) +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"DA" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"DD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "DF" = ( /obj/structure/chair/stool/bar, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -1464,24 +1632,30 @@ /obj/machinery/status_display/shuttle, /turf/closed/wall, /area/ship/maintenance) -"DK" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Internal Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"DI" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/cargo) +"DM" = ( +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"DX" = ( -/obj/structure/chair/sofa/left{ +/obj/structure/chair/sofa{ dir = 4 }, -/turf/open/floor/plasteel/mono/dark, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) +"DV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "engine fuel pump" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance) "DZ" = ( /obj/machinery/door/poddoor{ id = "windowlockdown" @@ -1489,34 +1663,35 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/crew/hydroponics) -"Ee" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -12 +"Ea" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -30; - pixel_y = -30 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/cargo) +"Eb" = ( +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) -"Ek" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/obj/structure/chair/wood{ + dir = 8 }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"Ei" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "4-8" }, -/turf/open/floor/carpet/nanoweave, +/turf/open/floor/carpet/red_gold, /area/ship/crew) "En" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1527,18 +1702,12 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew/canteen) -"Eo" = ( -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/structure/closet/crate/hydroponics, -/obj/item/seeds/wheat, -/obj/item/seeds/tomato, -/obj/item/seeds/random, -/obj/item/seeds/banana, -/turf/open/floor/plasteel/dark, -/area/ship/crew/hydroponics) +"Et" = ( +/obj/item/storage/box/drinkingglasses, +/obj/machinery/firealarm/directional/south, +/obj/structure/table/wood/reinforced, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/canteen) "Ex" = ( /obj/machinery/atmospherics/components/binary/pump/on/layer2{ dir = 1; @@ -1551,27 +1720,65 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) +"Ey" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "EF" = ( /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/neutral{ +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/suit_storage_unit/independent/mining/eva, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"EH" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/hydroponics) +"Fd" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"Fe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/effect/turf_decal/box, -/obj/machinery/suit_storage_unit/independent/mining/eva, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"EH" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/effect/turf_decal/corner/transparent/neutral{ +/obj/machinery/door/airlock/glass{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/ship/crew/hydroponics) +/area/ship/cargo) "Fm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 @@ -1589,17 +1796,6 @@ /obj/item/table_bell, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"Ft" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ship/maintenance) "FA" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/border_only{ @@ -1608,28 +1804,19 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"FI" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, +"FE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-4" }, -/turf/open/floor/plating, -/area/ship/maintenance) +/obj/machinery/holopad, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "FN" = ( /turf/closed/wall, /area/ship/bridge) @@ -1657,6 +1844,20 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew/canteen) +"Gi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"GE" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "GG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -1679,18 +1880,6 @@ }, /turf/open/floor/plasteel/freezer, /area/ship/storage) -"GT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew) "GZ" = ( /obj/machinery/power/terminal{ dir = 8 @@ -1715,6 +1904,16 @@ /obj/machinery/holopad/emergency/bar, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) +"HA" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "HD" = ( /obj/machinery/power/terminal{ dir = 8 @@ -1724,10 +1923,14 @@ }, /turf/open/floor/plating, /area/ship/maintenance) -"HN" = ( -/obj/structure/table/reinforced, -/obj/item/paicard, -/turf/open/floor/plasteel/mono/dark, +"HT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) "HY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, @@ -1740,77 +1943,31 @@ /obj/machinery/holopad/emergency/botany, /turf/open/floor/plasteel, /area/ship/crew/hydroponics) -"In" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"Iz" = ( -/obj/structure/chair/sofa/corner{ +"Ih" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) -"IE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/glass, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"IJ" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, +"In" = ( +/obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, -/area/ship/maintenance) -"IO" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck/cas{ - pixel_y = 8 - }, -/obj/item/toy/cards/deck/cas/black, -/turf/open/floor/wood, /area/ship/crew/canteen) -"IW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"IC" = ( +/obj/effect/turf_decal/ihejirika_small{ dir = 8 }, -/obj/structure/chair/wood, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) -"IX" = ( -/obj/machinery/status_display/shuttle, -/turf/closed/wall, -/area/ship/crew/canteen) -"Jg" = ( +/turf/open/floor/plating/airless, +/area/ship/external) +"IQ" = ( /obj/machinery/hydroponics/constructable{ layer = 2 }, -/obj/machinery/firealarm{ - pixel_y = -28 - }, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -1822,45 +1979,30 @@ layer = 2.04; pixel_x = -12 }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"Jj" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/drinkingglasses, -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) -"Jw" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"JF" = ( -/obj/machinery/door/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only{ +"IV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/carpet/nanoweave, +/turf/open/floor/carpet/red_gold, /area/ship/crew) +"IX" = ( +/obj/machinery/status_display/shuttle, +/turf/closed/wall, +/area/ship/crew/canteen) "JR" = ( /turf/closed/wall/r_wall, /area/ship/crew) +"JT" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = null + }, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/storage) "Kk" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, @@ -1889,13 +2031,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"KJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +"KD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/carpet/nanoweave, +/turf/open/floor/wood/walnut, /area/ship/crew) "KM" = ( /obj/structure/table/reinforced, @@ -1909,67 +2055,30 @@ /obj/item/reagent_containers/food/condiment/enzyme, /turf/open/floor/plasteel/mono/white, /area/ship/bridge) -"KN" = ( -/obj/machinery/power/smes/engineering, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ +"Lg" = ( +/obj/machinery/door/airlock/external{ dir = 4 }, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plating, -/area/ship/maintenance) -"Ld" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/wood, +/turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "Lj" = ( /turf/open/floor/plasteel/mono/white, /area/ship/bridge) -"LX" = ( -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 +"LI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/effect/turf_decal/corner/transparent/neutral{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 5; + pixel_y = 5 }, -/obj/machinery/jukebox, -/turf/open/floor/plasteel/dark, +/obj/item/reagent_containers/food/condiment/peppermill, +/obj/structure/table/wood/reinforced, +/turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) -"Mj" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/item/radio/intercom{ - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/ship/maintenance) -"Mm" = ( -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/structure/closet/crate, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/radio/intercom{ - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/ship/crew) "Mo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -1985,28 +2094,6 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/bridge) -"MI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) -"Nc" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = null - }, -/obj/effect/turf_decal/box, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/ship/storage) "Ng" = ( /obj/machinery/vending/wardrobe/bar_wardrobe, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -2017,20 +2104,13 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/bridge) -"Nk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +"Nr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, -/area/ship/maintenance) +/area/ship/crew/canteen) "Nv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -2058,17 +2138,24 @@ "NM" = ( /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) -"Ow" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) -"OB" = ( -/obj/machinery/computer/helm/viewscreen{ - pixel_x = -30 +"NQ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/storage) +"Od" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, -/turf/open/floor/plasteel/mono/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/table/wood/poker, +/turf/open/floor/carpet/red_gold, /area/ship/crew/canteen) +"Of" = ( +/obj/effect/turf_decal/number/five, +/turf/open/floor/plating/airless, +/area/ship/external) "OI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -2090,73 +2177,39 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"OV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +"Pd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"Pa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 + dir = 8 }, /obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/canteen) -"PE" = ( -/obj/structure/toilet{ - dir = 1 + icon_state = "4-8" }, -/obj/machinery/light/small{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/item/storage/firstaid/medical{ - pixel_x = -5; - pixel_y = -4 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/newscaster{ - pixel_x = -30 +/obj/machinery/door/airlock/freezer{ + dir = 4 }, -/obj/structure/closet/wall/white{ - dir = 8; - name = "First Aid"; - pixel_x = 31 +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"Pi" = ( +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"PY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/plasteel/patterned/brushed, -/area/ship/crew/canteen) -"PL" = ( -/obj/machinery/chem_master/condimaster, -/obj/item/storage/box/beakers, -/obj/effect/turf_decal/corner/opaque/white/half{ +/obj/structure/chair/wood{ dir = 4 }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) -"PX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew) -"Qa" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) "Qc" = ( /obj/structure/table/reinforced, @@ -2166,12 +2219,10 @@ }, /turf/open/floor/plasteel/mono, /area/ship/bridge) -"Qn" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel, +"Qm" = ( +/obj/machinery/door/window/eastright, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "Qs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2199,30 +2250,16 @@ }, /turf/open/floor/plating, /area/ship/maintenance) -"QH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"QQ" = ( +/obj/machinery/computer/helm/viewscreen/directional/west, +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ship/crew/hydroponics) -"QO" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/folder, -/obj/machinery/computer/cryopod{ - pixel_y = 25 +/obj/structure/chair/sofa/left{ + dir = 4 }, -/turf/open/floor/wood, -/area/ship/crew) +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "QR" = ( /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, @@ -2234,16 +2271,35 @@ /obj/item/multitool, /turf/open/floor/plating, /area/ship/maintenance) +"QW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/cargo) +"Rk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "Ro" = ( /obj/machinery/smartfridge/food, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/hydroponics) -"Rq" = ( -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/wood, -/area/ship/crew) "RR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 @@ -2260,6 +2316,16 @@ "Sa" = ( /turf/open/floor/plasteel, /area/ship/crew/canteen) +"Se" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "Sf" = ( /turf/open/floor/plasteel/mono, /area/ship/bridge) @@ -2270,13 +2336,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance) -"Sj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew) "Sl" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2305,13 +2364,19 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"SB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) +"SO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/effect/turf_decal/box, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/storage) "Tc" = ( /obj/machinery/power/terminal{ dir = 8 @@ -2329,78 +2394,21 @@ /turf/open/floor/plating, /area/ship/maintenance) "Tl" = ( -/obj/machinery/door/airlock/hatch, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/maintenance) -"Tn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/freezer, -/turf/open/floor/plasteel/dark, -/area/ship/storage) -"Tv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + name = "diner ship"; + preferred_direction = 4; + port_direction = 4 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plating/airless, +/area/ship/external) +"TB" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) -"Tz" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white/half, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) "TD" = ( /turf/closed/wall/r_wall, /area/ship/crew/hydroponics) @@ -2420,28 +2428,42 @@ /obj/item/stock_parts/cell/high/plus, /turf/open/floor/plating, /area/ship/maintenance) +"Uf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/cargo) +"Uk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"Um" = ( +/obj/machinery/chem_master/condimaster, +/obj/item/storage/box/beakers, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "Uq" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 }, /turf/open/floor/plating/airless, /area/ship/maintenance) -"Ut" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fountain, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/item/megaphone{ - pixel_x = 3; - pixel_y = 1 - }, -/turf/open/floor/wood, -/area/ship/crew) "Uv" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2454,25 +2476,24 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"UB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"UI" = ( +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, -/obj/machinery/door/airlock/freezer, +/obj/machinery/jukebox, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/dark, -/area/ship/crew) +/area/ship/crew/canteen) +"UO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "Vm" = ( /obj/structure/table/glass, /obj/machinery/smartfridge/disks, @@ -2484,6 +2505,31 @@ /obj/machinery/atmospherics/pipe/manifold/orange/hidden, /turf/open/floor/plating, /area/ship/maintenance) +"Vr" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/wheat, +/obj/item/seeds/tomato, +/obj/item/seeds/random, +/obj/item/seeds/banana, +/turf/open/floor/plasteel/dark, +/area/ship/crew/hydroponics) +"VB" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/maintenance) "VO" = ( /obj/machinery/atmospherics/components/unary/tank/air{ piping_layer = 2 @@ -2500,6 +2546,10 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/bridge) +"Wf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/canteen) "Wv" = ( /obj/structure/closet/crate/hydroponics, /obj/item/plant_analyzer, @@ -2535,59 +2585,55 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"WP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/ship/crew/hydroponics) -"Xd" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +"WJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/turf/open/floor/plasteel, -/area/ship/crew/hydroponics) -"Xg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ icon_state = "1-2" }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 25 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"WP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel, /area/ship/crew/hydroponics) -"Xv" = ( -/obj/item/radio/intercom{ - pixel_x = 27 +"XB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, -/turf/open/floor/plasteel, -/area/ship/cargo) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/carpet/red_gold, +/area/ship/crew) "XP" = ( /turf/closed/wall, /area/ship/cargo) -"Yn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" +"XQ" = ( +/obj/machinery/door/airlock{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/crew/hydroponics) -"Yx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 + dir = 8 }, -/turf/open/floor/carpet/nanoweave, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"Yz" = ( +"XU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, @@ -2597,56 +2643,138 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/carpet/nanoweave, +/turf/open/floor/carpet/red_gold, /area/ship/crew/canteen) -"Zz" = ( -/obj/machinery/cryopod{ +"Yc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"Yj" = ( +/obj/machinery/door/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 }, -/turf/open/floor/wood, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, /area/ship/crew) -"ZH" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Internal Airlock" +"YC" = ( +/obj/machinery/door/airlock/external{ + dir = 8 }, /turf/open/floor/plasteel/dark, +/area/ship/maintenance) +"YR" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -25 + }, +/turf/open/floor/plasteel, +/area/ship/cargo) +"YZ" = ( +/obj/machinery/door/poddoor{ + id = "bridgelockdown"; + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ship/bridge) +"Zd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill, +/turf/open/floor/wood/walnut, /area/ship/crew/canteen) -"ZI" = ( +"Zm" = ( +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = -25 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/crew/hydroponics) -"ZR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Zn" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 }, -/obj/structure/chair/stool/bar{ +/obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 }, -/turf/open/floor/wood, -/area/ship/crew/canteen) +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/hydroponics) +"ZQ" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -25 + }, +/turf/open/floor/plasteel/mono, +/area/ship/bridge) +"ZW" = ( +/obj/docking_port/stationary{ + width = 15; + height = 15; + dir = 8 + }, +/turf/template_noop, +/area/template_noop) (1,1,1) = {" vZ vZ +vZ +vZ +vZ +ZW +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(2,1,1) = {" +vZ +vZ cC cC -gi -jh +Lg +Lg cC cC cC @@ -2661,15 +2789,15 @@ vZ vZ vZ "} -(2,1,1) = {" +(3,1,1) = {" vZ vZ cC dN Sa -ji +Gi sU -pl +Nr we dH Df @@ -2677,16 +2805,16 @@ Df Df Uq Uq -yi -yi -yi -vZ +nZ +hl +IC +hA "} -(3,1,1) = {" +(4,1,1) = {" vZ vZ cC -ie +dF SA mk Ex @@ -2699,22 +2827,22 @@ me xh xh dH -tM +YC dH -yi +Of "} -(4,1,1) = {" +(5,1,1) = {" vZ vZ cC sU -DK -ZH +wQ +gQ IX sU sU dV -vf +BP HD HD qU @@ -2722,9 +2850,9 @@ Vo dH ly dH -yi +BC "} -(5,1,1) = {" +(6,1,1) = {" vZ vZ xr @@ -2739,40 +2867,40 @@ VO pt Qu Fm -Nk +DV dH -Ax +Ds dH -vZ +gL "} -(6,1,1) = {" +(7,1,1) = {" vZ -xr +ja xr Fp xX kM sU dt -vI +ta dV TN QR rH FU -KN +ao dH -IJ +VB dH vZ "} -(7,1,1) = {" +(8,1,1) = {" vZ xr GO In TL -Qn +ex sU Gd sU @@ -2782,208 +2910,208 @@ mH nF GZ Tc -Ft -qa +cc +xw dH vZ "} -(8,1,1) = {" +(9,1,1) = {" vZ cC -Aw +Ck In BE -AT +Yc sU En Ss -PE +cJ dV CV -Mj +is Si -FI +qe pN qg dH vZ "} -(9,1,1) = {" +(10,1,1) = {" vZ cC -cY +Qm sU -Tv -zQ +CP +rt sU -ce +XQ sU sU dV dV dV kr -Tl +zy dV DG dH vZ "} -(10,1,1) = {" +(11,1,1) = {" vZ cC -GO -dQ -MI -lJ -dQ -CB -OB -DX -Iz +fl +TB +rY +Uk +yg +Rk +QQ +DM +Bq uR -QO -ay -qu -Zz -Zz +kh +jL +CF +lY +lY JR vZ "} -(11,1,1) = {" +(12,1,1) = {" vZ xr -lJ -Yx -gN -lp -nN -jx -xS -OV -wn +PY +qO +Se +Od +Dj +DD +Da +tT +zs uR -Ut -Sj -KJ -Dx -Rq +ef +XB +Ei +IV +Pi JR vZ "} -(12,1,1) = {" +(13,1,1) = {" vZ xr -lJ -oi -dD -zM -zM -ZR -hp -Yz -Pa -JF -cl -PX -rB -Ek -tq +Zd +FE +Af +UO +xy +ro +hZ +XU +tW +Yj +WJ +dy +AF +ct +hL eS vZ "} -(13,1,1) = {" +(14,1,1) = {" vZ xr -lJ -MI -Bg -gX -oO -IO -up -Ld -NM +Eb +my +jj +Bc +di +st +Wf +az +iR uR -Mm -tR -cK -tO -tq +tz +ai +kf +uN +hL eS vZ "} -(14,1,1) = {" +(15,1,1) = {" vZ xr -lJ -eg -BF -Qa -gv -dq -xW -xp -ir +PY +rR +Ey +HT +HT +Bp +Bp +Dk +uC uR uR uR uR -GT -tq +KD +hL eS vZ "} -(15,1,1) = {" +(16,1,1) = {" vZ xr -lJ -IW -vJ +Zd +rM +sT WH kS kS kS DF kS -LX +UI sg -CL +zu sg -UB +Pd uR JR vZ "} -(16,1,1) = {" +(17,1,1) = {" vZ xr -lJ -MI -Bg +Eb +rM +sT sp -Ow -ng -ng -vq -Jj +cy +sn +sn +LI +Et sU sg om GS -cq -Nc +zd +JT Au vZ "} -(17,1,1) = {" +(18,1,1) = {" vZ cC -dl -MI -hk +wG +xC +mX sp -HN +aV NM NM Hs @@ -2991,104 +3119,104 @@ NM NM bv zP -bM +SO fG -vj +NQ Au vZ "} -(18,1,1) = {" +(19,1,1) = {" vZ Ag -CJ -IE +kZ +Fe XP XP sI rr -zw +GE Nv BQ -xM +yn sg iB sg -Tn +dZ sg Au vZ "} -(19,1,1) = {" +(20,1,1) = {" vZ Ag -SB -mb -Jw +DI +ju +Ih lD FN FN FN -Dy +Zm FN FN FN Vm Wv -ZI -Jg +fa +IQ TD vZ "} -(20,1,1) = {" +(21,1,1) = {" yi Ag -AW -wh +ua +Ea EF FN FN -mR -cT +HA +uS fK -Ee -PL +rA +Um FN hs fs -QH -tK +vw +wY TD vZ "} -(21,1,1) = {" +(22,1,1) = {" as cp nc -DB +Av tP FN np -bQ +Sf dh Mo Lj Sf -yW +Fd hQ fs -QH +vw EH DZ vZ "} -(22,1,1) = {" +(23,1,1) = {" yi yk Ba -DB -nP +Av +sX FN -bk +ej Lj xH KM @@ -3102,12 +3230,12 @@ EH DZ vZ "} -(23,1,1) = {" -yi +(24,1,1) = {" +Tl yk dW -fM -Co +QW +Uf mg zl Qs @@ -3117,26 +3245,26 @@ no Qs RR eZ -Xg -Yn -Ar +uI +eG +Zn TD vZ "} -(24,1,1) = {" +(25,1,1) = {" yi yk Uv jN -jv +YR FA Sf Lj Qc -Ce +op cA Lj -Cx +ZQ lg fs GG @@ -3144,28 +3272,28 @@ EH DZ vZ "} -(25,1,1) = {" +(26,1,1) = {" yi Ag nA qq -Xv +yV FN -Tz +eE Sf wm xj VR Sf -zW +DA mr -Xd +Cn FR yF DZ vZ "} -(26,1,1) = {" +(27,1,1) = {" vZ Ag rj @@ -3178,15 +3306,15 @@ bB Mp Sf Lj -dM +gV TD wO Kl -Eo +Vr TD vZ "} -(27,1,1) = {" +(28,1,1) = {" vZ Ag sD @@ -3203,11 +3331,11 @@ of of TD TD -DZ +qu TD vZ "} -(28,1,1) = {" +(29,1,1) = {" vZ vZ vZ @@ -3215,11 +3343,11 @@ vZ vZ vZ Cu -Cu +YZ ep AA OJ -Cu +YZ Cu vZ vZ @@ -3228,7 +3356,7 @@ vZ vZ vZ "} -(29,1,1) = {" +(30,1,1) = {" vZ vZ vZ @@ -3237,9 +3365,9 @@ vZ vZ vZ Cu -Cu -Cu -Cu +ku +ku +ku Cu vZ vZ diff --git a/_maps/shuttles/shiptest/independent_bubble.dmm b/_maps/shuttles/shiptest/independent_bubble.dmm index 972d753708ee..abb999a0e615 100644 --- a/_maps/shuttles/shiptest/independent_bubble.dmm +++ b/_maps/shuttles/shiptest/independent_bubble.dmm @@ -9,19 +9,43 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"bT" = ( +"bv" = ( /obj/structure/cable{ - icon_state = "1-8" + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/ntspaceworks_big/seven{ + dir = 8 }, /turf/open/floor/plating, /area/ship/maintenance/aft) -"ct" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/light/broken{ +"bZ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plating, /area/ship/maintenance/aft) +"ck" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel/mono, +/area/ship/hallway/central) "cG" = ( /obj/machinery/advanced_airlock_controller{ dir = 4; @@ -43,13 +67,13 @@ /obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/ship/engineering) -"cV" = ( -/obj/structure/cable{ - icon_state = "0-4" +"da" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/turf_decal/ntspaceworks_big/three{ + dir = 8 }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/maintenance/aft) "ec" = ( /obj/structure/fans/tiny, /obj/effect/turf_decal/siding/thinplating, @@ -59,19 +83,18 @@ }, /turf/open/floor/plating, /area/ship/cargo) -"ef" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) "ep" = ( /obj/machinery/atmospherics/components/unary/tank/toxins, /turf/open/floor/plating, /area/ship/maintenance/aft) +"eT" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ship/science) "eU" = ( /obj/structure/cable{ icon_state = "1-8" @@ -92,6 +115,32 @@ }, /turf/open/floor/plasteel, /area/ship/science) +"fI" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/ntspaceworks_big/five{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) +"fS" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/pickaxe, +/obj/item/storage/bag/ore, +/obj/item/mining_scanner, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ship/cargo) "gl" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -120,10 +169,23 @@ /obj/machinery/vending/clothing, /turf/open/floor/carpet, /area/ship/crew/dorm) +"hc" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/light/broken/directional/east, +/obj/effect/turf_decal/ntspaceworks_big/two{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "hh" = ( /obj/effect/spawner/structure/window/reinforced/shutters, /turf/open/floor/plating, /area/ship/bridge) +"hl" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/purple/border, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "hq" = ( /obj/structure/frame/computer{ dir = 8 @@ -155,20 +217,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"hU" = ( -/obj/structure/frame/computer{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue/three_quarters, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel, -/area/ship/bridge) "im" = ( /obj/structure/cable{ icon_state = "4-8" @@ -190,15 +238,17 @@ }, /turf/open/floor/wood, /area/ship/crew/dorm) -"jA" = ( -/obj/machinery/light{ - dir = 1 +"jz" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/turf_decal/corner/opaque/green/border{ - dir = 1 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "jI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -270,29 +320,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/carpet, /area/ship/crew/dorm) -"lM" = ( +"lN" = ( +/obj/machinery/power/smes/engineering, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/ship/engineering) +"mg" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/opaque/green/border{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 6 - }, -/obj/machinery/suit_storage_unit/independent/mining, /turf/open/floor/plasteel, -/area/ship/cargo) -"mJ" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) +/area/ship/hallway/central) "mV" = ( /turf/closed/wall, /area/ship/cargo) @@ -302,15 +345,6 @@ }, /turf/closed/wall, /area/ship/engineering) -"mZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) "ny" = ( /obj/structure/window/reinforced/spawner/east, /obj/structure/frame/machine, @@ -338,29 +372,31 @@ "op" = ( /turf/closed/wall, /area/ship/maintenance/port) -"oI" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ship/cargo) -"oR" = ( -/obj/structure/cable{ - icon_state = "1-2" +"pt" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/machinery/light{ +/obj/machinery/airalarm/directional/east, +/obj/machinery/firealarm/directional/south, +/obj/item/areaeditor/shuttle, +/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/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"qi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"qk" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plating, -/area/ship/maintenance/aft) +/obj/machinery/light/directional/south, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/ship/cargo) "qq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -368,23 +404,28 @@ /obj/effect/turf_decal/corner/opaque/purple/border, /turf/open/floor/plasteel, /area/ship/hallway/central) -"rj" = ( -/obj/structure/cable{ - icon_state = "2-8" +"qY" = ( +/obj/item/kirbyplants/random, +/obj/item/storage/box/rndboards{ + desc = "Smells feighntly of plastic."; + name = "research equipment" }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/plasteel, +/area/ship/bridge) +"rf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, -/obj/item/toy/plush/lizardplushie{ - color = "cyan" +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 }, -/obj/item/clothing/head/wig/random{ - pixel_x = -1; - pixel_y = -4 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/plating, -/area/ship/maintenance/port) +/area/ship/engineering) "sk" = ( /obj/structure/cable{ icon_state = "1-2" @@ -399,24 +440,17 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"sI" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/corner/opaque/purple/border, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"sV" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 +"ss" = ( +/obj/structure/frame/computer{ + dir = 8 }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) +/obj/effect/turf_decal/corner/opaque/blue/three_quarters, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/bridge) "uw" = ( /obj/item/pipe_dispenser, /obj/structure/closet/crate, @@ -440,17 +474,6 @@ /obj/effect/turf_decal/corner/opaque/yellow/border, /turf/open/floor/plasteel, /area/ship/hallway/central) -"vz" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "vB" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ dir = 1 @@ -460,10 +483,31 @@ }, /turf/open/floor/plasteel, /area/ship/science) +"vO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/number/zero{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "vR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/closed/wall, /area/ship/science) +"vS" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma/fifty, +/obj/item/stack/sheet/mineral/uranium/five, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/ship/engineering) "wz" = ( /obj/effect/turf_decal/corner/opaque/brown/half{ dir = 4 @@ -498,15 +542,6 @@ }, /turf/open/floor/plating, /area/ship/cargo) -"wY" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/ship/crew/dorm) "xm" = ( /obj/structure/chair/comfy/shuttle{ dir = 4; @@ -524,18 +559,21 @@ /obj/effect/landmark/start/captain, /turf/open/floor/plasteel, /area/ship/bridge) -"xu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) "xC" = ( /obj/effect/turf_decal/industrial/warning{ dir = 5 }, /turf/open/floor/plating, /area/ship/external) +"xX" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/external) "yb" = ( /obj/machinery/door/airlock/research/glass, /obj/structure/cable{ @@ -560,6 +598,15 @@ "zy" = ( /turf/closed/wall, /area/ship/maintenance/starboard) +"Ak" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/number/two{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "Ay" = ( /obj/structure/cable{ icon_state = "4-8" @@ -571,19 +618,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) -"AC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "AR" = ( /obj/machinery/door/airlock/external, /obj/docking_port/mobile{ @@ -592,6 +626,16 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"AU" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet, +/area/ship/crew/dorm) "BJ" = ( /obj/structure/sign/departments/cargo{ pixel_y = 32 @@ -609,26 +653,29 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ship/science) -"CP" = ( -/turf/closed/wall, -/area/ship/bridge) -"Dj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ +"Cg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4 }, -/obj/machinery/light, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/ship/cargo) -"DL" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 10 +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/plating, -/area/ship/science) +/area/ship/cargo) +"Cu" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/ship/crew/dorm) +"CP" = ( +/turf/closed/wall, +/area/ship/bridge) "DP" = ( /obj/structure/cable{ icon_state = "1-2" @@ -646,29 +693,19 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"FF" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"FK" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "engine fuel pump" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) "Gf" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 }, /turf/open/floor/plating, /area/ship/external) +"Gk" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod/directional/north, +/turf/open/floor/carpet, +/area/ship/crew/dorm) "Gl" = ( /turf/open/floor/plating, /area/ship/external) @@ -696,11 +733,15 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"HH" = ( -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/purple/border, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +"GH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/ntspaceworks_big/six{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "If" = ( /obj/structure/cable{ icon_state = "4-8" @@ -719,16 +760,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plating, /area/ship/bridge) -"IA" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ship/engineering) "IL" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -753,31 +784,6 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"Jt" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/pickaxe, -/obj/item/storage/bag/ore, -/obj/item/mining_scanner, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"JF" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ship/science) "JG" = ( /obj/structure/fans/tiny, /obj/effect/turf_decal/siding/thinplating, @@ -813,15 +819,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ship/bridge) -"Kh" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) "KD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -865,18 +862,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"LA" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/ship/crew/dorm) "LK" = ( /obj/item/bedsheet/dorms, /obj/structure/bed, @@ -889,6 +874,11 @@ }, /turf/open/floor/wood, /area/ship/crew/dorm) +"Mu" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/corner/opaque/purple/border, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "MJ" = ( /turf/closed/wall, /area/ship/engineering) @@ -901,52 +891,115 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/ship/cargo) -"NX" = ( -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plating, -/area/ship/external) -"Ob" = ( -/turf/closed/wall, -/area/ship/maintenance/aft) -"OY" = ( +"MZ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/ship/bridge) -"PK" = ( +/obj/effect/turf_decal/ntspaceworks_big/eight{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) +"Na" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "engine fuel pump" + }, +/obj/effect/turf_decal/ntspaceworks_big/one{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) +"NN" = ( /obj/structure/frame/computer{ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/corner/opaque/purple{ dir = 9 }, /turf/open/floor/plasteel, /area/ship/science) +"NX" = ( +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plating, +/area/ship/external) +"Ob" = ( +/turf/closed/wall, +/area/ship/maintenance/aft) +"OY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ship/bridge) "Rk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall, /area/ship/engineering) -"Sx" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plasma/fifty, -/obj/item/stack/sheet/mineral/uranium/five, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ +"Ry" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/ship/bridge) +"RY" = ( +/obj/machinery/door/airlock/command/glass{ dir = 4 }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/blue/mono, +/turf/open/floor/plasteel/mono, +/area/ship/bridge) +"Sj" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 6 + }, +/obj/machinery/suit_storage_unit/independent/mining, /turf/open/floor/plasteel, -/area/ship/engineering) +/area/ship/cargo) +"Ss" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/corner/opaque/green/border{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Th" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/number/five{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "TP" = ( /obj/structure/cable{ icon_state = "4-8" @@ -973,6 +1026,18 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"Uq" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/ntspaceworks_big/four{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "UC" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -985,24 +1050,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/plating, /area/ship/engineering) -"UE" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/corner/opaque/green/border{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"Vf" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/ship/crew/dorm) "Vt" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /turf/closed/wall, @@ -1020,20 +1067,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) -"Vy" = ( -/obj/item/kirbyplants/random, -/obj/item/storage/box/rndboards{ - desc = "Smells feighntly of plastic."; - name = "research equipment" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom/wideband{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ship/bridge) "VA" = ( /obj/machinery/power/terminal{ dir = 8 @@ -1059,46 +1092,32 @@ /obj/structure/closet/crate/engineering, /turf/open/floor/plasteel, /area/ship/cargo) -"VO" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/item/areaeditor/shuttle, -/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/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/wood, -/area/ship/crew/dorm) "VQ" = ( /turf/closed/wall, /area/ship/crew/dorm) +"Wx" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/item/toy/plush/lizardplushie{ + color = "cyan" + }, +/obj/item/clothing/head/wig/random{ + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "WN" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 }, /turf/open/floor/plating, /area/ship/external) -"Xi" = ( -/obj/machinery/door/airlock/command/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue/mono, -/turf/open/floor/plasteel/mono, -/area/ship/bridge) "Xn" = ( /obj/effect/turf_decal/industrial/warning{ dir = 9 @@ -1117,20 +1136,32 @@ /obj/effect/turf_decal/corner/opaque/brown/mono, /turf/open/floor/plasteel/mono, /area/ship/cargo) -"XH" = ( +"Ya" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/cable{ - icon_state = "1-8" + icon_state = "2-8" }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/engineering) "Yi" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/ship/maintenance/port) +"Ys" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/ship/science) "Zg" = ( /obj/structure/cable{ icon_state = "2-4" @@ -1175,18 +1206,6 @@ /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/ship/engineering) -"ZR" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/science) (1,1,1) = {" VB @@ -1195,11 +1214,11 @@ VB VB VB VB -VB +Ob wH Gf wH -VB +Ob VB VB VB @@ -1212,7 +1231,7 @@ VB VB VB VB -VB +Ob wH Ob ZB @@ -1220,7 +1239,7 @@ hs GD Ob wH -VB +Ob VB VB VB @@ -1251,10 +1270,10 @@ VB VB Ob Ob -mJ -xu -ef -mZ +fI +GH +bv +MZ jI MW VA @@ -1270,13 +1289,13 @@ VB VB Ob ep -FK -ct -qk -Kh -XH -oR -bT +Na +hc +da +Uq +Th +vO +Ak uw Ob VB @@ -1292,7 +1311,7 @@ VQ VQ VQ Ob -sV +bZ Ob nH nH @@ -1306,8 +1325,8 @@ VB VB VB VQ -wY -LA +Gk +AU gM VQ Ua @@ -1315,7 +1334,7 @@ yw qq nH Lk -PK +NN KG nH VB @@ -1325,7 +1344,7 @@ VB VB VB VQ -Vf +Cu JZ lt nV @@ -1335,7 +1354,7 @@ KD yb Cc ZM -JF +eT nH VB VB @@ -1346,17 +1365,17 @@ Xn VQ jr LK -VO +pt VQ -UE +Ss Vw -sI +Mu nH -ZR +Ys vB fs vR -DL +xX VB "} (10,1,1) = {" @@ -1367,9 +1386,9 @@ VQ VQ VQ VQ -jA -im -HH +mg +ck +hl nH ny KQ @@ -1383,14 +1402,14 @@ Xn WN wO kn -Jt +fS VI MY GF Ay uL MJ -vz +lN ln IL Vt @@ -1403,7 +1422,7 @@ Gl ec nS Je -Dj +qi mV BJ im @@ -1421,15 +1440,15 @@ xC Gp JG wz -lM +Sj gz Xy DP eU hE MJ -AC -Sx +Ya +vS UC Vt mY @@ -1441,13 +1460,13 @@ VB mV mV mV -oI +Cg mV CP -Xi +RY CP CP -IA +rf MJ MJ MJ @@ -1462,9 +1481,9 @@ op Yi If CP -Vy +qY uE -cV +Ry CP bb Ul @@ -1479,13 +1498,13 @@ VB VB op op -rj +Wx Js OY xm Ke Iw -FF +jz zy zy VB @@ -1502,7 +1521,7 @@ op CP hq jW -hU +ss CP zy zy diff --git a/_maps/shuttles/shiptest/independent_byo.dmm b/_maps/shuttles/shiptest/independent_byo.dmm index 6ea885285789..42b4706eb616 100644 --- a/_maps/shuttles/shiptest/independent_byo.dmm +++ b/_maps/shuttles/shiptest/independent_byo.dmm @@ -57,15 +57,6 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) -"fJ" = ( -/obj/machinery/power/apc/auto_name/east{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating/airless, -/area/ship/external) "gL" = ( /obj/item/floor_painter{ pixel_x = 5; @@ -193,35 +184,16 @@ }, /turf/open/floor/plating, /area/ship/construction) -"uC" = ( -/obj/structure/railing, -/obj/effect/turf_decal/industrial/warning/corner, -/turf/open/floor/plating/airless, -/area/ship/construction) -"uG" = ( +"uq" = ( /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/computer/cryopod/directional/west, /turf/open/floor/plating, /area/ship/construction) -"uR" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/east{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/item/stock_parts/cell/high, +"uC" = ( +/obj/structure/railing, +/obj/effect/turf_decal/industrial/warning/corner, /turf/open/floor/plating/airless, /area/ship/construction) "vo" = ( @@ -245,6 +217,13 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) +"vs" = ( +/obj/item/toy/crayon/spraycan/infinite{ + name = "stencil tool" + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/plating, +/area/ship/construction) "vt" = ( /obj/item/tank/internals/oxygen/yellow, /obj/item/tank/internals/oxygen/yellow, @@ -367,12 +346,6 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) -"Hf" = ( -/obj/item/toy/crayon/spraycan/infinite{ - name = "stencil tool" - }, -/turf/open/floor/plating, -/area/ship/construction) "HK" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/box/corners{ @@ -525,6 +498,15 @@ /obj/structure/girder, /turf/open/floor/plating/airless, /area/ship/construction) +"RZ" = ( +/obj/machinery/power/apc/auto_name/directional/east{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating/airless, +/area/ship/external) "SA" = ( /turf/template_noop, /area/template_noop) @@ -551,6 +533,22 @@ /obj/item/research_notes/loot/genius, /turf/open/floor/plating/airless, /area/ship/construction) +"SN" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plating/airless, +/area/ship/construction) "Tc" = ( /obj/structure/railing/corner, /turf/open/floor/plating/airless, @@ -646,7 +644,7 @@ ND ND ND ND -fJ +RZ SA "} (3,1,1) = {" @@ -740,7 +738,7 @@ rj Pd fF nv -uR +SN Pd qM ND @@ -773,7 +771,7 @@ SA gL HP Fj -uG +uq Fj Vu nq @@ -841,7 +839,7 @@ nx dz MA ev -Hf +vs ev MA MO diff --git a/_maps/shuttles/shiptest/independent_caravan.dmm b/_maps/shuttles/shiptest/independent_caravan.dmm index bde2e2af00b0..ab0541eb228e 100644 --- a/_maps/shuttles/shiptest/independent_caravan.dmm +++ b/_maps/shuttles/shiptest/independent_caravan.dmm @@ -1,23 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ad" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/orange, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor{ - id = "cargoblastdoors"; - name = "Cargo Bay Blast Door" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "caravanbay"; - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) "ah" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -38,17 +19,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"ao" = ( -/obj/effect/turf_decal/corner/transparent/neutral/border{ - dir = 6 - }, -/obj/machinery/light, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "ap" = ( /obj/machinery/computer/monitor{ dir = 8 @@ -79,20 +49,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"be" = ( -/obj/effect/turf_decal/corner/opaque/purple/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 25 - }, -/obj/machinery/computer/rdconsole, -/turf/open/floor/plasteel/white, -/area/ship/science) "bq" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -105,18 +61,6 @@ }, /turf/open/floor/wood, /area/ship/crew) -"bv" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/suit_storage_unit/independent/mining/eva, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) "bI" = ( /turf/closed/wall/mineral/titanium/survival/nodiagonal, /area/ship/cargo) @@ -143,6 +87,21 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"bW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = -25 + }, +/obj/machinery/computer/monitor{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "bZ" = ( /turf/template_noop, /area/template_noop) @@ -162,60 +121,40 @@ /obj/machinery/atmospherics/pipe/simple/violet/visible, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"cp" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 4; - input_dir = 8; - output_dir = 4 +"cG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "4-8" }, -/obj/machinery/button/shieldwallgen{ - pixel_y = 23; - pixel_x = 6; - id = "caravanbay" +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "External Airlock" }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"cu" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/structure/closet/cabinet, /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/item/storage/backpack/satchel/leather, -/obj/item/storage/backpack/satchel/leather/withwallet, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/clothing/under/utility, -/obj/item/clothing/under/utility, -/obj/item/clothing/under/utility/skirt, -/obj/item/clothing/under/utility/skirt, -/obj/item/bedsheet/dorms, -/obj/item/bedsheet/dorms, -/obj/item/clothing/suit/jacket/leather/duster, -/obj/item/clothing/suit/jacket/leather/duster, -/obj/item/clothing/suit/jacket/leather/duster, -/obj/item/clothing/shoes/cowboy, -/obj/item/clothing/shoes/cowboy, -/obj/item/clothing/shoes/cowboy, -/obj/item/clothing/head/cowboy, -/obj/item/clothing/head/cowboy, -/obj/item/clothing/head/cowboy, -/obj/item/reagent_containers/food/drinks/flask, -/obj/item/reagent_containers/food/drinks/flask, -/obj/item/reagent_containers/food/drinks/flask, -/turf/open/floor/carpet/royalblue, -/area/ship/crew) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) "cT" = ( /obj/item/kirbyplants/random, /turf/open/floor/plasteel/white, /area/ship/science) +"da" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "modbridge" + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "dh" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible/layer4{ dir = 1 @@ -254,6 +193,43 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) +"dI" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) +"dN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = 25 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/ship/crew) "dQ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -268,14 +244,13 @@ /obj/structure/dresser, /turf/open/floor/carpet/red_gold, /area/ship/bridge) -"dW" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +"ec" = ( +/obj/effect/turf_decal/trimline/opaque/brown/filled/warning{ + dir = 8 }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/ship/crew) +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) "eg" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 4 @@ -291,6 +266,22 @@ "eI" = ( /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) +"eS" = ( +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/science) +"eX" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/visible{ + dir = 1 + }, +/obj/effect/turf_decal/number/zero{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "fe" = ( /obj/machinery/power/terminal{ dir = 8 @@ -318,15 +309,6 @@ }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) -"fm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew) "fv" = ( /obj/machinery/door/window/northleft, /obj/structure/closet/wall{ @@ -355,13 +337,13 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"fS" = ( -/obj/effect/turf_decal/trimline/opaque/brown/filled/warning{ - dir = 8 +"fF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 }, -/obj/machinery/light, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) +/obj/machinery/newscaster/security_unit/directional/west, +/turf/open/floor/carpet/red_gold, +/area/ship/bridge) "fT" = ( /obj/structure/sink{ dir = 8; @@ -384,6 +366,17 @@ /obj/item/kirbyplants/random, /turf/open/floor/plasteel/tech/techmaint, /area/ship/bridge) +"gn" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ + dir = 1; + sensors = list("nemo_n2_sensor"="Nitrogen Tank") + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "go" = ( /obj/machinery/power/smes/engineering, /obj/structure/cable, @@ -398,14 +391,6 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/bridge) -"gE" = ( -/obj/item/storage/cans/sixbeer, -/obj/structure/closet/secure_closet/freezer/meat/open, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew) "gP" = ( /obj/machinery/atmospherics/components/trinary/mixer{ dir = 8 @@ -415,40 +400,24 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"hh" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "modbridge" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) -"ht" = ( -/obj/effect/turf_decal/corner/opaque/purple/border{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) -"hP" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "modwindows" +"hd" = ( +/obj/machinery/cryopod{ + dir = 1 }, -/turf/open/floor/plasteel/tech, +/obj/machinery/computer/cryopod/directional/south, +/turf/open/floor/carpet/royalblue, /area/ship/crew) -"hV" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 +"hG" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 4 }, -/obj/item/kirbyplants/random, -/obj/machinery/firealarm{ - pixel_y = 25 +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/wood, -/area/ship/crew) +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) "ia" = ( /obj/machinery/atmospherics/pipe/simple/green/visible/layer4, /obj/machinery/atmospherics/components/binary/pump{ @@ -456,10 +425,11 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"ih" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, +"im" = ( +/obj/structure/girder, +/obj/structure/girder, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/area/ship/external) "iw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -507,48 +477,35 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) -"iH" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "modbridge" - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"iL" = ( -/obj/effect/turf_decal/corner/transparent/neutral/border{ - dir = 8 +"iP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"iY" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +/obj/machinery/door/airlock/hatch{ + dir = 4 }, -/obj/structure/frame/machine, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"jb" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband, -/obj/machinery/button/door{ - id = "modwindows"; - name = "Full Lockdown"; - pixel_x = 2; - pixel_y = 25 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/button/door{ - id = "modbridge"; - name = "Bridge Lockdown"; - pixel_x = 2; - pixel_y = 34 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"jw" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/radiation, +/obj/item/reagent_containers/hypospray/medipen/penacid, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/storage/pill_bottle/potassiodide, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "jA" = ( /obj/machinery/atmospherics/pipe/simple/violet/visible, /obj/structure/cable/yellow{ @@ -575,29 +532,15 @@ }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) -"jV" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 25 +"jP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/wood, +/obj/effect/landmark/observer_start, +/turf/open/floor/carpet/royalblue, /area/ship/crew) "ka" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -616,43 +559,15 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"kf" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner{ - dir = 8 - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/poddoor{ - id = "ModShip_thruster_starboard"; - name = "Thruster Blast Door" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"km" = ( -/obj/effect/turf_decal/corner/transparent/neutral/border{ - dir = 10 - }, -/obj/machinery/light, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "kq" = ( /obj/structure/chair/comfy/shuttle, /turf/open/floor/plasteel/tech/techmaint, /area/ship/bridge) +"kv" = ( +/obj/effect/turf_decal/corner/opaque/purple/border, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/science) "kx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4 @@ -663,6 +578,14 @@ "kA" = ( /turf/closed/wall/mineral/titanium, /area/ship/hallway/fore) +"kC" = ( +/obj/docking_port/stationary{ + width = 27; + height = 15; + dwidth = 8 + }, +/turf/template_noop, +/area/template_noop) "kO" = ( /obj/structure/cable{ icon_state = "4-8" @@ -678,54 +601,40 @@ /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"lb" = ( -/obj/machinery/power/apc/auto_name/north, +"ll" = ( +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) -"lk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch{ - name = "External Airlock" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/structure/closet/cabinet, /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"ls" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) +/obj/item/storage/backpack/satchel/leather, +/obj/item/storage/backpack/satchel/leather/withwallet, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/under/utility/skirt, +/obj/item/bedsheet/dorms, +/obj/item/bedsheet/dorms, +/obj/item/clothing/suit/jacket/leather/duster, +/obj/item/clothing/suit/jacket/leather/duster, +/obj/item/clothing/suit/jacket/leather/duster, +/obj/item/clothing/shoes/cowboy, +/obj/item/clothing/shoes/cowboy, +/obj/item/clothing/shoes/cowboy, +/obj/item/clothing/head/cowboy, +/obj/item/clothing/head/cowboy, +/obj/item/clothing/head/cowboy, +/obj/item/reagent_containers/food/drinks/flask, +/obj/item/reagent_containers/food/drinks/flask, +/obj/item/reagent_containers/food/drinks/flask, +/turf/open/floor/carpet/royalblue, +/area/ship/crew) "lA" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, @@ -752,25 +661,18 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/bridge) -"mg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch, -/obj/machinery/door/firedoor/border_only{ +"mk" = ( +/obj/machinery/light/directional/south, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"mL" = ( +/obj/machinery/light/directional/north, +/obj/machinery/modular_computer/console/preset/command{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "mN" = ( /obj/effect/turf_decal/corner/opaque/purple/border{ dir = 4 @@ -793,6 +695,48 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"mR" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced/spawner{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "ModShip_thruster_starboard"; + name = "Thruster Blast Door" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"mX" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) "nm" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -807,6 +751,13 @@ /obj/structure/lattice/catwalk, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"nK" = ( +/obj/effect/turf_decal/corner/opaque/purple/border{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/science) "nR" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ @@ -814,26 +765,51 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"ol" = ( -/obj/machinery/cryopod{ +"od" = ( +/obj/effect/turf_decal/techfloor/orange{ dir = 1 }, -/obj/machinery/computer/cryopod{ - pixel_y = -32 +/obj/effect/turf_decal/techfloor/orange, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor{ + id = "cargoblastdoors"; + name = "Cargo Bay Blast Door" + }, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew) -"os" = ( -/obj/effect/turf_decal/corner/opaque/purple/border{ - dir = 5 +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 8; + id = "caravanbay" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) +"oi" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "0-8" }, -/obj/structure/frame/machine, -/turf/open/floor/plasteel/white, -/area/ship/science) +/obj/structure/window/plasma/reinforced/spawner{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "ModShip_thruster_port"; + name = "Thruster Blast Door" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "ow" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible/layer4{ dir = 8 @@ -897,6 +873,15 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) +"oR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/decal/cleanable/robot_debris, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "oY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -906,6 +891,13 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"pa" = ( +/obj/structure/curtain/cloth/fancy, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet/red_gold, +/area/ship/bridge) "px" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/structure/cable{ @@ -913,32 +905,14 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"pV" = ( -/obj/effect/turf_decal/corner/opaque/purple/border{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) -"qc" = ( +"pS" = ( +/obj/machinery/airalarm/directional/east, /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, +/obj/structure/window/reinforced, /obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 + dir = 10 }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) @@ -949,18 +923,23 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"qy" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"ql" = ( +/obj/effect/turf_decal/corner/transparent/neutral/border{ + dir = 9 }, +/obj/machinery/light/directional/north, +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) "qB" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/hallway/fore) +"qM" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "qN" = ( /obj/structure/table/reinforced, /obj/machinery/microwave, @@ -986,19 +965,20 @@ /obj/structure/dresser, /turf/open/floor/carpet/royalblue, /area/ship/crew) +"rj" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "rl" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/bridge) -"rv" = ( -/obj/structure/closet/radiation, -/obj/item/reagent_containers/hypospray/medipen/penacid, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/storage/pill_bottle/potassiodide, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "rC" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1017,16 +997,11 @@ /obj/effect/turf_decal/atmos/oxygen, /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) -"rW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/carpet/red_gold, -/area/ship/bridge) +"rV" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/frame/machine, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "sb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -1057,13 +1032,35 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"sZ" = ( -/obj/structure/girder, +"td" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 6 + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced/spawner{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "ModShip_thruster_port"; + name = "Thruster Blast Door" }, /turf/open/floor/plating, -/area/ship/external) +/area/ship/engineering/atmospherics) "tk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -1087,61 +1084,57 @@ "tl" = ( /turf/open/floor/wood, /area/ship/crew) -"tB" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ - dir = 5 - }, -/obj/machinery/light, -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/circuitboard/machine/thermomachine, -/obj/item/circuitboard/machine/thermomachine, -/obj/item/storage/box/stockparts/basic, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"uF" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ +"tI" = ( +/obj/effect/turf_decal/corner/transparent/neutral/border{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"tQ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/number/five{ + dir = 8 }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"vm" = ( +"uw" = ( +/obj/machinery/mineral/ore_redemption{ + dir = 4; + input_dir = 8; + output_dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/button/shieldwallgen{ + id = "caravanbay"; + pixel_x = 6; + pixel_y = 23 + }, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"uJ" = ( +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 9 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/white, +/area/ship/science) +"uZ" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket{ pixel_x = -3; pixel_y = 8 }, /obj/item/mop, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ship/crew/janitor) -"vn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25 - }, -/obj/machinery/computer/monitor{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "vy" = ( /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 @@ -1153,31 +1146,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"vz" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner{ - dir = 8 - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/poddoor{ - id = "ModShip_thruster_port"; - name = "Thruster Blast Door" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "vB" = ( /obj/structure/cable{ icon_state = "1-4" @@ -1219,17 +1187,6 @@ }, /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) -"vQ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 8; - sensors = list("nemo_air_sensor"="Air Mix Tank") - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "vV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1242,35 +1199,32 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"vY" = ( +"wk" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/item/areaeditor/shuttle, -/obj/item/megaphone/command, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) -"wJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 +/obj/machinery/button/door{ + id = "modwindows"; + name = "Full Lockdown"; + pixel_x = 2; + pixel_y = 25 }, -/obj/structure/railing{ - dir = 8 +/obj/machinery/button/door{ + id = "modbridge"; + name = "Bridge Lockdown"; + pixel_x = 2; + pixel_y = 34 }, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/item/radio/intercom/wideband/table{ dir = 1 }, /turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) +/area/ship/bridge) +"wt" = ( +/obj/effect/turf_decal/corner/opaque/purple/border{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/science) "wL" = ( /obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ dir = 8 @@ -1299,39 +1253,9 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"xc" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) "xg" = ( /turf/open/floor/plasteel/tech/techmaint, /area/ship/bridge) -"xo" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/orange, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor{ - id = "cargoblastdoors"; - name = "Cargo Bay Blast Door" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "caravanbay"; - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) "xr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -1355,41 +1279,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"xT" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -5; - pixel_y = -22 - }, -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1; - sensors = list("nemo_n2_sensor"="Nitrogen Tank") - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"yd" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/neutral/border{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"yj" = ( -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) "yo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -1418,6 +1307,25 @@ /obj/item/circuitboard/machine/protolathe/department/cargo, /turf/open/floor/plasteel/white, /area/ship/science) +"yw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) "yD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -1433,11 +1341,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"zi" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "zk" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 10 @@ -1489,6 +1392,14 @@ /obj/structure/frame/machine, /turf/open/floor/plasteel/white, /area/ship/science) +"Ad" = ( +/obj/effect/turf_decal/corner/transparent/neutral/border{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "Ah" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -1502,15 +1413,46 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) +"Ak" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "AS" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ dir = 4 }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) +"AV" = ( +/obj/structure/closet/radiation, +/obj/item/reagent_containers/hypospray/medipen/penacid, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/storage/pill_bottle/potassiodide, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "Ba" = ( /turf/closed/wall/mineral/titanium/survival/pod, /area/ship/cargo) +"Be" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor{ + id = "cargoblastdoors"; + name = "Cargo Bay Blast Door" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 4; + id = "caravanbay" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) "Bf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -1568,12 +1510,30 @@ /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"Ca" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "Ch" = ( /obj/effect/turf_decal/corner/transparent/neutral/border{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"Cr" = ( +/obj/effect/turf_decal/corner/transparent/neutral/border{ + dir = 6 + }, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "Cs" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ @@ -1586,22 +1546,6 @@ /obj/item/clothing/glasses/meson/prescription, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"CD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "CF" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 8 @@ -1664,54 +1608,82 @@ /obj/machinery/portable_atmospherics/pump, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"En" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 +"DI" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Em" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ + dir = 5 + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"Eu" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/structure/window/plasma/reinforced/spawner{ + dir = 8 }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 25 +/obj/machinery/door/window/eastleft{ + name = "Engine Access" }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 10 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/item/folder/blue{ - pixel_x = -6; - pixel_y = -1 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/item/stamp/captain{ - pixel_x = -7; - pixel_y = 8 +/obj/machinery/door/poddoor{ + dir = 4; + id = "ModShip_thruster_starboard"; + name = "Thruster Blast Door" }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"EB" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/south, +/obj/item/areaeditor/shuttle, +/obj/item/megaphone/command, /turf/open/floor/plasteel/tech/techmaint, /area/ship/bridge) -"EL" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 25 +"EI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, +/obj/machinery/button/ignition/incinerator/atmos{ + dir = 4; + pixel_x = -26; + pixel_y = -8 }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/mob/living/simple_animal/pet/cat/space{ - name = "Félicette" +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/weldingtool, +/obj/item/weldingtool, +/obj/item/weldingtool, +/obj/item/paper{ + info = "The igniter in the chamber does not work very well. I suggest throwing lit welders down the disposal chute over there to ignite the chamber."; + pixel_x = -6 }, -/obj/structure/bed/dogbed/runtime{ - name = "Félicette's bed" +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + dir = 4; + pixel_x = -28; + pixel_y = 8 }, -/turf/open/floor/carpet/red_gold, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "EU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -1745,22 +1717,6 @@ /obj/machinery/suit_storage_unit/atmos, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Fh" = ( -/obj/effect/turf_decal/corner/opaque/purple/border, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) -"Fk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/command{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) "Fl" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "modwindows" @@ -1819,6 +1775,15 @@ "FV" = ( /turf/closed/wall/mineral/titanium, /area/ship/science) +"Gf" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) "GE" = ( /obj/machinery/atmospherics/components/trinary/filter/on/layer4{ dir = 8; @@ -1832,22 +1797,6 @@ "GG" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/science) -"GO" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) "GS" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 4 @@ -1858,49 +1807,11 @@ }, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) -"GW" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 4 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"GY" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 6 - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner{ - dir = 8 - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/poddoor{ - id = "ModShip_thruster_port"; - name = "Thruster Blast Door" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +"Hd" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/ship/crew) "Hf" = ( /obj/effect/turf_decal/borderfloor{ dir = 4 @@ -1910,6 +1821,20 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) +"Hm" = ( +/obj/item/storage/cans/sixbeer, +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/royalblue, +/area/ship/crew) +"HD" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "HE" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 8 @@ -1920,6 +1845,21 @@ }, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) +"HF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "HH" = ( /obj/effect/turf_decal/corner/opaque/blue/border{ dir = 8 @@ -1945,6 +1885,14 @@ /obj/effect/turf_decal/atmos/plasma, /turf/open/floor/engine/plasma, /area/ship/engineering/atmospherics) +"IJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/sofa/right, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/ship/crew) "IO" = ( /obj/machinery/door/airlock{ name = "Restroom" @@ -1972,24 +1920,6 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/layer4, /turf/open/floor/engine, /area/ship/engineering/atmospherics) -"Jg" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/button/door{ - dir = 1; - id = "ModShip_thruster_starboard"; - name = "thruster doors"; - pixel_y = -25 - }, -/obj/structure/closet/crate/radiation, -/obj/item/stack/sheet/mineral/plasma/five, -/obj/item/stack/sheet/mineral/plasma/five, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "Jn" = ( /obj/effect/turf_decal/borderfloor{ dir = 4 @@ -2002,34 +1932,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) -"Jt" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ - dir = 5 - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner{ - dir = 8 - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/poddoor{ - id = "ModShip_thruster_starboard"; - name = "Thruster Blast Door" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "Jy" = ( /obj/structure/table/reinforced, /obj/machinery/chem_dispenser/drinks, @@ -2038,10 +1940,42 @@ }, /turf/open/floor/carpet/royalblue, /area/ship/crew) +"JM" = ( +/obj/effect/turf_decal/corner/opaque/purple/border{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/frame/machine, +/turf/open/floor/plasteel/white, +/area/ship/science) "JN" = ( /obj/structure/lattice/catwalk, /turf/open/floor/plating, /area/ship/external) +"JR" = ( +/obj/structure/closet/secure_closet/wall{ + dir = 4; + name = "kitchen freezer"; + pixel_x = -28 + }, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/turf/open/floor/carpet/royalblue, +/area/ship/crew) "JV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -2066,34 +2000,25 @@ "Kh" = ( /obj/effect/turf_decal/corner/opaque/blue/border{ dir = 5 - }, -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/ship/science) -"Kn" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/structure/chair/sofa/corner, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew) + }, +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/ship/science) "Ko" = ( /obj/effect/turf_decal/box/corners, /obj/structure/closet/cardboard, /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Ks" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = -31 +"Kx" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/machinery/light/directional/east, +/obj/machinery/computer/atmos_control/tank/air_tank{ + dir = 8; + sensors = list("nemo_air_sensor"="Air Mix Tank") }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "KL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -2114,27 +2039,64 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"Lh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) +"Ls" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/sofa/corner{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/ship/crew) "Lv" = ( /turf/open/floor/carpet/red_gold, /area/ship/bridge) +"Lz" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 10 + }, +/obj/item/folder/blue{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/stamp/captain{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "LH" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"LJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/decal/cleanable/robot_debris, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "LR" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew) @@ -2151,36 +2113,6 @@ }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) -"ME" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet{ - icon_state = "cap"; - name = "\proper captain's locker"; - req_access_txt = "20" - }, -/obj/item/storage/belt/sabre, -/obj/item/clothing/under/rank/command/captain/skirt, -/obj/item/clothing/suit/armor/vest/capcarapace/duster, -/obj/item/clothing/head/caphat/cowboy, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/shoes/cowboy/white, -/obj/item/storage/backpack/captain, -/obj/item/storage/backpack/duffelbag/captain, -/obj/item/storage/backpack/messenger/com, -/obj/item/storage/backpack/satchel/cap, -/obj/item/pen/survival, -/obj/item/radio/off, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/workboots/mining, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/item/gun/ballistic/revolver/detective, -/obj/item/gun/ballistic/derringer, -/obj/item/ammo_box/c38, -/obj/item/ammo_box/c38, -/turf/open/floor/carpet/red_gold, -/area/ship/bridge) "MO" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -2201,17 +2133,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Ng" = ( -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/white, -/area/ship/science) "Nt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -2235,22 +2156,56 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) +"Nx" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/obj/effect/turf_decal/number/three{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "NB" = ( /obj/structure/girder, /turf/open/floor/plating, /area/ship/external) -"Ow" = ( +"NS" = ( /obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 9 + dir = 1 }, -/obj/machinery/airalarm/all_access{ +/obj/machinery/light/directional/north, +/obj/machinery/light_switch{ + pixel_x = 25; pixel_y = 25 }, -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/computer/operating, /turf/open/floor/plasteel/white, /area/ship/science) +"Ok" = ( +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 25 + }, +/obj/machinery/firealarm/directional/north, +/mob/living/simple_animal/pet/cat/space{ + name = "Félicette" + }, +/obj/structure/bed/dogbed/runtime{ + name = "Félicette's bed" + }, +/turf/open/floor/carpet/red_gold, +/area/ship/bridge) +"Op" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "modbridge" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "OB" = ( /obj/machinery/atmospherics/pipe/simple/violet/visible{ dir = 4 @@ -2262,6 +2217,15 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"OD" = ( +/obj/effect/turf_decal/corner/transparent/neutral/border{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/east, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "OO" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2271,51 +2235,22 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) -"OS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "OU" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/atmospherics) -"Pe" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/item/radio/intercom{ - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Pn" = ( +"OW" = ( +/obj/machinery/holopad/emergency/command, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) +"Ps" = ( /obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/structure/chair/sofa/corner{ - dir = 8 + dir = 5 }, +/obj/structure/chair/sofa/corner, +/obj/machinery/light/directional/north, /turf/open/floor/wood, /area/ship/crew) -"Pt" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, -/obj/machinery/holopad/emergency/command, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) "Pw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -2339,50 +2274,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) -"PF" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) -"PY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = -26; - pixel_y = -8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table, -/obj/item/weldingtool, -/obj/item/weldingtool, -/obj/item/weldingtool, -/obj/item/weldingtool, -/obj/item/paper{ - info = "The igniter in the chamber does not work very well. I suggest throwing lit welders down the disposal chute over there to ignite the chamber."; - pixel_x = -6 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -28; - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Qi" = ( -/obj/machinery/light, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "Qm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -2407,6 +2298,14 @@ }, /turf/open/floor/engine/air, /area/ship/engineering/atmospherics) +"Qy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/ship/crew) "QA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -2420,14 +2319,17 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"QC" = ( +"QD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-4" }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/structure/reagent_dispensers/watertank, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "QF" = ( @@ -2446,6 +2348,18 @@ /obj/machinery/atmospherics/pipe/simple/purple/visible, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"QR" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "Ri" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 1 @@ -2512,6 +2426,23 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/bridge) +"Sp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) "Sv" = ( /obj/effect/turf_decal/corner/opaque/purple/border{ dir = 4 @@ -2526,41 +2457,21 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plasteel/tech/techmaint, /area/ship/bridge) +"SB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/kfp_small/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "SE" = ( /obj/machinery/atmospherics/pipe/simple/violet/visible{ dir = 9 }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"SI" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/machinery/computer/cargo/express{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) -"SP" = ( -/obj/effect/turf_decal/siding/wood, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -5; - pixel_y = -22 - }, -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew) -"SR" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "Tg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -2577,22 +2488,6 @@ /obj/structure/lattice/catwalk, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Tq" = ( -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/docking_port/mobile{ - dir = 8; - launch_status = 0; - name = "Modular ship"; - preferred_direction = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "TI" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 10 @@ -2607,60 +2502,13 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4, /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) -"TU" = ( -/obj/effect/turf_decal/corner/transparent/neutral/border{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22; - pixel_y = -6 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"Uh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) -"Uq" = ( -/obj/structure/closet/secure_closet/wall{ +"Uc" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ dir = 4; - name = "kitchen freezer"; - pixel_x = -32 - }, -/obj/item/storage/fancy/egg_box, -/obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 5 + id = "modwindows" }, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/turf/open/floor/carpet/royalblue, +/turf/open/floor/plasteel/tech, /area/ship/crew) "Ur" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2689,6 +2537,20 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) +"Us" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Ux" = ( +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "UB" = ( /obj/structure/railing{ dir = 8 @@ -2699,16 +2561,14 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) -"UD" = ( -/obj/machinery/light{ - dir = 1 +"UY" = ( +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 4 }, -/obj/structure/closet/radiation, -/obj/item/reagent_containers/hypospray/medipen/penacid, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/storage/pill_bottle/potassiodide, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/obj/machinery/iv_drip, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/science) "Vc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -2739,19 +2599,6 @@ /obj/machinery/suit_storage_unit/mining, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) -"Vl" = ( -/obj/effect/turf_decal/corner/transparent/neutral/border{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "Vq" = ( /turf/open/floor/plasteel/tech, /area/ship/cargo) @@ -2795,47 +2642,53 @@ /obj/item/bedsheet/dorms, /turf/open/floor/carpet/royalblue, /area/ship/crew) -"WB" = ( -/obj/machinery/atmospherics/pipe/manifold/purple/visible{ - dir = 1 +"VT" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"WI" = ( -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 1 +/obj/machinery/door/airlock/external/glass{ + dir = 4 }, -/obj/machinery/light{ - dir = 1 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 25 +/obj/docking_port/mobile{ + dir = 8; + launch_status = 0; + name = "Modular ship"; + preferred_direction = 4 }, -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/white, -/area/ship/science) +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "WK" = ( /turf/template_noop, /area/ship/external) -"WQ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "WX" = ( /obj/machinery/atmospherics/components/binary/circulator, /turf/open/floor/engine, /area/ship/engineering/atmospherics) -"Xu" = ( -/obj/effect/turf_decal/siding/wood{ +"Xe" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/structure/chair/sofa/right, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +/obj/effect/turf_decal/corner/transparent/neutral/border{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Xm" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"XQ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/sofa/left{ + dir = 1 }, /turf/open/floor/wood, /area/ship/crew) @@ -2909,6 +2762,28 @@ }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) +"Ys" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/button/door{ + dir = 1; + id = "ModShip_thruster_starboard"; + name = "thruster doors"; + pixel_x = -9; + pixel_y = -25 + }, +/obj/structure/closet/crate/radiation, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "YB" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 4 @@ -2928,6 +2803,13 @@ /obj/structure/tank_dispenser/oxygen, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"YL" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/computer/cargo/express{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "Zj" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 8 @@ -2955,17 +2837,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) -"Zu" = ( -/obj/structure/curtain/cloth/fancy, -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -5; - pixel_y = -22 - }, -/turf/open/floor/carpet/red_gold, -/area/ship/bridge) "Zy" = ( /obj/structure/window/plasma/reinforced/spawner{ dir = 1 @@ -2978,6 +2849,59 @@ }, /turf/open/floor/engine/plasma, /area/ship/engineering/atmospherics) +"Zz" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/secure_closet{ + icon_state = "cap"; + name = "\proper captain's locker"; + req_access_txt = "20" + }, +/obj/item/storage/belt/sabre, +/obj/item/clothing/under/rank/command/captain/skirt, +/obj/item/clothing/suit/armor/vest/capcarapace/duster, +/obj/item/clothing/head/caphat/cowboy, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/shoes/cowboy/white, +/obj/item/storage/backpack/captain, +/obj/item/storage/backpack/duffelbag/captain, +/obj/item/storage/backpack/messenger/com, +/obj/item/storage/backpack/satchel/cap, +/obj/item/pen/survival, +/obj/item/radio/off, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/shoes/workboots/mining, +/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/gun/ballistic/revolver/detective, +/obj/item/gun/ballistic/derringer, +/obj/item/ammo_box/c38, +/obj/item/ammo_box/c38, +/turf/open/floor/carpet/red_gold, +/area/ship/bridge) +"ZM" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ + dir = 5 + }, +/obj/machinery/light/directional/south, +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/circuitboard/machine/thermomachine, +/obj/item/circuitboard/machine/thermomachine, +/obj/item/storage/box/stockparts/basic, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"ZN" = ( +/obj/effect/turf_decal/corner/opaque/purple/border{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 25 + }, +/obj/machinery/computer/rdconsole, +/turf/open/floor/plasteel/white, +/area/ship/science) "ZV" = ( /obj/effect/turf_decal/borderfloor{ dir = 4 @@ -3034,21 +2958,21 @@ OU (2,1,1) = {" bZ OU -vz -vz -GY +oi +oi +td sD Mq OU OU -ih +Xm OU OU Jb vJ -Jt -kf -kf +Em +mR +mR OU "} (3,1,1) = {" @@ -3056,7 +2980,7 @@ kx OU fe Bt -GW +DI OU OU OU @@ -3068,7 +2992,7 @@ OU OU wL Bt -Jg +Ys OU "} (4,1,1) = {" @@ -3094,7 +3018,7 @@ Fl (5,1,1) = {" nB OU -UD +jw kO jG Zy @@ -3108,27 +3032,27 @@ eg vM kb fw -tB +ZM OU "} (6,1,1) = {" bZ OU -rv +AV px ZW zJ Bn -PY +EI OB ow bT -CD +QD zB vy IZ KL -xT +gn OU "} (7,1,1) = {" @@ -3143,10 +3067,10 @@ QL MO xI gP -LH -zi -WB -uF +SB +tQ +eX +Nx iz HE OU @@ -3154,7 +3078,7 @@ OU (8,1,1) = {" bZ OU -Pe +HD LH cb jA @@ -3178,13 +3102,13 @@ OU Ff go go -vn +bW YE -LJ +oR aE -QC +Us ai -vQ +Kx Zj Qv CF @@ -3201,7 +3125,7 @@ Ry OU OU OU -lk +cG OU OU OU @@ -3233,16 +3157,16 @@ bZ "} (12,1,1) = {" bZ -bZ +NB bI Ba Ba Ba Ba bI -Uh +Sp Fn -qc +yw GG FV FV @@ -3254,10 +3178,10 @@ bZ (13,1,1) = {" bZ bZ -xo -GO +Be +dI FK -bv +Gf Vk Ba WK @@ -3265,46 +3189,46 @@ tk WK FV zW -pV -ht +wt +nK ys FV bZ "} (14,1,1) = {" -bZ +kC bZ Zs OO eI Bv -fS +ec Ba WK tk WK FV -be +ZN FL FL -Fh +kv FV bZ "} (15,1,1) = {" bZ bZ -ad +od ZV Jn Hf -xc +hG Ba UB tk UB FV -os +JM Sv mN Jr @@ -3313,9 +3237,9 @@ bZ "} (16,1,1) = {" bZ -bZ +NB Ba -cp +uw yI MP yo @@ -3335,16 +3259,16 @@ bZ bZ bZ Ba -En +Ca mQ ah -iY +rV Ba iG tk iG FV -Ow +uJ HH XZ Bs @@ -3358,13 +3282,13 @@ Ba BV Vq Vq -Qi +mk Ba WK tk WK FV -WI +NS FL FL Di @@ -3377,32 +3301,32 @@ bZ Ba kY Ko -SR -WQ +Ak +Ux Ba WK tk WK FV Kh -Ng -yj +UY +eS RP FV bZ "} (20,1,1) = {" bZ -bZ +NB bI Ba Ba Ba Ba bI -Uh +Sp dG -wJ +Lh GG FV FV @@ -3414,11 +3338,11 @@ bZ (21,1,1) = {" bZ bZ -NB +im WK WK WK -sZ +NB WK WK tk @@ -3440,9 +3364,9 @@ re re oz WK -ls +mX Ur -PF +pS WK rl BT @@ -3454,21 +3378,21 @@ rl (23,1,1) = {" bZ re -gE -Uq +Hm +JR VR nm re kA kA -mg +iP kA kA BT -ME -rW +Zz +fF Lv -Zu +pa BT "} (24,1,1) = {" @@ -3483,9 +3407,9 @@ fT IO iA fv -vm +uZ BT -EL +Ok Sh Lv gy @@ -3496,11 +3420,11 @@ bZ XX oA Bi -fm -ol +jP +hd re kA -kA +qB QF kA kA @@ -3517,15 +3441,15 @@ re Jy Fq DC -cu +ll re -Vl +ql Ch Yq -iL -km +tI +Ad BT -lb +rj lI RR gk @@ -3534,7 +3458,7 @@ BT (27,1,1) = {" bZ re -jV +dN tl bq Bf @@ -3548,86 +3472,86 @@ QA xr SA xg -Pt +OW BT "} (28,1,1) = {" bZ re -hV +Qy tl Tg -dW +Hd re -TU +OD qj VF -yd -ao +Xe +Cr BT -Eu +Lz dy kq -SI +YL BT "} (29,1,1) = {" bZ re -Xu +IJ Rx VH -SP +XQ re kA qB -OS +HF qB kA BT -jb +wk XS xg -vY +EB BT "} (30,1,1) = {" bZ re -Kn +Ps rd Qm -Pn +Ls re JN kA -qy +QR kA JN BT -Fk +mL yD ap -Ks +qM BT "} (31,1,1) = {" bZ re -hP -hP -hP -hP +Uc +Uc +Uc +Uc re bZ qB -Tq +VT qB bZ BT -iH -iH -hh -iH +da +da +Op +da BT "} diff --git a/_maps/shuttles/shiptest/independent_dwayne.dmm b/_maps/shuttles/shiptest/independent_dwayne.dmm index 383e39b00ac1..736ed3de4951 100644 --- a/_maps/shuttles/shiptest/independent_dwayne.dmm +++ b/_maps/shuttles/shiptest/independent_dwayne.dmm @@ -7,6 +7,25 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel/mono/dark, /area/ship/bridge) +"ap" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/mono, +/area/ship/medical) +"as" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "aD" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -64,9 +83,39 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"bf" = ( +/obj/effect/turf_decal/number/zero, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plating, +/area/ship/construction) "bj" = ( /turf/closed/wall, /area/ship/crew) +"bl" = ( +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + dir = 2; + dwidth = 12; + height = 17; + launch_status = 0; + name = "mining ship"; + port_direction = 8; + preferred_direction = 4; + width = 28 + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 8; + id = "mining_ship_atmosgen"; + locked = 1 + }, +/obj/machinery/door/poddoor{ + id = "mining_ship_port" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/cargo) "bv" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -81,6 +130,13 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/crew) +"bE" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/machinery/computer/cryopod/directional/south, +/turf/open/floor/wood, +/area/ship/crew) "bP" = ( /obj/structure/cable{ icon_state = "4-8" @@ -98,15 +154,21 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"dl" = ( -/obj/effect/turf_decal/corner/opaque/blue/half{ - dir = 4 - }, -/obj/machinery/computer/cargo/express{ - dir = 8 +"cf" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/structure/curtain/bounty, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood, +/area/ship/crew) +"dx" = ( +/obj/machinery/light/directional/south, +/obj/structure/ore_box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/cargo) "dy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ @@ -121,42 +183,19 @@ /obj/effect/turf_decal/corner/opaque/blue/mono, /turf/open/floor/plasteel/white, /area/ship/medical) -"dL" = ( -/obj/machinery/computer/monitor{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"dS" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/structure/curtain/bounty, -/turf/open/floor/wood, -/area/ship/crew) -"ef" = ( -/obj/structure/cable{ - icon_state = "1-2" +"dK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/layer_manifold, -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external{ - name = "Hangar Airlock" +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 }, -/turf/open/floor/plasteel, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, /area/ship/crew) "ei" = ( /turf/closed/wall/r_wall, /area/ship/medical) -"eu" = ( -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "eH" = ( /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, @@ -171,25 +210,29 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"ft" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" +"fp" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) -"fy" = ( -/obj/structure/catwalk, /turf/template_noop, -/area/ship/external) -"fV" = ( +/area/template_noop) +"fy" = ( /obj/machinery/door/poddoor/preopen{ - id = "mining_ship_blast" + id = "mining_ship_blast"; + dir = 4 }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, +/area/ship/engineering) +"fV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "mining_ship_blast"; + dir = 8 + }, +/turf/open/floor/plating, /area/ship/medical) "fY" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -216,18 +259,14 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering) -"gr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ - dir = 4 +"gm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 }, -/obj/structure/guncase/shotgun, -/obj/item/gun/ballistic/shotgun/winchester, -/obj/item/gun/ballistic/shotgun/winchester, -/obj/item/gun/ballistic/shotgun/winchester, -/obj/item/paicard, -/turf/open/floor/plasteel, -/area/ship/cargo) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "gs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -252,6 +291,39 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"gT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/closet/wall{ + pixel_y = 28 + }, +/obj/item/clothing/shoes/cowboy, +/obj/item/clothing/shoes/cowboy, +/obj/item/clothing/shoes/cowboy, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/head/cowboy, +/obj/item/clothing/head/cowboy, +/obj/item/clothing/head/cowboy, +/obj/item/clothing/head/cowboy, +/obj/item/clothing/head/cowboy, +/obj/item/clothing/head/cowboy, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "he" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -262,39 +334,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"hj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"hp" = ( -/obj/machinery/button/door{ - id = "mining_ship_port"; - name = "Port Hangar Shutters"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner/opaque/yellow/half{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"hv" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/machinery/computer/cryopod{ - pixel_y = -28 - }, -/turf/open/floor/wood, -/area/ship/crew) "hy" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -307,19 +346,6 @@ /obj/effect/turf_decal/solarpanel, /turf/open/floor/plating/airless, /area/ship/external) -"hA" = ( -/obj/structure/sink{ - pixel_y = 17 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 1 - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) "hK" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 @@ -333,26 +359,30 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"hO" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 7 +"hZ" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/light{ +/obj/machinery/atmospherics/components/unary/portables_connector{ dir = 8 }, -/obj/item/storage/box/lights/mixed, -/obj/item/paper/fluff/ruins/oldstation/generator_manual, -/turf/open/floor/plasteel/tech/grid, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plating, /area/ship/engineering) "ig" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/engineering) +"in" = ( +/obj/machinery/door/poddoor{ + id = "mining_ship_port" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/cargo) "iq" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 @@ -368,49 +398,11 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/item/storage/overmap_ship/electric{ - pixel_x = 32; - pixel_y = -32 - }, /obj/effect/turf_decal/techfloor{ dir = 6 }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"iz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/holopad/emergency/command, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) -"iM" = ( -/obj/structure/table/reinforced, -/obj/item/gps{ - gpstag = "NTREC1"; - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/corner/opaque/blue/half, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"iO" = ( -/obj/structure/frame/computer{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue/half{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "iZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -421,70 +413,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew) -"ja" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/item/radio/intercom/wideband{ - pixel_y = 28 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Cockpit"; - pixel_x = -30; - pixel_y = 30 - }, -/obj/machinery/camera/autoname, -/obj/effect/turf_decal/corner/opaque/blue/half{ - dir = 1 - }, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"jh" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/south, -/obj/effect/turf_decal/corner/opaque/yellow/half, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"jO" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"jP" = ( -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 10 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/surgery, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/gloves/color/latex/nitrile, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) "jS" = ( /obj/structure/cable/yellow{ icon_state = "0-8" @@ -493,6 +421,14 @@ /obj/effect/turf_decal/solarpanel, /turf/open/floor/plating/airless, /area/ship/external) +"kb" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + dir = 1 + }, +/area/ship/crew) "kf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -515,15 +451,16 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"kD" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "mining_ship_port" +"kM" = ( +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/corner/opaque/yellow/half, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/plasteel, /area/ship/cargo) "kO" = ( /obj/structure/cable/yellow{ @@ -532,55 +469,18 @@ /obj/structure/cable/yellow{ icon_state = "0-4" }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/solar, -/obj/effect/turf_decal/solarpanel, -/turf/open/floor/plating/airless, -/area/ship/external) -"kQ" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"lg" = ( -/obj/effect/turf_decal/number/five, -/turf/open/floor/plating/airless, -/area/ship/external) -"lh" = ( -/obj/machinery/door/poddoor/preopen{ - id = "mining_ship_starboard" - }, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plating/airless, -/area/ship/external) -"lp" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -2; - pixel_y = 1 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/structure/cable, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/reagent_containers/glass/beaker{ - list_reagents = list(/datum/reagent/fuel = 50) +/obj/machinery/power/solar, +/obj/effect/turf_decal/solarpanel, +/turf/open/floor/plating/airless, +/area/ship/external) +"kQ" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, +/turf/open/floor/plating, /area/ship/engineering) "ls" = ( /obj/structure/cable, @@ -603,6 +503,44 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/crew) +"lD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/engineering) +"ma" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"mr" = ( +/obj/effect/turf_decal/ntspaceworks_big/six, +/turf/open/floor/plating, +/area/ship/construction) "ms" = ( /obj/machinery/door/poddoor/preopen{ id = "mining_ship_blast" @@ -618,6 +556,47 @@ dir = 1 }, /area/ship/crew) +"mA" = ( +/obj/structure/table/reinforced, +/obj/item/gps{ + gpstag = "NTREC1"; + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/corner/opaque/blue/half, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"mC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/computer/monitor/retro{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"mE" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/yellow/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "mF" = ( /turf/closed/wall, /area/ship/engineering) @@ -633,12 +612,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"nu" = ( -/obj/effect/turf_decal/corner/opaque/yellow/half{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) "nJ" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, /obj/structure/cable{ @@ -663,19 +636,6 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"nM" = ( -/obj/structure/bed/roller, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 1 - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) "nY" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -712,6 +672,19 @@ "oC" = ( /turf/closed/wall, /area/ship/medical) +"oE" = ( +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 9 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "oR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -725,51 +698,74 @@ }, /turf/open/floor/plating, /area/ship/crew) +"pl" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 4; + id = "mining_ship_atmosgen"; + locked = 1 + }, +/obj/machinery/door/poddoor{ + id = "mining_ship_port" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/cargo) +"pn" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 10 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "pq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 }, /turf/open/floor/plasteel, /area/ship/cargo) -"pS" = ( -/obj/effect/turf_decal/box, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel, -/area/ship/cargo) -"pU" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/computer/helm/viewscreen{ - pixel_x = 30 +"pt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, +/obj/effect/turf_decal/corner/opaque/yellow/border, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"pv" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/computer/helm/viewscreen/directional/east, /obj/effect/landmark/start/assistant, /obj/structure/chair/comfy/brown{ dir = 8 }, /turf/open/floor/wood, /area/ship/crew) -"qv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/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/structure/cable{ - icon_state = "1-6" +"pS" = ( +/obj/effect/turf_decal/box, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel, +/area/ship/cargo) +"qg" = ( +/obj/machinery/holopad/emergency/command, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"qz" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/turf/open/floor/plasteel, +/area/ship/cargo) "qK" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 5 @@ -820,35 +816,9 @@ /obj/item/reagent_containers/food/snacks/rationpack, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"qP" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/effect/turf_decal/corner/opaque/blue/half{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"qW" = ( -/obj/machinery/light, -/obj/structure/ore_box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ship/cargo) "rE" = ( /turf/closed/wall/r_wall, /area/ship/bridge) -"rU" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/turf/open/floor/wood, -/area/ship/crew) "sg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -860,6 +830,17 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel/dark, /area/ship/crew) +"sp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 8 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "sD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -867,6 +848,15 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel/dark, /area/ship/crew) +"sM" = ( +/obj/effect/turf_decal/corner/opaque/blue/half{ + dir = 4 + }, +/obj/structure/frame/computer/retro{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "sP" = ( /obj/structure/cable/yellow{ icon_state = "0-4" @@ -886,6 +876,13 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"tj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "tq" = ( /turf/closed/wall/r_wall, /area/ship/engineering) @@ -932,28 +929,6 @@ }, /turf/closed/wall/r_wall, /area/ship/cargo) -"tH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering, -/turf/open/floor/plasteel, -/area/ship/engineering) "tX" = ( /obj/structure/ore_box, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -965,6 +940,9 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/cargo) +"uk" = ( +/turf/open/floor/plating, +/area/ship/construction) "uP" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 4 @@ -981,11 +959,21 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"uT" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/ship/cargo) "vb" = ( /obj/effect/turf_decal/box, /obj/machinery/ore_silo, /turf/open/floor/plasteel, /area/ship/cargo) +"vf" = ( +/obj/effect/turf_decal/ntspaceworks_big/seven, +/turf/open/floor/plating, +/area/ship/construction) "vj" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -1012,14 +1000,21 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"vs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) +"vw" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood, +/area/ship/crew) +"vA" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/item/paicard, +/turf/open/floor/plasteel, +/area/ship/cargo) "vJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1027,6 +1022,24 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"vQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass{ + dir = 4 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "wh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1051,19 +1064,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel, /area/ship/cargo) -"wA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "wW" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -1090,27 +1090,16 @@ /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/crew) -"xx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"xz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/obj/effect/turf_decal/industrial/warning/corner{ +"xo" = ( +/turf/closed/wall, +/area/ship/external) +"xr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "mining_ship_blast"; dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plating, /area/ship/crew) "yu" = ( /obj/machinery/mineral/ore_redemption{ @@ -1136,16 +1125,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"yH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "yJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1163,17 +1142,21 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"zh" = ( -/obj/machinery/computer/operating{ +"zc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 9 +/obj/machinery/door/airlock/command/glass{ + dir = 4 }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "zn" = ( /obj/structure/closet/emcloset/wall, /turf/closed/wall, @@ -1194,8 +1177,28 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel, /area/ship/cargo) +"zK" = ( +/obj/machinery/button/shieldwallgen{ + id = "mining_ship_atmosgen"; + pixel_x = 8; + pixel_y = 21 + }, +/obj/machinery/button/door{ + id = "mining_ship_port"; + name = "Port Hangar Shutters"; + pixel_x = -2; + pixel_y = 23 + }, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/cargo) "zQ" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /obj/effect/decal/cleanable/dirt/dust, @@ -1206,63 +1209,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"zW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 10 - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) -"Aj" = ( -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/obj/effect/turf_decal/corner/opaque/yellow/half, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/autolathe, -/turf/open/floor/plasteel, -/area/ship/cargo) -"Al" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/closet/wall{ - pixel_y = 32 - }, -/obj/item/clothing/shoes/cowboy, -/obj/item/clothing/shoes/cowboy, -/obj/item/clothing/shoes/cowboy, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/under/utility, -/obj/item/clothing/under/utility, -/obj/item/clothing/under/utility, -/obj/item/clothing/under/utility/skirt, -/obj/item/clothing/under/utility/skirt, -/obj/item/clothing/under/utility/skirt, -/obj/item/clothing/head/cowboy, -/obj/item/clothing/head/cowboy, -/obj/item/clothing/head/cowboy, -/obj/item/clothing/head/cowboy, -/obj/item/clothing/head/cowboy, -/obj/item/clothing/head/cowboy, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) "AD" = ( /obj/effect/landmark/start/assistant, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1300,19 +1246,13 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew) +"Cn" = ( +/obj/structure/catwalk, +/turf/closed/wall, +/area/ship/external) "Cp" = ( /turf/open/floor/plasteel, /area/ship/cargo) -"Cw" = ( -/obj/machinery/door/poddoor{ - id = "mining_ship_port" - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/cargo) "CD" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/manifold/orange/visible{ @@ -1337,22 +1277,31 @@ /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/ship/engineering) -"DC" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/obj/docking_port/mobile{ - can_move_docking_ports = 1; - dir = 2; - dwidth = 12; - height = 17; - launch_status = 0; - name = "mining ship"; - port_direction = 8; - preferred_direction = 4; - width = 28 +"DG" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plating, -/area/ship/cargo) +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Cockpit"; + pixel_x = -30; + pixel_y = 30 + }, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/corner/opaque/blue/half{ + dir = 1 + }, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "DJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1365,16 +1314,14 @@ dir = 1 }, /area/ship/crew) -"DX" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 3; - height = 5; - name = "Mining Ship: Common Mining Dock"; - width = 7 +"Ee" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plating/airless, -/area/ship/external) +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "Ex" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ @@ -1388,29 +1335,20 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel, /area/ship/cargo) -"EA" = ( +"Fd" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25 + icon_state = "4-8" }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/turf_decal/corner/opaque/blue/border, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) -"EF" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" +/obj/effect/turf_decal/corner/opaque/yellow/bordercorner, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"Fn" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/turf_decal/corner/opaque/blue/border, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) +/turf/open/floor/plating, +/area/ship/cargo) "Fz" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -1420,17 +1358,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"FC" = ( -/obj/effect/turf_decal/number/six, -/turf/open/floor/plating/airless, -/area/ship/external) -"FN" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) "FP" = ( /turf/open/floor/plating, /area/ship/cargo) @@ -1445,22 +1372,14 @@ /obj/effect/turf_decal/solarpanel, /turf/open/floor/plating/airless, /area/ship/external) -"Gv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering, -/obj/effect/turf_decal/techfloor{ +"Gr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "mining_ship_blast"; dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/engineering) +/turf/open/floor/plating/airless, +/area/ship/bridge) "Gx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1482,6 +1401,7 @@ pixel_y = 1 }, /obj/effect/turf_decal/corner/opaque/blue/half, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plasteel/dark, /area/ship/bridge) "He" = ( @@ -1491,17 +1411,15 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"Hf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"Hh" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/light, -/obj/machinery/button/door{ - id = "mining_ship_starboard"; - name = "Starboard Hangar Shutters"; - pixel_y = -28 +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/machinery/door/airlock/external{ + name = "Hangar Airlock" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/ship/crew) "HI" = ( /obj/structure/cable/yellow{ @@ -1531,27 +1449,23 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ - id = "mining_ship_blast" + id = "mining_ship_blast"; + dir = 8 }, -/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/crew) -"Ij" = ( -/obj/item/vending_refill/mining_equipment, -/turf/closed/wall/r_wall, -/area/ship/engineering) -"IC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" - }, -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 30 +"Ip" = ( +/obj/machinery/door/poddoor{ + id = "mining_ship_starboard" }, -/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/engineering) +/area/ship/construction) +"Is" = ( +/obj/effect/turf_decal/ntspaceworks_big/five, +/turf/open/floor/plating, +/area/ship/construction) "IF" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/yellow{ @@ -1576,6 +1490,27 @@ /obj/effect/turf_decal/corner/opaque/blue/mono, /turf/open/floor/plasteel/white, /area/ship/medical) +"IK" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/ship/cargo) +"IT" = ( +/obj/structure/table, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/medical{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/mono, +/area/ship/medical) "IZ" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 @@ -1586,22 +1521,27 @@ /obj/effect/landmark/start/quartermaster, /turf/open/floor/plasteel, /area/ship/cargo) -"JB" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Jn" = ( +/obj/effect/turf_decal/ntspaceworks_big/four, +/turf/open/floor/plating, +/area/ship/construction) +"Jq" = ( +/obj/effect/turf_decal/ntspaceworks_big/two, +/turf/open/floor/plating, +/area/ship/construction) +"Jy" = ( +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/turf_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/corner/opaque/blue/half{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/computer/operating/retro{ dir = 4 }, -/obj/machinery/door/airlock/command/glass, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "JH" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/hardhat/mining{ @@ -1619,12 +1559,31 @@ dir = 1 }, /obj/item/clothing/head/caphat/cowboy, +/obj/item/radio/intercom/wideband/directional/east, /turf/open/floor/plasteel/dark, /area/ship/bridge) "Ka" = ( /obj/machinery/status_display/shuttle, /turf/closed/wall, /area/ship/bridge) +"Kc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -25 + }, +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/turf_decal/corner/opaque/blue/border, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) +"KO" = ( +/obj/effect/turf_decal/ntspaceworks_big/three, +/turf/open/floor/plating, +/area/ship/construction) "LH" = ( /obj/machinery/door/poddoor/preopen{ id = "mining_ship_blast" @@ -1642,8 +1601,13 @@ }, /obj/structure/cable/yellow, /obj/effect/decal/cleanable/dirt/dust, +/obj/item/storage/overmap_ship/electric/directional/east, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"LN" = ( +/obj/effect/turf_decal/industrial/warning/corner, +/turf/open/floor/plating, +/area/ship/construction) "LZ" = ( /turf/closed/wall/r_wall, /area/ship/crew) @@ -1724,14 +1688,39 @@ /obj/effect/turf_decal/corner/opaque/blue/border, /turf/open/floor/plasteel/mono/white, /area/ship/medical) -"MN" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm/directional/east, -/obj/machinery/sleeper{ - dir = 8 +"MD" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/mono, -/area/ship/medical) +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/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/structure/cable{ + icon_state = "1-6" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"MG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/light_switch{ + pixel_x = 21; + pixel_y = 25 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "MQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1747,19 +1736,24 @@ /obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"MT" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/cargo) +"Nf" = ( +/obj/effect/turf_decal/number/five, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plating, +/area/ship/construction) "Nw" = ( /obj/machinery/status_display/shuttle, /turf/closed/wall, /area/ship/engineering) -"NK" = ( -/obj/machinery/computer/helm{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue/half{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "NM" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -1780,36 +1774,41 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"NT" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/ship/cargo) -"NY" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" +"Op" = ( +/obj/item/vending_refill/mining_equipment{ + pixel_y = -8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/turf/closed/wall/r_wall, +/area/ship/engineering) +"OJ" = ( +/turf/template_noop, +/area/template_noop) +"OL" = ( +/obj/effect/turf_decal/corner/opaque/blue/half{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ +/obj/machinery/computer/helm/retro{ dir = 8 }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"OP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 + dir = 5 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/turf_decal/corner/opaque/blue/half{ + dir = 4 }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ship/crew) -"OJ" = ( -/turf/template_noop, -/area/template_noop) +"OW" = ( +/obj/effect/turf_decal/number/one, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/construction) "Pd" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1824,6 +1823,42 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) +"Ph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/cargo) +"Pl" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/reagent_containers/glass/beaker{ + list_reagents = list(/datum/reagent/fuel=50) + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Po" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -1836,10 +1871,6 @@ /obj/effect/turf_decal/solarpanel, /turf/open/floor/plating/airless, /area/ship/external) -"Pv" = ( -/obj/effect/turf_decal/number/two, -/turf/open/floor/plating/airless, -/area/ship/external) "Px" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/structure/cable/yellow{ @@ -1848,9 +1879,34 @@ /obj/effect/turf_decal/corner/opaque/white/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"PU" = ( +/obj/effect/turf_decal/ntspaceworks_big/one, +/turf/open/floor/plating, +/area/ship/construction) "Qe" = ( /turf/open/floor/plasteel/grimy, /area/ship/crew) +"Qp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"QG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/cargo) "QI" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1872,9 +1928,53 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel, /area/ship/cargo) -"Rr" = ( -/turf/open/floor/plating/airless, -/area/ship/external) +"RA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/engineering) +"RN" = ( +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/structure/table, +/obj/item/book/manual/wiki/surgery, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue/half{ + dir = 4 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) +"RS" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue/half{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "RT" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -1889,32 +1989,36 @@ /obj/item/clothing/suit/hooded/explorer, /turf/open/floor/plating, /area/ship/cargo) +"Se" = ( +/obj/effect/turf_decal/corner/opaque/blue/half{ + dir = 4 + }, +/obj/machinery/computer/cargo/express/retro{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Sg" = ( /turf/open/floor/plasteel/dark, /area/ship/crew) -"SQ" = ( -/obj/machinery/door/airlock/external, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"St" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4, +/obj/effect/turf_decal/industrial/warning{ + dir = 9 }, -/turf/open/floor/plating, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"SB" = ( +/obj/effect/turf_decal/ntspaceworks_big/eight, +/turf/open/floor/plating, +/area/ship/construction) "Tl" = ( /obj/structure/chair/comfy/brown{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"TF" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/techfloor{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "TP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -1928,18 +2032,16 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/crew) -"TX" = ( -/obj/structure/table, -/obj/item/storage/firstaid/o2{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/medical{ - pixel_x = -5; - pixel_y = -4 +"Ub" = ( +/obj/structure/bed/roller, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 1 }, -/turf/open/floor/plasteel/mono, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/mono/white, /area/ship/medical) "Um" = ( /obj/structure/table/wood, @@ -1950,19 +2052,15 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel, /area/ship/cargo) -"Ut" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ +"UP" = ( +/obj/machinery/door/airlock/external{ dir = 4 }, -/obj/machinery/door/airlock/command/glass, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/engineering) "UY" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/closet/crate, @@ -1970,16 +2068,20 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel, /area/ship/cargo) "Vb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ - id = "mining_ship_blast" + id = "mining_ship_blast"; + dir = 8 }, -/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/medical) "Vv" = ( @@ -1989,34 +2091,39 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"VF" = ( -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light{ +"VP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ dir = 8 }, -/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Wi" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/autolathe, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, /area/ship/cargo) -"VO" = ( -/obj/effect/turf_decal/corner/opaque/yellow/half{ +"Wm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner/opaque/yellow/three_quarters{ dir = 4 }, +/obj/structure/guncase/shotgun, +/obj/item/gun/ballistic/shotgun/winchester, +/obj/item/gun/ballistic/shotgun/winchester, +/obj/item/gun/ballistic/shotgun/winchester, /turf/open/floor/plasteel, /area/ship/cargo) -"VP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "WE" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/light_switch{ pixel_x = -25; - pixel_y = -25 + pixel_y = -25; + dir = 4 }, /obj/effect/turf_decal/techfloor{ dir = 10 @@ -2024,6 +2131,19 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"WL" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/light/directional/west, +/obj/item/storage/box/lights/mixed, +/obj/item/paper/fluff/ruins/oldstation/generator_manual, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "WZ" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -2036,16 +2156,10 @@ /obj/effect/turf_decal/solarpanel, /turf/open/floor/plating/airless, /area/ship/external) -"Xe" = ( -/obj/item/radio/intercom{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +"Xk" = ( +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plating, +/area/ship/construction) "Xl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -2106,39 +2220,74 @@ /obj/item/storage/belt/medical, /turf/open/floor/plasteel/mono, /area/ship/medical) -"Yf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"YE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "engine fuel pump" }, -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/yellow/bordercorner, -/turf/open/floor/plasteel/dark, -/area/ship/crew) +/obj/structure/catwalk/over, +/obj/machinery/computer/helm/viewscreen/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) "YJ" = ( /turf/closed/wall/r_wall, /area/ship/cargo) -"Zo" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 +"YN" = ( +/turf/closed/wall/r_wall, +/area/ship/construction) +"Zj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/white{ - dir = 4 +/obj/machinery/button/door{ + dir = 1; + id = "mining_ship_starboard"; + name = "Starboard Hangar Shutters"; + pixel_y = -21 }, +/turf/open/floor/plasteel/dark, /area/ship/crew) -"ZB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"Zp" = ( +/turf/closed/wall, +/area/template_noop) +"Zv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 25 + dir = 4; + pixel_x = -20; + pixel_y = 22 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"ZA" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 1 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ship/cargo) +"ZK" = ( +/obj/machinery/door/poddoor{ + id = "mining_ship_port" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/ship/cargo) "ZL" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 @@ -2151,6 +2300,17 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"ZR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/industrial/warning/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew) (1,1,1) = {" OJ @@ -2158,13 +2318,14 @@ OJ OJ OJ OJ -fy +OJ +OJ mF mF -SQ +UP mF mF -fy +OJ OJ OJ OJ @@ -2177,13 +2338,14 @@ OJ OJ OJ OJ -fy +OJ +OJ CP -Xe +St HI aS CP -fy +OJ OJ OJ OJ @@ -2193,35 +2355,37 @@ OJ (3,1,1) = {" OJ OJ +xo gF aD -fy -fy +Cn +OJ LH iq ZL gu ig zq -fy +Cn aD gF -OJ +Zp OJ "} (4,1,1) = {" OJ +OJ tq hK bb tq -LH +fy tq tq -wA +Qp tq tq -LH +fy tq uP CO @@ -2230,27 +2394,29 @@ OJ "} (5,1,1) = {" OJ +OJ tq CD vn -hO +WL Mk IF -TF +as kf WE vJ vJ -qv +MD ls -xx +gm tq OJ "} (6,1,1) = {" OJ -Ij -IC +OJ +Op +YE bP om He @@ -2268,17 +2434,18 @@ OJ "} (7,1,1) = {" OJ +OJ tq kQ -jO +hZ QI qO -lp +Pl Xn -hj +ma ir LK -dL +mC Vv fl VP @@ -2286,6 +2453,7 @@ tq OJ "} (8,1,1) = {" +OJ YJ YJ YJ @@ -2293,39 +2461,41 @@ YJ YJ YJ YJ -tH +lD Nw -Gv +RA +tq tq tq tq tq tq tq -mF "} (9,1,1) = {" +OJ YJ +qz aR -aR -VF +uT za pS eM -NY +mE yu iZ bj -Rr -Rr -Rr -Rr -Rr -lh +uk +uk +uk +uk +LN +YN "} (10,1,1) = {" -Cw -nu +OJ +pl +MT eH Cp Jg @@ -2333,38 +2503,40 @@ vb eM Sg AD -Hf +Zj bj -Rr -Rr -Rr -Rr -Rr -lh +uk +uk +uk +uk +Xk +Ip "} (11,1,1) = {" -Cw -nu +OJ +in +MT FP Un oB -Aj +Wi eM aI TP -yH +ZR bj -Rr -Rr -Rr -Rr -Rr -lh +uk +uk +uk +uk +Xk +Ip "} (12,1,1) = {" -kD -FP -NT +OJ +in +Fn +vA NN pq nf @@ -2373,17 +2545,18 @@ or lv sD Mb -Rr -Rr -Rr -Rr -Rr -lh +uk +uk +uk +uk +Xk +Ip "} (13,1,1) = {" -kD -nu -FP +fp +ZK +ZA +QG UY zF QO @@ -2391,91 +2564,96 @@ Ex wW nJ sg -ef -DX -Rr -Rr -Rr -Rr -lh +Hh +uk +uk +uk +uk +Xk +Ip "} (14,1,1) = {" -kD -FP +OJ +in +Fn FP tX Pd -gr +Wm uc or lv sD Mb -Rr -Rr -Rr -Rr -Pv -lh +uk +uk +PU +Is +Xk +Ip "} (15,1,1) = {" -YJ -hp +OJ +in +Ph FP nL -jh +kM YJ tG IZ lv -xz +dK bj -Rr -Rr -Rr -Rr -lg -lh +uk +uk +Jq +mr +Nf +Ip "} (16,1,1) = {" -DC -FP +OJ +bl +Fn ww Mo -qW +dx YJ LJ Sg lv -eu +tj bj -Rr -Rr -Rr -Rr -lg -lh +uk +uk +KO +vf +bf +Ip "} (17,1,1) = {" +OJ YJ +zK FP -FP -VO +IK RU YJ GU -Zo +Sg lv -Yf +Fd bj -Rr -Rr -Rr -Rr -FC -lh +uk +uk +Jn +SB +OW +YN "} (18,1,1) = {" +OJ YJ YJ ei @@ -2483,49 +2661,51 @@ ei ei ei zn -my +kb lv -Gx +pt bj LZ LZ LZ LZ LZ -bj +LZ "} (19,1,1) = {" OJ +OJ sP ei -zh -zW -jP +Jy +RS +RN oC my lv Gx bj Mz -dS -hv +cf +bE LZ sP OJ "} (20,1,1) = {" OJ +OJ FS ei -hA -vs -EF +oE +sp +pn oC my oR Gx bj -Al +gT yx Qe Mb @@ -2534,9 +2714,10 @@ OJ "} (21,1,1) = {" OJ +OJ FS ei -nM +Ub gs MB dy @@ -2544,7 +2725,7 @@ qK bv yJ bj -FN +Ee HP Tl Mb @@ -2553,17 +2734,18 @@ OJ "} (22,1,1) = {" OJ +OJ FS ei sZ Px -EA +Kc IJ DJ xh vj wh -ZB +MG Fz Um Mb @@ -2572,55 +2754,58 @@ OJ "} (23,1,1) = {" OJ +OJ FS ei -TX +IT Xw -MN +ap oC Xl AQ -qP +OP bj -pU +pv aY -rU +vw LZ FS OJ "} (24,1,1) = {" OJ +OJ FS ei fV Vb rE wv -JB +vQ Ka -Ut +zc wv rE Ia -Mb +xr LZ FS OJ "} (25,1,1) = {" OJ +OJ bW NM WZ Po -rE -ja -ft -iz +ms +DG +Zv +qg Mn -iM -rE +mA +ms kO hy NM @@ -2631,6 +2816,7 @@ OJ OJ OJ OJ +OJ jS jS ms @@ -2652,13 +2838,14 @@ OJ OJ OJ OJ -ms -ms -dl -NK -iO -ms -ms +OJ +rE +rE +Se +OL +sM +rE +rE OJ OJ OJ @@ -2672,11 +2859,12 @@ OJ OJ OJ OJ -ms -ms -ms -ms -ms +OJ +rE +Gr +Gr +Gr +rE OJ OJ OJ diff --git a/_maps/shuttles/shiptest/independent_halftrack.dmm b/_maps/shuttles/shiptest/independent_halftrack.dmm index b9e11d0257b7..707427d8b88c 100644 --- a/_maps/shuttles/shiptest/independent_halftrack.dmm +++ b/_maps/shuttles/shiptest/independent_halftrack.dmm @@ -7,27 +7,30 @@ icon_state = "0-2" }, /obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ship/maintenance/port) -"aT" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -25 +"aR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "traumawindows"; + name = "Window Blast Door"; + dir = 4 }, -/obj/structure/table/reinforced, -/obj/item/gun/ballistic/automatic/toy/pistol/unrestricted, -/obj/item/ammo_box/magazine/toy/pistol, -/obj/item/ammo_box/magazine/toy/pistol, -/obj/item/ammo_box/magazine/toy/pistol, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ship/crew) +"aT" = ( +/obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 4 + dir = 4; + name = "warningr" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, -/turf/open/floor/plasteel/dark, +/obj/machinery/door/window/westleft, +/turf/open/floor/plasteel/tech, /area/ship/security/range) "bu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -60,9 +63,15 @@ /turf/open/floor/plasteel/dark, /area/ship/security/armory) "cs" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ship/security) +"cD" = ( +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/range) "cI" = ( /obj/effect/turf_decal/trimline/opaque/orange/filled/line{ dir = 4 @@ -108,6 +117,9 @@ /area/ship/maintenance/port) "ed" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/trimline/opaque/red/warning{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/ship/security/range) "el" = ( @@ -117,15 +129,17 @@ /obj/effect/turf_decal/industrial/warning{ dir = 9 }, -/obj/machinery/computer/cryopod{ - pixel_y = -25; - dir = 1 - }, -/obj/machinery/light/small{ +/obj/machinery/computer/cryopod/directional/south, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"eG" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/opaque/red/warning{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/ship/crew) +/area/ship/security/range) "eJ" = ( /obj/machinery/holopad/emergency/command, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -167,9 +181,7 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/donkpockets, /obj/effect/spawner/lootdrop/donkpockets, -/obj/machinery/newscaster{ - pixel_y = -30 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/carpet/nanoweave, /area/ship/crew) "fe" = ( @@ -185,14 +197,8 @@ /turf/open/floor/plating, /area/ship/maintenance/port) "fn" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/firealarm/directional/west, /obj/structure/closet/crate/secure/weapon, /obj/item/storage/box/lethalshot, /obj/item/storage/box/lethalshot, @@ -211,9 +217,6 @@ /turf/closed/wall/r_wall, /area/ship/maintenance/port) "fT" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, /obj/structure/closet/secure_closet/security, /obj/item/gun/ballistic/shotgun/bulldog/unrestricted, /obj/item/gun/ballistic/shotgun/bulldog/unrestricted, @@ -228,6 +231,7 @@ /obj/item/ammo_box/magazine/mm712x82, /obj/item/ammo_box/magazine/mm712x82, /obj/effect/turf_decal/box/red, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/dark, /area/ship/security) "go" = ( @@ -255,12 +259,15 @@ /area/ship/hallway/aft) "hq" = ( /obj/item/target/clown, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/box/red, +/obj/structure/training_machine, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/security/range) "hv" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/item/target/syndicate, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/security/range) "hF" = ( /obj/structure/table/reinforced, @@ -272,9 +279,9 @@ /turf/open/floor/plasteel/dark, /area/ship/bridge) "hT" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, -/obj/effect/turf_decal/arrows/red{ +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 8 }, /turf/open/floor/plasteel/dark, @@ -297,17 +304,14 @@ icon_state = "1-2" }, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plating, /area/ship/maintenance/starboard) "iA" = ( -/obj/structure/window/reinforced{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/obj/structure/window/reinforced/tinted{ dir = 4 }, /turf/open/floor/plasteel/dark, @@ -315,15 +319,11 @@ "iJ" = ( /obj/structure/window/reinforced, /obj/machinery/door/firedoor/border_only, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/suit_storage_unit, /obj/item/tank/internals/oxygen, /obj/item/clothing/mask/breath, /obj/item/clothing/suit/space/hardsuit/swat/captain, -/turf/open/floor/plasteel/dark, +/obj/machinery/suit_storage_unit/inherit, +/turf/open/floor/plasteel/tech/grid, /area/ship/storage) "iP" = ( /obj/machinery/power/smes/engineering{ @@ -332,6 +332,7 @@ /obj/structure/cable{ icon_state = "0-2" }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ship/maintenance/starboard) "iW" = ( @@ -347,6 +348,9 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/ship/security/armory) "kB" = ( @@ -359,9 +363,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, -/obj/machinery/light{ - dir = 8 - }, /obj/item/gun/ballistic/automatic/smg/vector{ spawnwithmagazine = 0 }, @@ -399,10 +400,7 @@ /turf/open/floor/plasteel/dark, /area/ship/crew) "kH" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 25 - }, +/obj/item/radio/intercom/directional/east, /obj/machinery/power/terminal, /obj/structure/cable/yellow, /turf/open/floor/plating, @@ -412,7 +410,7 @@ /turf/open/floor/plasteel/dark, /area/ship/bridge) "lb" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -477,12 +475,14 @@ dir = 4 }, /obj/machinery/door/airlock/security{ + dir = 4; name = "Crew Quarters" }, /turf/open/floor/carpet/nanoweave, /area/ship/crew) "mw" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Port Engines" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -503,7 +503,10 @@ /turf/open/floor/plating, /area/ship/maintenance/port) "mG" = ( -/obj/item/target, +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, /area/ship/security/range) "mO" = ( @@ -511,11 +514,12 @@ /turf/open/floor/plasteel/dark, /area/ship/bridge) "mP" = ( +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "traumawindows"; - name = "Window Blast Door" + name = "Window Blast Door"; + dir = 4 }, -/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/security) "mQ" = ( @@ -534,9 +538,6 @@ /turf/open/floor/plasteel/dark, /area/ship/security/armory) "nl" = ( -/obj/machinery/light/small{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ icon_state = "1-2" @@ -545,6 +546,9 @@ dir = 4; pixel_x = -28 }, +/obj/effect/turf_decal/number/five{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/maintenance/starboard) "nm" = ( @@ -593,13 +597,15 @@ name = "Lobby Door Control"; normaldoorcontrol = 1; pixel_x = -13; - pixel_y = 7 + pixel_y = 7; + dir = 1 }, /obj/machinery/button/door{ id = "traumalobby"; name = "Lobby Shutter Control"; pixel_x = -13; - pixel_y = -1 + pixel_y = -1; + dir = 1 }, /obj/machinery/door/firedoor/border_only, /obj/effect/turf_decal/industrial/hatch/red, @@ -619,11 +625,11 @@ "oX" = ( /obj/structure/window/reinforced, /obj/machinery/door/firedoor/border_only, -/obj/machinery/suit_storage_unit, /obj/item/tank/internals/oxygen, /obj/item/clothing/mask/breath, /obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/turf/open/floor/plasteel/dark, +/obj/machinery/suit_storage_unit/inherit, +/turf/open/floor/plasteel/tech/grid, /area/ship/storage) "pa" = ( /obj/structure/sign/poster/contraband/peacemaker, @@ -665,15 +671,13 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/dark, /area/ship/storage) "qQ" = ( /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 4 + dir = 4; + name = "warningr" }, /obj/structure/cable{ icon_state = "4-8" @@ -691,14 +695,13 @@ icon_state = "1-2" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) "rM" = ( -/obj/machinery/light/small, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-8" }, @@ -712,9 +715,7 @@ /obj/item/flashlight/seclite, /obj/item/flashlight/seclite, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/item/clothing/head/helmet/sec, /obj/item/clothing/head/helmet/sec, /obj/item/clothing/head/helmet/sec, @@ -775,8 +776,8 @@ icon_state = "1-2" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) @@ -788,20 +789,11 @@ /area/ship/crew) "tE" = ( /obj/item/kirbyplants/random, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/aft) "tO" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/machinery/airalarm/directional/south, /obj/structure/closet/secure_closet/security, /obj/item/clothing/head/beret/sec/inteq, /obj/item/clothing/head/beret/sec/inteq, @@ -821,12 +813,10 @@ /obj/item/storage/backpack/messenger/inteq, /obj/item/clothing/glasses/hud/security/sunglasses/inteq, /obj/item/clothing/glasses/hud/security/sunglasses/inteq, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/carpet/nanoweave, /area/ship/crew) "tT" = ( -/obj/machinery/light{ - dir = 4 - }, /obj/structure/chair{ dir = 8 }, @@ -843,16 +833,16 @@ /obj/machinery/modular_computer/console/preset/command{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/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/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/dark, /area/ship/security) "uq" = ( @@ -870,7 +860,7 @@ /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/aft) "uE" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/window/reinforced/tinted/frosted{ dir = 8 }, @@ -883,9 +873,8 @@ /obj/structure/chair{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/firealarm/directional/east, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/aft) "ve" = ( @@ -897,16 +886,13 @@ /obj/machinery/computer/med_data/laptop{ dir = 1 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -25 - }, +/obj/item/radio/intercom/directional/west, /obj/machinery/door/firedoor/border_only, /obj/effect/turf_decal/industrial/hatch/red, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/aft) "vj" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -937,12 +923,11 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ship/maintenance/port) "vG" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -958,7 +943,7 @@ /area/ship/security/armory) "vT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-2" }, @@ -995,20 +980,18 @@ /area/ship/hallway/aft) "yi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, +/obj/effect/turf_decal/number/zero{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/maintenance/starboard) "zg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/aft) "zo" = ( @@ -1021,27 +1004,45 @@ /obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, /area/ship/security) -"zE" = ( -/obj/structure/window/reinforced{ - dir = 4 +"zR" = ( +/obj/item/gun/ballistic/automatic/smg/vector{ + spawnwithmagazine = 0 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/item/ammo_box/magazine/smgm9mm/rubbershot, +/obj/item/ammo_box/magazine/smgm9mm/rubbershot, +/obj/item/ammo_box/magazine/co9mm{ + ammo_type = /obj/item/ammo_casing/c9mm/rubbershot; + name = "Commander magazine (Rubbershot 9mm)" }, -/obj/machinery/light{ - dir = 1 +/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/rubbershot; + name = "Commander magazine (Rubbershot 9mm)" }, -/turf/open/floor/plasteel/dark, -/area/ship/security/range) -"zR" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 +/obj/item/ammo_box/magazine/co9mm{ + ammo_type = /obj/item/ammo_casing/c9mm/rubbershot; + name = "Commander magazine (Rubbershot 9mm)" }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) +/obj/item/ammo_box/magazine/co9mm{ + ammo_type = /obj/item/ammo_casing/c9mm/ap; + name = "Commander magazine (AP 9mm)" + }, +/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" + }, +/obj/item/ammo_box/magazine/co9mm{ + ammo_type = /obj/item/ammo_casing/c9mm/rubbershot; + name = "Commander magazine (Rubbershot 9mm)" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "zS" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -1064,8 +1065,8 @@ icon_state = "1-2" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) @@ -1078,23 +1079,20 @@ icon_state = "1-2" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) "BN" = ( -/obj/docking_port/mobile{ - launch_status = 0; - port_direction = 2 - }, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/shutters{ - id = "traumalobby"; - name = "Lobby" +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15; + dir = 2 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/aft) +/turf/template_noop, +/area/template_noop) "CX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 @@ -1161,6 +1159,19 @@ /obj/machinery/photocopier, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/aft) +"EW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "Fx" = ( /obj/structure/sign/poster/contraband/c20r, /turf/closed/wall/r_wall, @@ -1172,13 +1183,11 @@ /obj/effect/turf_decal/trimline/opaque/orange/filled/line{ dir = 4 }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) "FE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/rack, /obj/item/gun/energy/e_gun, /obj/item/gun/energy/e_gun, @@ -1194,10 +1203,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plating, /area/ship/maintenance/port) "Go" = ( @@ -1209,6 +1215,9 @@ }, /obj/structure/table/reinforced, /obj/machinery/recharger, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/dark, /area/ship/security) "Gs" = ( @@ -1220,6 +1229,7 @@ /area/ship/maintenance/starboard) "GP" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Starboard Engines" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1241,25 +1251,21 @@ /area/ship/maintenance/starboard) "Hk" = ( /obj/structure/table/reinforced, -/obj/item/gun/ballistic/automatic/smg/c20r/toy/unrestricted, -/obj/item/ammo_box/magazine/toy/smg, -/obj/item/ammo_box/magazine/toy/smg, -/obj/item/ammo_box/magazine/toy/smg, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 4 + dir = 4; + name = "warningr" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech, /area/ship/security/range) "Hl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, +/obj/machinery/light/directional/north, +/obj/item/target, +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/security/range) "Hq" = ( /obj/structure/window/reinforced{ @@ -1274,6 +1280,7 @@ /obj/structure/bed, /obj/structure/curtain/bounty, /obj/item/bedsheet/captain, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/dark, /area/ship/bridge) "HF" = ( @@ -1298,9 +1305,6 @@ /turf/open/floor/plasteel/dark, /area/ship/security/range) "IE" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ icon_state = "1-2" @@ -1327,10 +1331,7 @@ /obj/machinery/power/terminal, /obj/structure/cable/yellow, /obj/item/wrench/crescent, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -25 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plating, /area/ship/maintenance/port) "Jn" = ( @@ -1343,7 +1344,8 @@ "JA" = ( /obj/machinery/door/poddoor/preopen{ id = "traumawindows"; - name = "Window Blast Door" + name = "Window Blast Door"; + dir = 4 }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -1352,10 +1354,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/industrial/warning, @@ -1364,10 +1363,7 @@ "Ki" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/carpet/nanoweave, /area/ship/crew) "Ko" = ( @@ -1410,35 +1406,14 @@ /turf/open/floor/plating, /area/ship/maintenance/port) "KR" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plasteel/dark, /area/ship/security/armory) -"KW" = ( -/obj/structure/table/reinforced, -/obj/item/gun/ballistic/automatic/hmg/l6_saw/toy/unrestricted, -/obj/item/ammo_box/magazine/toy/m762, -/obj/item/ammo_box/magazine/toy/m762, -/obj/item/ammo_box/magazine/toy/m762, -/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security/range) "Lh" = ( /obj/item/stack/sheet/mineral/plasma/twenty, /obj/machinery/atmospherics/components/binary/pump/on/layer2, @@ -1458,14 +1433,16 @@ icon_state = "1-8" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) "Ln" = ( /obj/item/target/alien, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/box/red, +/obj/structure/training_machine, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/security/range) "Lt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1489,6 +1466,9 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/turf_decal/trimline/opaque/red/warning{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/ship/security/range) "LM" = ( @@ -1506,6 +1486,10 @@ /obj/item/ammo_box/magazine/m50, /obj/item/ammo_box/magazine/m50, /obj/effect/turf_decal/box/red, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plasteel/dark, /area/ship/security) "Mm" = ( @@ -1530,11 +1514,8 @@ /area/ship/maintenance/port) "MW" = ( /obj/structure/table, -/obj/machinery/light/small, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, /obj/machinery/cell_charger, /turf/open/floor/carpet/nanoweave, /area/ship/crew) @@ -1578,6 +1559,29 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) +"ND" = ( +/obj/item/ammo_box/magazine/toy/pistol, +/obj/item/ammo_box/magazine/toy/pistol, +/obj/item/ammo_box/magazine/toy/pistol, +/obj/structure/closet/wall/red{ + dir = 8; + pixel_x = 28; + name = "foam gun cabinet" + }, +/obj/item/gun/ballistic/automatic/toy/pistol/unrestricted, +/obj/item/gun/ballistic/automatic/hmg/l6_saw/toy/unrestricted, +/obj/item/ammo_box/magazine/toy/m762, +/obj/item/ammo_box/magazine/toy/m762, +/obj/item/ammo_box/magazine/toy/m762, +/obj/item/gun/ballistic/automatic/smg/c20r/toy/unrestricted, +/obj/item/ammo_box/magazine/toy/smg, +/obj/item/ammo_box/magazine/toy/smg, +/obj/item/ammo_box/magazine/toy/smg, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/gun/ballistic/shotgun/toy/unrestricted, +/turf/open/floor/plasteel/dark, +/area/ship/security/range) "Ob" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 1 @@ -1594,23 +1598,20 @@ /turf/open/floor/plating, /area/ship/maintenance/starboard) "OK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +/obj/machinery/light/directional/south, +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/machinery/light, /turf/open/floor/plasteel/dark, /area/ship/security/range) "Po" = ( /obj/machinery/door/poddoor/preopen{ id = "traumawindows"; - name = "Window Blast Door" + name = "Window Blast Door"; + dir = 4 }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -1623,10 +1624,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/trimline/opaque/orange/filled/line{ dir = 8 }, @@ -1635,6 +1633,10 @@ "Ps" = ( /obj/item/stack/sheet/mineral/plasma/twenty, /obj/machinery/atmospherics/components/binary/pump/on/layer2, +/obj/effect/turf_decal/number/two{ + dir = 4 + }, +/obj/effect/turf_decal/no, /turf/open/floor/plating, /area/ship/maintenance/starboard) "PG" = ( @@ -1648,18 +1650,15 @@ icon_state = "4-8" }, /obj/structure/table/reinforced, -/obj/item/gun/ballistic/shotgun/toy/unrestricted, -/obj/item/ammo_box/foambox, -/obj/item/ammo_box/foambox, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 4 + dir = 4; + name = "warningr" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech, /area/ship/security/range) "PH" = ( /obj/machinery/door/poddoor/preopen{ @@ -1683,13 +1682,12 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ship/storage) "Qp" = ( /obj/machinery/vending/snack/random, +/obj/machinery/light/directional/west, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/aft) "Qq" = ( @@ -1703,15 +1701,15 @@ dir = 4 }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 4 + dir = 4; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) "QU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -1721,10 +1719,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/industrial/warning, @@ -1732,6 +1727,7 @@ /area/ship/maintenance/starboard) "Rh" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Port Engines" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1757,14 +1753,17 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, /obj/structure/cable{ icon_state = "2-4" }, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) @@ -1776,6 +1775,12 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/aft) +"Sa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) "Sc" = ( /obj/structure/chair, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1784,22 +1789,18 @@ /turf/open/floor/carpet/nanoweave, /area/ship/crew) "Sy" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ship/security) "SH" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/security/range) "SI" = ( /obj/structure/bed, /obj/structure/curtain/bounty, /obj/item/bedsheet/hos, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/dark, /area/ship/bridge) "SP" = ( @@ -1809,7 +1810,8 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, /area/ship/storage) "SR" = ( @@ -1828,14 +1830,9 @@ /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/aft) "Tt" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/filingcabinet/medical, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/aft) "Tx" = ( @@ -1878,19 +1875,13 @@ icon_state = "4-8" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 4 + dir = 4; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) "UC" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/trimline/opaque/orange/filled/line{ dir = 4 }, @@ -1924,46 +1915,17 @@ /turf/open/floor/carpet/nanoweave, /area/ship/crew) "UX" = ( -/obj/item/gun/ballistic/automatic/smg/vector{ - spawnwithmagazine = 0 - }, -/obj/item/ammo_box/magazine/smgm9mm/rubbershot, -/obj/item/ammo_box/magazine/smgm9mm/rubbershot, -/obj/item/ammo_box/magazine/co9mm{ - ammo_type = /obj/item/ammo_casing/c9mm/rubbershot; - 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/rubbershot; - name = "Commander magazine (Rubbershot 9mm)" - }, -/obj/item/ammo_box/magazine/co9mm{ - ammo_type = /obj/item/ammo_casing/c9mm/rubbershot; - name = "Commander magazine (Rubbershot 9mm)" - }, -/obj/item/ammo_box/magazine/co9mm{ - ammo_type = /obj/item/ammo_casing/c9mm/ap; - name = "Commander magazine (AP 9mm)" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/sign/poster/contraband/c20r{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/wall{ - dir = 4; - icon_state = "sec_wall"; - name = "firearms locker"; - pixel_x = -28; - req_access_txt = "5" +/obj/machinery/door/poddoor/preopen{ + id = "traumawindows"; + name = "Window Blast Door" }, -/obj/item/ammo_box/magazine/co9mm{ - ammo_type = /obj/item/ammo_casing/c9mm/rubbershot; - name = "Commander magazine (Rubbershot 9mm)" +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/mobile{ + launch_status = 0; + dir = 2 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) +/turf/open/floor/plating, +/area/ship/bridge) "Vq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1980,13 +1942,19 @@ /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/aft) "Vs" = ( -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = -25 - }, +/obj/item/radio/intercom/wideband/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 }, +/obj/machinery/button/door{ + dir = 1; + id = "htb"; + name = "Door Bolt"; + normaldoorcontrol = 1; + pixel_x = -15; + pixel_y = -22; + specialfunctions = 4 + }, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) "Vu" = ( @@ -2010,8 +1978,8 @@ /turf/open/floor/plating, /area/ship/maintenance/starboard) "VU" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 8 +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 10 }, /turf/open/floor/plasteel/dark, /area/ship/security/range) @@ -2026,14 +1994,15 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + id_tag = "htb" }, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) "Wd" = ( /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 4 + dir = 4; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) @@ -2046,8 +2015,8 @@ icon_state = "1-2" }, /obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - name = "warningr"; - dir = 8 + dir = 8; + name = "warningr" }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/fore) @@ -2074,6 +2043,7 @@ /area/ship/storage) "Xj" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Starboard Engines" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2094,11 +2064,7 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "Xs" = ( -/obj/machinery/light/small, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -25 - }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) "XW" = ( @@ -2114,6 +2080,9 @@ /obj/structure/cable{ icon_state = "2-4" }, +/obj/effect/turf_decal/trimline/opaque/red/filled/corner{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/ship/security/range) "Yk" = ( @@ -2125,8 +2094,18 @@ /area/ship/crew) "Yn" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "traumawindows"; + name = "Window Blast Door" + }, /turf/open/floor/plating, /area/ship/bridge) +"Yo" = ( +/obj/effect/turf_decal/trimline/opaque/red/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/range) "Yv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -2138,14 +2117,14 @@ /turf/open/floor/plasteel/dark, /area/ship/security) "YI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/firealarm/directional/east, +/obj/structure/sign/poster/contraband/c20r{ + pixel_y = 32 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/aft) +/turf/open/floor/carpet/nanoweave, +/area/ship/bridge) "YK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -2155,13 +2134,11 @@ /obj/structure/cable{ icon_state = "1-4" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ dir = 1 }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/stairs/left, /area/ship/hallway/fore) "YM" = ( @@ -2171,14 +2148,15 @@ /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/trimline/opaque/red/filled/line{ + dir = 4 + }, +/obj/machinery/door/window/eastleft, +/turf/open/floor/plasteel/tech, /area/ship/security) "ZO" = ( /obj/machinery/vending/cola/random, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/directional/east, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/aft) @@ -2210,6 +2188,7 @@ fp fp UG UG +UG "} (2,1,1) = {" UG @@ -2239,6 +2218,7 @@ Kh Ny Jn UG +UG "} (3,1,1) = {" UG @@ -2268,6 +2248,7 @@ Gm KD dR Jn +UG "} (4,1,1) = {" UG @@ -2278,7 +2259,7 @@ UG Uc Uc mG -VU +cD VU hq Uc @@ -2297,6 +2278,7 @@ fp fp fp fp +UG "} (5,1,1) = {" UG @@ -2306,7 +2288,7 @@ nu nu Xh Xh -VU +zo SR Yb hT @@ -2326,6 +2308,7 @@ fp UG UG UG +UG "} (6,1,1) = {" UG @@ -2335,10 +2318,10 @@ Hr nu SP iJ -zo +Yo ed Lu -zo +eG Uc fT LM @@ -2355,22 +2338,23 @@ fp fp UG UG +UG "} (7,1,1) = {" -bX -bX +nu +nu uk UJ nu Qe oX -KW +Hk Hk PG aT Uc Vu -Vu +Sa DU lj fn @@ -2384,6 +2368,7 @@ Fx pa gL gL +UG "} (8,1,1) = {" bX @@ -2393,7 +2378,7 @@ Xs nu qd oX -zo +ND zo HU SH @@ -2409,10 +2394,11 @@ HP ve tE go -YI +Ja Ja Qp gL +UG "} (9,1,1) = {" bX @@ -2422,7 +2408,7 @@ Vs nu Ko Xh -zE +Uc iA bu OK @@ -2442,9 +2428,10 @@ xa ur ur gO +UG "} (10,1,1) = {" -bX +UX hF pK eJ @@ -2470,6 +2457,7 @@ go ur ur ur +gO BN "} (11,1,1) = {" @@ -2500,6 +2488,7 @@ IG ur ur gO +UG "} (12,1,1) = {" bX @@ -2529,14 +2518,15 @@ tT uW ZO gL +UG "} (13,1,1) = {" -bX -bX -zR +nu +nu +YI Nq nu -UX +zR kC Ki QU @@ -2558,6 +2548,7 @@ Mm gL gL gL +UG "} (14,1,1) = {" UG @@ -2587,6 +2578,7 @@ UO UO UG UG +UG "} (15,1,1) = {" UG @@ -2611,11 +2603,12 @@ UG UG UO UO -Lt +EW UO UG UG UG +UG "} (16,1,1) = {" UG @@ -2645,6 +2638,7 @@ UO UO UO UO +UG "} (17,1,1) = {" UG @@ -2674,6 +2668,7 @@ ir Hq VM Dj +UG "} (18,1,1) = {" UG @@ -2684,7 +2679,7 @@ UG UG Ev Ev -PH +aR Ev Ev UG @@ -2703,6 +2698,7 @@ QY Ob Dj UG +UG "} (19,1,1) = {" UG @@ -2732,4 +2728,5 @@ UO UO UG UG +UG "} diff --git a/_maps/shuttles/shiptest/independent_hightide.dmm b/_maps/shuttles/shiptest/independent_hightide.dmm index 1cfb3f16cb56..beaa499f7f0d 100644 --- a/_maps/shuttles/shiptest/independent_hightide.dmm +++ b/_maps/shuttles/shiptest/independent_hightide.dmm @@ -1,7 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aK" = ( -/obj/item/wrench/old, -/obj/structure/rack, +/obj/machinery/grill/unwrenched, /turf/open/floor/plating, /area/ship/maintenance/starboard) "aN" = ( @@ -34,7 +33,8 @@ /area/ship/maintenance/central) "bQ" = ( /obj/machinery/door/airlock/maintenance_hatch{ - welded = 1 + welded = 1; + dir = 4 }, /obj/structure/barricade/wooden/crude, /obj/effect/mapping_helpers/airlock/abandoned, @@ -148,7 +148,9 @@ /turf/open/floor/plating, /area/ship/maintenance/aft) "eD" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/structure/barricade/wooden/crude, /obj/structure/cable{ icon_state = "4-8" @@ -219,12 +221,10 @@ /turf/open/floor/plating, /area/ship/cargo) "iR" = ( -/obj/machinery/cryopod{ - close_state = "crate"; - dir = 8; +/obj/machinery/cryopod/poor{ + dir = 4; icon = 'icons/obj/crates.dmi'; - icon_state = "crateopen"; - open_state = "crateopen" + icon_state = "crateopen" }, /turf/open/floor/plating, /area/ship/maintenance/fore) @@ -237,7 +237,9 @@ /turf/open/floor/plating, /area/ship/maintenance/fore) "jr" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 }, @@ -277,7 +279,8 @@ /area/ship/cargo) "ko" = ( /obj/machinery/door/airlock/maintenance_hatch{ - name = "Wrench Storage" + name = "Wrench Storage"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -321,7 +324,8 @@ /area/ship/maintenance/fore) "lW" = ( /obj/machinery/door/airlock/maintenance_hatch{ - welded = 1 + welded = 1; + dir = 4 }, /obj/structure/barricade/wooden/crude, /obj/effect/mapping_helpers/airlock/abandoned, @@ -372,7 +376,9 @@ /turf/open/floor/plating, /area/ship/maintenance/central) "nB" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -392,10 +398,7 @@ /turf/open/floor/plating, /area/ship/maintenance/aft) "ob" = ( -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = -25 - }, +/obj/item/radio/intercom/wideband/directional/south, /turf/open/floor/plating, /area/ship/maintenance/fore) "of" = ( @@ -405,7 +408,9 @@ /turf/closed/wall/r_wall, /area/ship/maintenance/starboard) "oY" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/docking_port/mobile{ dir = 8; launch_status = 0; @@ -451,11 +456,11 @@ /obj/item/storage/box/drinkingglasses, /obj/item/storage/cans/sixbeer, /obj/item/storage/cans/sixbeer, -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-2" }, /obj/effect/decal/cleanable/glass, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/ship/maintenance/aft) "pZ" = ( @@ -481,10 +486,7 @@ /area/ship/maintenance/port) "qE" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -23 - }, +/obj/machinery/computer/cryopod/directional/south, /turf/open/floor/plating, /area/ship/maintenance/fore) "qO" = ( @@ -613,7 +615,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/ship/maintenance/central) "wK" = ( @@ -644,7 +646,9 @@ /turf/open/floor/plating, /area/ship/maintenance/central) "xh" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -671,10 +675,10 @@ /area/ship/maintenance/starboard) "xA" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ icon_state = "0-2" }, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/ship/maintenance/starboard) "xI" = ( @@ -741,7 +745,9 @@ /turf/open/floor/plating, /area/ship/maintenance/central) "At" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 }, @@ -783,6 +789,9 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"Cm" = ( +/turf/open/floor/plating, +/area/template_noop) "CO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -803,7 +812,9 @@ /turf/open/floor/plating, /area/ship/cargo) "DP" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -925,12 +936,10 @@ "KL" = ( /obj/item/trash/semki, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/cryopod{ - close_state = "crate"; - dir = 8; +/obj/machinery/cryopod/poor{ + dir = 4; icon = 'icons/obj/crates.dmi'; - icon_state = "crateopen"; - open_state = "crateopen" + icon_state = "crateopen" }, /turf/open/floor/plating, /area/ship/maintenance/fore) @@ -1011,6 +1020,15 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"ND" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15; + dir = 8 + }, +/turf/template_noop, +/area/template_noop) "NI" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -1020,12 +1038,10 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/south{ - dir = 1 - }, /obj/effect/decal/cleanable/glass, /obj/item/trash/cheesie, /obj/item/areaeditor/shuttle, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/ship/maintenance/fore) "NY" = ( @@ -1078,7 +1094,8 @@ /area/ship/maintenance/port) "QC" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/grill/unwrenched, +/obj/item/wrench/old, +/obj/structure/rack, /turf/open/floor/plating, /area/ship/maintenance/starboard) "Rc" = ( @@ -1104,13 +1121,13 @@ /obj/item/storage/bag/ore, /obj/item/mining_scanner, /obj/item/shovel/spoon, -/obj/machinery/light, /obj/item/shovel/spoon, /obj/item/mining_scanner, /obj/item/storage/bag/ore, /obj/item/pickaxe/emergency, /obj/effect/spawner/lootdrop/maintenance/eight, /obj/effect/decal/cleanable/glass, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ship/cargo) "RI" = ( @@ -1192,7 +1209,6 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 }, @@ -1315,7 +1331,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/ship/maintenance/port) "Yc" = ( @@ -1352,7 +1368,38 @@ cg cg cg cg +ND +cg +cg +cg +cg +cg +cg cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +"} +(2,1,1) = {" +cg +cg +cg +cg +cg +cg +Cm fh fO fO @@ -1376,7 +1423,7 @@ cg cg cg "} -(2,1,1) = {" +(3,1,1) = {" cg cg cg @@ -1407,7 +1454,7 @@ cg cg cg "} -(3,1,1) = {" +(4,1,1) = {" cg cg cg @@ -1438,7 +1485,7 @@ cg cg cg "} -(4,1,1) = {" +(5,1,1) = {" LY Rd Rd @@ -1469,7 +1516,7 @@ KU nT nT "} -(5,1,1) = {" +(6,1,1) = {" Rd pX ob @@ -1500,7 +1547,7 @@ rl uE VA "} -(6,1,1) = {" +(7,1,1) = {" Rd pZ SA @@ -1531,7 +1578,7 @@ VK xf VA "} -(7,1,1) = {" +(8,1,1) = {" Rd nK LV @@ -1562,7 +1609,7 @@ nB KU KU "} -(8,1,1) = {" +(9,1,1) = {" LY Rd Rd @@ -1593,7 +1640,7 @@ Wr KU cg "} -(9,1,1) = {" +(10,1,1) = {" cg cg VC @@ -1624,7 +1671,7 @@ OG KU cg "} -(10,1,1) = {" +(11,1,1) = {" cg cg cg @@ -1655,7 +1702,7 @@ nB nT cg "} -(11,1,1) = {" +(12,1,1) = {" cg cg cg @@ -1686,7 +1733,7 @@ PS nT nT "} -(12,1,1) = {" +(13,1,1) = {" cg cg cg @@ -1717,7 +1764,7 @@ PC uE VA "} -(13,1,1) = {" +(14,1,1) = {" cg cg cg @@ -1748,7 +1795,7 @@ Zi Mj VA "} -(14,1,1) = {" +(15,1,1) = {" cg cg xq @@ -1779,7 +1826,7 @@ KU KU nT "} -(15,1,1) = {" +(16,1,1) = {" cg cg TV @@ -1810,7 +1857,7 @@ cg cg cg "} -(16,1,1) = {" +(17,1,1) = {" cg cg TV @@ -1841,7 +1888,7 @@ cg cg cg "} -(17,1,1) = {" +(18,1,1) = {" cg cg Il @@ -1872,7 +1919,7 @@ cg cg cg "} -(18,1,1) = {" +(19,1,1) = {" cg cg cg diff --git a/_maps/shuttles/shiptest/independent_kilo.dmm b/_maps/shuttles/shiptest/independent_kilo.dmm index 762e036b5512..8c99232b6954 100644 --- a/_maps/shuttles/shiptest/independent_kilo.dmm +++ b/_maps/shuttles/shiptest/independent_kilo.dmm @@ -41,7 +41,8 @@ }, /obj/machinery/door/poddoor/shutters{ id = "kiloengine"; - name = "Engine Shutters" + name = "Engine Shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering/engine) @@ -115,11 +116,12 @@ desc = "Used to grind things up into raw materials and liquids."; pixel_y = 5 }, -/obj/machinery/light, /obj/effect/turf_decal/corner/opaque/red, /obj/effect/turf_decal/corner/opaque/red{ dir = 1 }, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/white, /area/ship/crew/canteen/kitchen) "bg" = ( @@ -147,22 +149,14 @@ pixel_y = -8; specialfunctions = 4 }, -/obj/structure/sign/warning/xeno_mining{ - pixel_y = 32 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, /obj/machinery/advanced_airlock_controller{ pixel_x = -28; pixel_y = 3 }, +/obj/machinery/light/small/directional/north, /turf/open/floor/mineral/plastitanium, /area/ship/cargo) "bn" = ( @@ -274,7 +268,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor{ id = "whiteship_bridge"; - name = "Garage DoorCockpit Emergency Blast Door" + name = "Garage DoorCockpit Emergency Blast Door"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -296,6 +291,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, +/obj/effect/turf_decal/ntspaceworks_small/left, /turf/open/floor/plating, /area/ship/engineering/engine) "bT" = ( @@ -432,21 +428,15 @@ "ci" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, /obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/machinery/airalarm/directional/south, /turf/open/floor/mineral/plastitanium, /area/ship/cargo) "cj" = ( /obj/structure/tank_dispenser/oxygen, /obj/effect/turf_decal/industrial/hatch/yellow, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/mineral/plastitanium, /area/ship/cargo) "ck" = ( @@ -464,15 +454,13 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, /obj/effect/turf_decal/industrial/warning{ dir = 6 }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch{ + pixel_y = -20; + dir = 1 }, /turf/open/floor/plating, /area/ship/engineering/engine) @@ -480,20 +468,16 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light_switch{ - pixel_y = -23; - dir = 1 - }, -/obj/machinery/light/small/built, +/obj/machinery/light/small/built/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plating, /area/ship/engineering/engine) "cr" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light, /obj/machinery/power/port_gen/pacman{ anchored = 1 }, @@ -501,6 +485,7 @@ /obj/effect/turf_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/ship/engineering/engine) "cw" = ( @@ -551,8 +536,11 @@ /obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, -/obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, /turf/open/floor/mineral/plastitanium, /area/ship/cargo) "cK" = ( @@ -573,13 +561,11 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/light{ - dir = 4 - }, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, /obj/machinery/meter/atmos, +/obj/machinery/light/directional/east, /turf/open/floor/plating, /area/ship/engineering/engine) "cP" = ( @@ -609,9 +595,26 @@ /turf/open/floor/mineral/plastitanium, /area/ship/crew/canteen/kitchen) "cW" = ( -/obj/machinery/computer/security/telescreen/entertainment, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew) +/obj/machinery/power/smes/shuttle{ + dir = 4 + }, +/obj/machinery/door/window/westright{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced/spawner/north, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "kiloengine"; + name = "Engine Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "cY" = ( /obj/effect/decal/cleanable/greenglow, /obj/effect/decal/cleanable/dirt, @@ -651,18 +654,12 @@ color = "#c45c57"; dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/light/small{ - dir = 4 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/machinery/status_display{ pixel_y = 32; pixel_x = -32 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/carpet, /area/ship/crew) "dc" = ( @@ -674,7 +671,7 @@ pixel_y = 5 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/mineral/plastitanium, /area/ship/crew/canteen/kitchen) "de" = ( @@ -708,6 +705,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 5 }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating, /area/ship/engineering/engine) "eN" = ( @@ -767,7 +765,8 @@ }, /obj/machinery/door/poddoor/shutters{ id = "kiloengine"; - name = "Engine Shutters" + name = "Engine Shutters"; + dir = 8 }, /turf/open/floor/plating, /area/ship/engineering/engine) @@ -789,6 +788,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 }, +/obj/effect/turf_decal/ntspaceworks_small, /turf/open/floor/plating, /area/ship/engineering/engine) "gp" = ( @@ -816,15 +816,14 @@ }, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/ntspaceworks_small/right, /turf/open/floor/plating, /area/ship/engineering/engine) "gC" = ( @@ -866,10 +865,10 @@ pixel_y = 18 }, /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/power/apc/auto_name/east, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/mineral/titanium/yellow, /area/ship/cargo) "hR" = ( @@ -924,10 +923,7 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, -/obj/machinery/firealarm{ - pixel_y = -26; - dir = 1 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plating, /area/ship/cargo) "io" = ( @@ -948,9 +944,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, /obj/machinery/conveyor_switch/oneway{ id = "NTMSLoad"; name = "Off Ramp"; @@ -962,6 +955,7 @@ name = "On Ramp"; pixel_x = 4 }, +/obj/machinery/newscaster/directional/north, /turf/open/floor/plating, /area/ship/cargo) "iT" = ( @@ -994,10 +988,6 @@ /obj/effect/turf_decal/industrial/warning{ dir = 9 }, -/obj/machinery/status_display{ - pixel_x = -32; - pixel_y = 32 - }, /turf/open/floor/mineral/titanium/blue, /area/ship/bridge) "jU" = ( @@ -1007,12 +997,10 @@ /obj/item/stack/cable_coil, /obj/item/stock_parts/cell/high, /obj/effect/decal/cleanable/blood/old, -/obj/machinery/light{ - dir = 1 - }, /obj/effect/turf_decal/industrial/warning{ dir = 5 }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ship/engineering/engine) "kb" = ( @@ -1039,9 +1027,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/titanium/yellow, /area/ship/cargo) "mz" = ( @@ -1164,7 +1150,8 @@ dir = 4 }, /obj/machinery/door/airlock/external{ - name = "Mining Airlock" + name = "Mining Airlock"; + dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/ship/cargo) @@ -1195,14 +1182,6 @@ id = "kilocargo"; name = "NTMS-037 Bay Blast Door" }, -/obj/docking_port/mobile{ - callTime = 250; - dir = 2; - launch_status = 0; - name = "Mining Shuttle"; - port_direction = 8; - preferred_direction = 4 - }, /turf/open/floor/mineral/plastitanium, /area/ship/cargo) "rO" = ( @@ -1241,7 +1220,6 @@ /area/ship/crew/canteen/kitchen) "sG" = ( /obj/effect/decal/cleanable/blood/old, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-4" }, @@ -1251,20 +1229,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel/showroomfloor, /area/ship/crew) "sW" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, /obj/machinery/computer/cargo/express{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/mineral/plastitanium, /area/ship/bridge) "vv" = ( @@ -1278,6 +1251,14 @@ }, /turf/open/floor/plating, /area/ship/bridge) +"vU" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15 + }, +/turf/template_noop, +/area/template_noop) "wc" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/shuttle{ @@ -1323,7 +1304,8 @@ "xe" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/external{ - name = "Mining Airlock" + name = "Mining Airlock"; + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, @@ -1391,15 +1373,11 @@ }, /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plating, /area/ship/cargo) "yF" = ( @@ -1432,10 +1410,7 @@ pixel_x = 12; pixel_y = 6 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/mineral/plastitanium, /area/ship/crew/canteen/kitchen) "zH" = ( @@ -1453,7 +1428,8 @@ "AB" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/external{ - name = "Mining Airlock" + name = "Mining Airlock"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -1530,6 +1506,7 @@ "Bm" = ( /obj/structure/bed, /obj/item/bedsheet/captain, +/obj/machinery/firealarm/directional/west, /turf/open/floor/wood, /area/ship/crew) "Bu" = ( @@ -1553,7 +1530,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor{ id = "whiteship_bridge"; - name = "Garage DoorCockpit Emergency Blast Door" + name = "Garage DoorCockpit Emergency Blast Door"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -1609,9 +1587,7 @@ pixel_x = -9; pixel_y = 4 }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, +/obj/machinery/firealarm/directional/north, /obj/item/areaeditor/shuttle, /turf/open/floor/mineral/plastitanium, /area/ship/bridge) @@ -1620,34 +1596,27 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, -/obj/machinery/light/small{ - dir = 4 - }, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/chair/sofa/corner, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/ship/crew/canteen/kitchen) "EG" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 1 - }, /obj/machinery/cryopod, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/north, +/obj/machinery/computer/cryopod/directional/west, /turf/open/floor/wood, /area/ship/crew) "EU" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/command{ - name = "Ship Control" + name = "Ship Control"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -1682,12 +1651,8 @@ "GM" = ( /obj/structure/table, /obj/machinery/recharger, -/obj/item/radio/intercom/wideband{ - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/item/radio/intercom/wideband/directional/north, +/obj/machinery/light/small/directional/west, /turf/open/floor/mineral/plastitanium, /area/ship/bridge) "HP" = ( @@ -1713,9 +1678,7 @@ /obj/item/wrench, /obj/item/tank/internals/emergency_oxygen, /obj/effect/decal/cleanable/cobweb, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/plastitanium, /area/ship/cargo) "Jf" = ( @@ -1725,17 +1688,11 @@ /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/rack, /obj/item/storage/toolbox/emergency, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, /obj/item/circuitboard/machine/ore_redemption, /obj/effect/turf_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating, /area/ship/cargo) "KB" = ( @@ -1779,9 +1736,7 @@ pixel_x = -8; pixel_y = 8 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/carpet, /area/ship/crew) "La" = ( @@ -1816,18 +1771,31 @@ /turf/open/floor/mineral/plastitanium, /area/ship/cargo) "MI" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew) +/obj/machinery/power/smes/shuttle{ + dir = 4 + }, +/obj/machinery/door/window/westright{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "kiloengine"; + name = "Engine Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "MY" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/turf_decal/trimline/opaque/white/filled/line{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, /obj/item/gun/energy/e_gun/mini, /obj/item/stock_parts/cell/gun/mini, /obj/item/clothing/shoes/workboots, @@ -1842,15 +1810,13 @@ /obj/item/clothing/head/cowboy, /obj/item/clothing/head/cowboy, /obj/item/clothing/head/cowboy, -/obj/machinery/light/small{ - dir = 4 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/mineral/plastitanium, /area/ship/crew) "Ng" = ( @@ -1972,12 +1938,14 @@ /obj/machinery/computer/helm{ dir = 8 }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/plastitanium, /area/ship/bridge) "PS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch{ - pixel_y = -23 + pixel_y = -23; + dir = 1 }, /obj/effect/decal/cleanable/greenglow, /obj/structure/closet/crate/internals, @@ -2009,7 +1977,15 @@ dir = 4 }, /obj/machinery/door/airlock/external{ - name = "Mining Airlock" + name = "Mining Airlock"; + dir = 8 + }, +/obj/docking_port/mobile{ + dir = 4; + launch_status = 0; + name = "Mining Shuttle"; + preferred_direction = 4; + port_direction = 2 }, /turf/open/floor/mineral/plastitanium, /area/ship/cargo) @@ -2037,10 +2013,10 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/north, /obj/effect/turf_decal/industrial/warning{ dir = 9 }, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/mineral/titanium/blue, /area/ship/bridge) "Sx" = ( @@ -2083,7 +2059,8 @@ }, /obj/machinery/door/poddoor/shutters{ id = "kiloengine"; - name = "Engine Shutters" + name = "Engine Shutters"; + dir = 8 }, /turf/open/floor/plating, /area/ship/engineering/engine) @@ -2098,13 +2075,13 @@ /obj/effect/decal/cleanable/blood/old, /obj/effect/turf_decal/industrial/hatch/yellow, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, /obj/effect/turf_decal/industrial/warning{ dir = 2 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/ship/engineering/engine) "TD" = ( @@ -2207,10 +2184,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/greenglow, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -27 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/mineral/titanium/yellow, /area/ship/cargo) "Vd" = ( @@ -2227,7 +2201,7 @@ anchored = 1; dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/computer/security/telescreen{ dir = 1; name = "NTMS-037 Monitor"; @@ -2247,9 +2221,6 @@ /area/ship/crew/canteen/kitchen) "Vx" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/decal/cleanable/greenglow, /obj/structure/toilet{ dir = 4; @@ -2263,13 +2234,9 @@ pixel_x = -11; pixel_y = 18 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/small/broken/directional/east, /turf/open/floor/carpet/blue, /area/ship/crew) "VQ" = ( @@ -2322,10 +2289,6 @@ /obj/effect/turf_decal/trimline/opaque/white/filled/line{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, /obj/effect/decal/cleanable/greenglow, /obj/item/stock_parts/cell/gun/mini, /obj/item/clothing/under/utility, @@ -2343,6 +2306,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/mineral/plastitanium, /area/ship/crew) "Yu" = ( @@ -2361,15 +2325,13 @@ /obj/effect/turf_decal/trimline/opaque/white/filled/line{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, +/obj/machinery/light/small/directional/west, /turf/open/floor/mineral/plastitanium, /area/ship/crew) "YL" = ( @@ -2390,10 +2352,6 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/syndi_cakes, /obj/item/organ/stomach, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, /obj/machinery/light_switch{ dir = 1; pixel_y = 23 @@ -2415,6 +2373,7 @@ (1,1,1) = {" aa aa +aa AQ ak bn @@ -2430,10 +2389,11 @@ aa (2,1,1) = {" aa aa +aa kA ar -Tn -fu +cW +MI kA Tn fu @@ -2445,6 +2405,7 @@ aa (3,1,1) = {" aa aa +aa Jf av bQ @@ -2460,6 +2421,7 @@ aa (4,1,1) = {" aa aa +aa Jf eo fv @@ -2475,6 +2437,7 @@ aa (5,1,1) = {" aa aa +aa Jf Jf gs @@ -2490,6 +2453,7 @@ aa (6,1,1) = {" aa aa +aa Jf cb yd @@ -2505,6 +2469,7 @@ aa (7,1,1) = {" aa aa +aa Ua aS ca @@ -2520,6 +2485,7 @@ aa (8,1,1) = {" aa aa +aa Ua TG cC @@ -2535,6 +2501,7 @@ aa (9,1,1) = {" aa aa +aa Jf jU bU @@ -2550,12 +2517,13 @@ aa (10,1,1) = {" aa aa +aa Jf aJ bV Jf mz -cW +mz mz sG XR @@ -2564,12 +2532,13 @@ aa "} (11,1,1) = {" aa +aa dF cP KM bg yn -MI +mz EG hS YL @@ -2578,6 +2547,7 @@ Ti aa "} (12,1,1) = {" +aa ac ac ac @@ -2593,6 +2563,7 @@ mz aa "} (13,1,1) = {" +aa qv VQ nO @@ -2608,6 +2579,7 @@ bA Vq "} (14,1,1) = {" +vU rq iT de @@ -2623,6 +2595,7 @@ Sx yF "} (15,1,1) = {" +aa Nq NU am @@ -2638,6 +2611,7 @@ zc bA "} (16,1,1) = {" +aa ac ac ac @@ -2654,6 +2628,7 @@ yF "} (17,1,1) = {" aa +aa ac Ih ac @@ -2669,6 +2644,7 @@ bA "} (18,1,1) = {" aa +aa La hR Va @@ -2684,6 +2660,7 @@ vv "} (19,1,1) = {" aa +aa La Mj ay @@ -2699,6 +2676,7 @@ bF "} (20,1,1) = {" aa +aa ac jx pV @@ -2710,10 +2688,11 @@ nd bH Xd Uv -vv +bF "} (21,1,1) = {" aa +aa ac hN jl @@ -2729,6 +2708,7 @@ Bu "} (22,1,1) = {" aa +aa ac ac AB @@ -2744,6 +2724,7 @@ aa "} (23,1,1) = {" aa +aa ac bm KB @@ -2752,13 +2733,14 @@ cJ bF bP bF -bP +bF Bu aa aa "} (24,1,1) = {" aa +aa PW ac Qw diff --git a/_maps/shuttles/shiptest/independent_lagoon.dmm b/_maps/shuttles/shiptest/independent_lagoon.dmm index b5498e4316e3..f3a88222c07c 100644 --- a/_maps/shuttles/shiptest/independent_lagoon.dmm +++ b/_maps/shuttles/shiptest/independent_lagoon.dmm @@ -1,9 +1,5 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ad" = ( -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -22 - }, /obj/structure/cable{ icon_state = "2-4" }, @@ -15,6 +11,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 10 }, +/obj/item/radio/intercom/wideband/directional/west, /turf/open/floor/wood, /area/ship/bridge) "ae" = ( @@ -31,16 +28,9 @@ /obj/item/clothing/accessory/waistcoat, /obj/item/storage/firstaid/toxin, /obj/item/clothing/suit/armor/vest/alt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/machinery/airalarm/directional/east, /turf/open/floor/carpet/black, /area/ship/crew/canteen/kitchen) "al" = ( @@ -159,15 +149,11 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/wood, /area/ship/crew/dorm) "aN" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/pod/light, /area/ship/hallway/port) "aO" = ( @@ -196,23 +182,16 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, /obj/effect/turf_decal/siding/blue{ dir = 8 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/white, /area/ship/medical) "bd" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 8 }, @@ -220,6 +199,7 @@ /obj/effect/turf_decal/siding/blue{ dir = 8 }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/white, /area/ship/medical) "bh" = ( @@ -276,7 +256,7 @@ /turf/open/floor/plasteel, /area/ship/external) "bt" = ( -/obj/machinery/computer/cargo/express{ +/obj/machinery/computer/cargo/express/retro{ dir = 4 }, /turf/open/floor/plasteel/patterned/cargo_one, @@ -284,7 +264,8 @@ "bv" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ - id = "cruise_checkpoint" + id = "cruise_checkpoint"; + dir = 8 }, /obj/item/folder/yellow, /turf/open/floor/plasteel/dark, @@ -299,7 +280,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/closet/secure_closet/freezer/kitchen/wall{ dir = 4; - pixel_x = -32 + pixel_x = -28 }, /obj/item/reagent_containers/food/snacks/meat/slab, /obj/item/reagent_containers/food/snacks/meat/slab, @@ -331,13 +312,10 @@ /obj/structure/chair/stool/bar{ dir = 1 }, -/obj/machinery/computer/helm/viewscreen{ - dir = 8; - pixel_x = 28 - }, /obj/effect/turf_decal/siding/wood{ dir = 5 }, +/obj/machinery/computer/helm/viewscreen/directional/east, /turf/open/floor/wood, /area/ship/crew/canteen) "bL" = ( @@ -369,19 +347,17 @@ /turf/open/floor/plasteel, /area/ship/hallway/starboard) "bR" = ( -/obj/machinery/computer/helm/viewscreen{ - dir = 8; - pixel_x = 28 - }, /obj/structure/table/reinforced, /obj/item/detective_scanner, +/obj/machinery/computer/helm/viewscreen/directional/east, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) "bV" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "cruisebridgewindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 8 }, /turf/open/floor/plating, /area/ship/bridge) @@ -412,7 +388,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/closet/wall{ dir = 4; - pixel_x = -32 + pixel_x = -28 }, /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -509,10 +485,7 @@ /area/ship/hallway/central) "cR" = ( /obj/machinery/computer/arcade/battle, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/light/colour_cycle/dancefloor_b, /area/ship/storage) "cS" = ( @@ -522,7 +495,8 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/door/poddoor/shutters/preopen{ - id = "cruisetegwindows" + id = "cruisetegwindows"; + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) @@ -538,9 +512,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 9 }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, +/obj/machinery/newscaster/directional/north, /turf/open/floor/wood, /area/ship/crew/library) "df" = ( @@ -572,19 +544,13 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/wood, /area/ship/crew/dorm) "dr" = ( /obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, /obj/machinery/reagentgrinder, +/obj/machinery/firealarm/directional/east, /turf/open/floor/carpet/black, /area/ship/crew/canteen/kitchen) "dt" = ( @@ -607,9 +573,7 @@ /obj/item/clothing/suit/ianshirt, /obj/item/spacecash/bundle/c200, /obj/item/clothing/under/suit/blacktwopiece, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/siding/wood{ dir = 6 }, @@ -679,9 +643,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/stairs, /area/ship/bridge) "ef" = ( @@ -775,20 +737,19 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/newscaster/directional/north, /turf/open/floor/plasteel/dark, /area/ship/security) "eS" = ( /obj/structure/reagent_dispensers/watertank, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ship/engineering) "eT" = ( -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ icon_state = "0-2" }, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/carpet/black, /area/ship/crew/office) "eX" = ( @@ -804,10 +765,10 @@ /turf/open/floor/plating, /area/ship/engineering) "fc" = ( -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-2" }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) "fd" = ( @@ -827,17 +788,16 @@ pixel_y = 4 }, /obj/machinery/door/poddoor/shutters/preopen{ - id = "cruise_checkpoint" + id = "cruise_checkpoint"; + dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) "fq" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 8 }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/fore) "fs" = ( @@ -847,7 +807,6 @@ /turf/open/floor/grass, /area/ship/hallway/central) "fu" = ( -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -860,7 +819,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "cruisebridgewindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ship/medical) @@ -890,10 +850,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/cable{ icon_state = "1-2" }, @@ -925,6 +882,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/canteen) "fM" = ( @@ -947,7 +905,9 @@ /turf/open/floor/wood, /area/ship/crew/dorm) "fX" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -978,9 +938,7 @@ "gf" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/turf_decal/weather/sand, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/grass, /area/ship/hallway/central) "gn" = ( @@ -988,7 +946,6 @@ dir = 8; pixel_x = -1 }, -/obj/machinery/power/apc/auto_name/south, /obj/structure/cable, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -999,16 +956,13 @@ /obj/structure/chair/office{ dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/ship/bridge) "go" = ( /obj/structure/sink/kitchen{ pixel_y = 28 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, /obj/effect/turf_decal/corner/opaque/white/diagonal, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) @@ -1028,9 +982,7 @@ /obj/effect/turf_decal/corner/opaque/lightgrey/border{ dir = 5 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/pod/dark, /area/ship/hallway/fore) "gI" = ( @@ -1123,10 +1075,7 @@ /area/ship/external) "hm" = ( /obj/machinery/atmospherics/pipe/layer_manifold, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/industrial/radiation/corner{ dir = 1 }, @@ -1232,6 +1181,7 @@ /obj/item/clothing/shoes/clown_shoes, /obj/item/megaphone/clown, /obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter, +/obj/item/radio/intercom/directional/south, /turf/open/floor/carpet/nanoweave/purple, /area/ship/crew/canteen) "hW" = ( @@ -1244,9 +1194,6 @@ "hY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light_switch{ - pixel_x = -25 - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -1297,9 +1244,7 @@ /area/ship/hallway/fore) "id" = ( /obj/effect/turf_decal/weather/sand, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/grass, /area/ship/hallway/central) "ie" = ( @@ -1308,7 +1253,7 @@ }, /obj/structure/closet/firecloset/wall{ dir = 4; - pixel_x = -32 + pixel_x = -28 }, /obj/structure/cable{ icon_state = "1-4" @@ -1332,10 +1277,8 @@ /turf/closed/wall/mineral/titanium, /area/ship/crew/janitor) "io" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/structure/displaycase/trophy, +/obj/machinery/light/directional/west, /turf/open/floor/carpet/black, /area/ship/crew/library) "ip" = ( @@ -1343,8 +1286,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/light, /obj/effect/turf_decal/corner/opaque/white/border, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/crew) "iq" = ( @@ -1363,7 +1306,8 @@ }, /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters{ - id = "cruisewindows" + id = "cruisewindows"; + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) @@ -1390,9 +1334,9 @@ /turf/open/floor/wood, /area/ship/crew/library) "iK" = ( -/obj/machinery/power/apc/auto_name/south, /obj/structure/cable, /obj/effect/turf_decal/corner/opaque/white/border, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/starboard) "iN" = ( @@ -1428,10 +1372,7 @@ /obj/item/kitchen/rollingpin, /obj/item/reagent_containers/food/condiment/enzyme, /obj/effect/turf_decal/corner/opaque/white/diagonal, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "iS" = ( @@ -1525,11 +1466,11 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "jt" = ( -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-8" }, /obj/machinery/computer/arcade, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/light/colour_cycle/dancefloor_b, /area/ship/storage) "jw" = ( @@ -1537,10 +1478,10 @@ /turf/open/floor/carpet/black, /area/ship/crew/office) "jz" = ( -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-8" }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/carpet/black, /area/ship/crew/library) "jC" = ( @@ -1557,18 +1498,14 @@ /area/ship/hallway/central) "jM" = ( /obj/machinery/libraryscanner, -/obj/machinery/newscaster{ - pixel_x = 30 - }, +/obj/machinery/newscaster/directional/east, /turf/open/floor/carpet/black, /area/ship/crew/library) "jP" = ( /obj/structure/chair/comfy/black{ dir = 8 }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, +/obj/machinery/newscaster/directional/east, /turf/open/floor/carpet/black, /area/ship/crew/office) "jS" = ( @@ -1579,10 +1516,7 @@ /turf/open/floor/wood, /area/ship/crew) "jV" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/carpet/black, /area/ship/crew/library) "kd" = ( @@ -1601,7 +1535,9 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "ke" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -1636,6 +1572,7 @@ /obj/item/reagent_containers/food/condiment/sugar, /obj/item/reagent_containers/food/condiment/sugar, /obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "kk" = ( @@ -1652,28 +1589,26 @@ /turf/open/floor/grass, /area/ship/hallway/aft) "km" = ( -/obj/machinery/light/small, /obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood, /area/ship/crew/canteen) "ko" = ( -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "kq" = ( /obj/machinery/vending/hydronutrients, -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/siding/wood{ dir = 9 }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ship/crew/hydroponics) "ku" = ( @@ -1693,7 +1628,9 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/airlock/wood/glass, +/obj/machinery/door/airlock/wood/glass{ + dir = 4 + }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, @@ -1704,10 +1641,10 @@ /area/ship/hallway/aft) "ky" = ( /obj/structure/closet/athletic_mixed, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-4" }, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel/white, /area/ship/crew/toilet) "kA" = ( @@ -1724,7 +1661,7 @@ /obj/machinery/computer/med_data/laptop{ dir = 1 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/white, /area/ship/medical) "lf" = ( @@ -1748,9 +1685,7 @@ "lm" = ( /obj/vehicle/ridden/janicart, /obj/item/key/janitor, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ship/crew/janitor) "ln" = ( @@ -1765,11 +1700,11 @@ /turf/open/floor/plating, /area/ship/engineering) "lo" = ( -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-8" }, /obj/machinery/photocopier, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) "lx" = ( @@ -1778,7 +1713,8 @@ }, /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters{ - id = "cruiseengwindow" + id = "cruiseengwindow"; + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) @@ -1786,7 +1722,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "cruisebridgewindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, /obj/structure/cable{ icon_state = "0-2" @@ -1805,9 +1742,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, +/obj/machinery/newscaster/directional/west, /turf/open/floor/wood, /area/ship/crew) "lI" = ( @@ -1847,9 +1782,7 @@ /obj/item/clothing/glasses/sunglasses, /obj/item/clothing/gloves/color/evening, /obj/item/spacecash/bundle/c100, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/carpet/black, /area/ship/crew) "lT" = ( @@ -1940,17 +1873,19 @@ /area/ship/hallway/fore) "mx" = ( /obj/machinery/seed_extractor, -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-8" }, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/ship/crew/hydroponics) "mz" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 8 + }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, @@ -2000,7 +1935,7 @@ "mM" = ( /obj/structure/closet/wall/white/med{ dir = 4; - pixel_x = -30 + pixel_x = -28 }, /obj/item/healthanalyzer, /obj/item/clothing/gloves/color/latex/nitrile, @@ -2053,6 +1988,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 10 }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ship/crew/dorm) "mV" = ( @@ -2139,11 +2075,11 @@ /turf/open/floor/plasteel/white, /area/ship/crew/toilet) "nO" = ( -/obj/machinery/power/apc/auto_name/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /obj/effect/turf_decal/corner/opaque/white/border, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plasteel, /area/ship/crew) "nU" = ( @@ -2154,7 +2090,9 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/airlock/gold/glass, +/obj/machinery/door/airlock/gold/glass{ + dir = 4 + }, /obj/machinery/door/firedoor, /turf/open/floor/carpet/black, /area/ship/crew/office) @@ -2170,9 +2108,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/white, /area/ship/crew/toilet) "on" = ( @@ -2201,13 +2137,10 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "ou" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 10 }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/port) "oz" = ( @@ -2289,7 +2222,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/door/airlock/gold/glass, +/obj/machinery/door/airlock/gold/glass{ + dir = 8 + }, /obj/machinery/door/firedoor, /turf/open/floor/carpet/black, /area/ship/crew/office) @@ -2298,10 +2233,19 @@ /turf/open/floor/carpet/black, /area/ship/crew/office) "pc" = ( -/obj/machinery/light, /obj/effect/turf_decal/corner/opaque/white/border, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/port) +"pg" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/ihejirika_small/right{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "pl" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2403,9 +2347,7 @@ /area/ship/crew/canteen) "pF" = ( /obj/machinery/processor, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "pJ" = ( @@ -2413,12 +2355,13 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/light/dim{ - dir = 8 - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/machinery/light_switch{ + pixel_x = -25; + dir = 4 + }, /turf/open/floor/wood, /area/ship/crew/dorm) "pN" = ( @@ -2441,7 +2384,9 @@ /turf/open/floor/light/colour_cycle/dancefloor_b, /area/ship/storage) "pQ" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -2476,7 +2421,6 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/power/apc/auto_name/west, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/effect/turf_decal/siding/blue{ @@ -2495,10 +2439,6 @@ dir = 4; icon_state = "sofacorner" }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/hallway/fore) "qe" = ( @@ -2508,13 +2448,10 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/effect/turf_decal/siding/red{ dir = 8 }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/security) "ql" = ( @@ -2613,10 +2550,7 @@ "qJ" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/plasma, /obj/effect/turf_decal/trimline/opaque/mauve/filled, -/obj/machinery/computer/helm/viewscreen{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/computer/helm/viewscreen/directional/east, /turf/open/floor/plating, /area/ship/engineering) "qK" = ( @@ -2629,10 +2563,6 @@ /obj/structure/table/reinforced, /obj/machinery/reagentgrinder, /obj/effect/turf_decal/corner/opaque/white/diagonal, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "qR" = ( @@ -2641,9 +2571,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/stairs{ dir = 1 }, @@ -2683,6 +2611,15 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/grass, /area/ship/hallway/aft) +"rk" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/ihejirika_small/left{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "rm" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -2706,7 +2643,7 @@ /obj/item/storage/box/beakers, /obj/item/plant_analyzer, /obj/structure/closet/wall{ - pixel_y = 32 + pixel_y = 28 }, /obj/item/storage/bag/plants/portaseeder, /obj/item/clothing/gloves/botanic_leather, @@ -2716,11 +2653,8 @@ /turf/open/floor/wood, /area/ship/crew/hydroponics) "rC" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, /obj/machinery/computer/arcade, +/obj/item/radio/intercom/directional/west, /turf/open/floor/light/colour_cycle/dancefloor_b, /area/ship/storage) "rD" = ( @@ -2750,10 +2684,6 @@ /area/ship/hallway/fore) "rO" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 4 }, @@ -2789,9 +2719,7 @@ /turf/open/floor/grass/fairy, /area/ship/hallway/aft) "rV" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/vending/cigarette/beach, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 5 @@ -2821,7 +2749,6 @@ }, /obj/item/reagent_containers/spray/cleaner, /obj/item/clothing/neck/stethoscope, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-8" }, @@ -2843,9 +2770,7 @@ /area/ship/hallway/aft) "ss" = ( /obj/structure/closet/crate/wooden/toy, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/carpet/nanoweave/purple, /area/ship/crew/canteen) "sv" = ( @@ -2936,9 +2861,7 @@ /area/ship/hallway/port) "sT" = ( /obj/machinery/computer/arcade/orion_trail, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/light/colour_cycle/dancefloor_b, /area/ship/storage) "ta" = ( @@ -2955,10 +2878,7 @@ /area/ship/crew/chapel) "tg" = ( /obj/structure/reagent_dispensers/watertank/high, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/ship/crew/janitor) "th" = ( @@ -2984,10 +2904,7 @@ /obj/effect/turf_decal/siding/wood/end{ dir = 8 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/wood, /area/ship/crew/dorm) "tt" = ( @@ -3076,9 +2993,6 @@ /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, /turf/open/floor/plasteel, /area/ship/hallway/aft) "ub" = ( @@ -3102,9 +3016,7 @@ /obj/structure/chair/comfy/black{ dir = 4 }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/grass, /area/ship/hallway/central) "um" = ( @@ -3155,34 +3067,29 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/light, /obj/effect/turf_decal/corner/opaque/white/border, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/crew) "uM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, /obj/effect/turf_decal/siding/wood{ dir = 9 }, /obj/structure/closet/wardrobe/mixed, +/obj/machinery/airalarm/directional/north, /turf/open/floor/wood, /area/ship/crew/dorm) "uO" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/structure/cable{ icon_state = "1-2" }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/wood, /area/ship/crew/canteen) "uQ" = ( @@ -3192,9 +3099,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, @@ -3204,10 +3109,6 @@ /turf/open/floor/plasteel, /area/ship/hallway/starboard) "uS" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -3217,14 +3118,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "uV" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, /obj/structure/closet/radiation, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plating, /area/ship/engineering) "uZ" = ( @@ -3313,7 +3212,9 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "vF" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -3375,18 +3276,15 @@ /turf/open/floor/wood, /area/ship/crew/hydroponics) "vV" = ( -/obj/machinery/light, /obj/effect/turf_decal/corner/opaque/white/border, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/fore) "wa" = ( /obj/structure/chair{ dir = 4 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/pod/light, /area/ship/hallway/port) "wd" = ( @@ -3410,6 +3308,14 @@ }, /turf/open/floor/wood, /area/ship/crew/hydroponics) +"wi" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15 + }, +/turf/template_noop, +/area/template_noop) "wj" = ( /obj/machinery/bookbinder, /turf/open/floor/carpet/black, @@ -3424,7 +3330,9 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/airlock/wood/glass, +/obj/machinery/door/airlock/wood/glass{ + dir = 4 + }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, @@ -3436,15 +3344,13 @@ "wo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light{ - dir = 8 - }, /obj/structure/cable{ icon_state = "1-2" }, /obj/effect/turf_decal/corner/opaque/black/border{ dir = 10 }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/starboard) "wt" = ( @@ -3519,8 +3425,8 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/machinery/light, /obj/effect/turf_decal/corner/opaque/white/border, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/fore) "wZ" = ( @@ -3553,13 +3459,13 @@ /obj/item/camera, /obj/item/camera, /obj/item/camera, -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-2" }, /obj/effect/turf_decal/corner/opaque/lightgrey/border{ dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/pod/dark, /area/ship/hallway/fore) "xo" = ( @@ -3571,6 +3477,15 @@ }, /turf/open/floor/wood, /area/ship/crew/library) +"xr" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/ship/hallway/fore) "xv" = ( /obj/structure/mineral_door/paperframe, /obj/structure/curtain/bounty, @@ -3631,12 +3546,10 @@ /turf/open/floor/plating, /area/ship/engineering) "xJ" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/wood, /area/ship/crew/chapel) "xT" = ( @@ -3668,19 +3581,16 @@ /turf/open/floor/plasteel, /area/ship/crew) "yg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/wood, -/area/ship/crew/canteen) +/obj/effect/turf_decal/corner/opaque/white/border, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/ship/crew) "yh" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3691,9 +3601,7 @@ "yj" = ( /obj/machinery/vending/dinnerware, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "yl" = ( @@ -3726,12 +3634,10 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/fore) "yq" = ( @@ -3804,12 +3710,10 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/aft) "yK" = ( @@ -3834,7 +3738,7 @@ dir = 4 }, /obj/structure/closet/firecloset/wall{ - pixel_y = 32 + pixel_y = 28 }, /obj/structure/cable{ icon_state = "4-8" @@ -3852,10 +3756,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 5 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plating, /area/ship/engineering) "zb" = ( @@ -3929,16 +3830,13 @@ /area/ship/hallway/central) "zQ" = ( /obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, /obj/effect/turf_decal/siding/wood/end{ dir = 4 }, /obj/item/paper_bin/bundlenatural, /obj/item/stamp/head_of_personnel, /obj/item/pen/fountain, +/obj/machinery/firealarm/directional/south, /turf/open/floor/wood, /area/ship/bridge) "zS" = ( @@ -3954,7 +3852,7 @@ /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 22 }, /turf/open/floor/plasteel, @@ -4013,10 +3911,7 @@ "Al" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/corner/opaque/white/border, /turf/open/floor/plasteel, /area/ship/crew) @@ -4094,7 +3989,7 @@ /turf/open/floor/plasteel, /area/ship/hallway/fore) "AI" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/beach/water, /area/ship/hallway/central) "AR" = ( @@ -4131,7 +4026,8 @@ /area/ship/engineering) "Bg" = ( /obj/machinery/door/poddoor/preopen{ - id = "cruiseeva" + id = "cruiseeva"; + dir = 4 }, /turf/open/floor/pod/dark, /area/ship/hallway/fore) @@ -4146,10 +4042,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/light/dim, /obj/structure/chair/stool/bar{ dir = 4 }, +/obj/machinery/light/directional/south, /turf/open/floor/carpet/black, /area/ship/crew/office) "Bl" = ( @@ -4164,7 +4060,7 @@ /area/ship/engineering) "Bn" = ( /obj/machinery/suit_storage_unit/captain, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = 32 }, /obj/effect/turf_decal/siding/wood/end{ @@ -4248,7 +4144,7 @@ /area/ship/hallway/starboard) "BT" = ( /obj/structure/closet/emcloset/wall{ - pixel_y = 32 + pixel_y = 28 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4265,10 +4161,7 @@ /turf/open/floor/plasteel, /area/ship/hallway/fore) "BW" = ( -/obj/machinery/computer/helm/viewscreen{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/computer/helm/viewscreen/directional/east, /turf/open/floor/carpet/black, /area/ship/crew/office) "BX" = ( @@ -4314,7 +4207,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "cruisebridgewindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, /obj/structure/cable{ icon_state = "0-8" @@ -4349,9 +4243,7 @@ /area/ship/crew/canteen) "Cy" = ( /obj/item/kirbyplants/photosynthetic, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/carpet/black, /area/ship/crew/office) "CD" = ( @@ -4360,6 +4252,17 @@ }, /turf/open/floor/wood, /area/ship/crew/hydroponics) +"CE" = ( +/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/white/border, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "CH" = ( /obj/structure/cable{ icon_state = "1-4" @@ -4377,7 +4280,9 @@ /turf/open/floor/plasteel, /area/ship/hallway/starboard) "CN" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -4432,10 +4337,8 @@ /turf/open/floor/wood, /area/ship/crew/chapel) "Dh" = ( -/obj/machinery/jukebox, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/jukebox, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -4503,20 +4406,6 @@ /obj/effect/turf_decal/corner/opaque/white/border, /turf/open/floor/plasteel, /area/ship/hallway/aft) -"DN" = ( -/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/white/border, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/ship/crew) "DP" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -4541,15 +4430,12 @@ /obj/effect/turf_decal/siding/blue{ dir = 9 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/white, /area/ship/medical) "DT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_x = 30 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -4582,10 +4468,7 @@ /turf/open/floor/carpet/nanoweave/purple, /area/ship/crew/canteen) "Ef" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/ship/crew/library) @@ -4627,6 +4510,7 @@ /obj/item/table_bell, /obj/machinery/door/firedoor/border_only, /obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "Et" = ( @@ -4708,17 +4592,12 @@ /obj/machinery/advanced_airlock_controller{ pixel_x = 25 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/pod/light, /area/ship/hallway/fore) "EN" = ( /obj/item/kirbyplants/photosynthetic, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/carpet/black, /area/ship/crew/office) "EP" = ( @@ -4754,13 +4633,11 @@ /area/ship/hallway/port) "EX" = ( /obj/structure/table/wood, -/obj/machinery/light{ - dir = 4 - }, /obj/item/modular_computer/laptop/preset/civilian, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/wood, /area/ship/crew) "Fd" = ( @@ -4781,16 +4658,12 @@ /area/ship/hallway/aft) "Fh" = ( /obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ship/engineering) "Fl" = ( /obj/machinery/vending/classicbeats, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/carpet/nanoweave/purple, /area/ship/crew/canteen) "Fm" = ( @@ -4857,12 +4730,10 @@ /area/ship/engineering) "FJ" = ( /obj/structure/bookcase/random/nonfiction, -/obj/machinery/light{ - dir = 4 - }, /obj/effect/turf_decal/siding/wood{ dir = 5 }, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/ship/crew/library) "FO" = ( @@ -4886,7 +4757,8 @@ /obj/item/pen/fountain, /obj/item/kitchen/knife/letter_opener, /obj/machinery/light_switch{ - pixel_x = -25 + pixel_x = -25; + dir = 4 }, /obj/item/pen, /turf/open/floor/carpet/black, @@ -4905,7 +4777,9 @@ /turf/open/floor/plasteel, /area/ship/crew) "FX" = ( -/obj/machinery/door/airlock/wood/glass, +/obj/machinery/door/airlock/wood/glass{ + dir = 4 + }, /obj/effect/turf_decal/corner/opaque/white/border, /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -4926,12 +4800,10 @@ /area/ship/security) "Gd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/light{ - dir = 1 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/starboard) "Ge" = ( @@ -4942,9 +4814,6 @@ /area/ship/security) "Gn" = ( /obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, /obj/item/paper_bin, /obj/item/stamp{ pixel_x = -7; @@ -4957,6 +4826,7 @@ /obj/item/pen{ pixel_x = 1 }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) "Gs" = ( @@ -5042,6 +4912,9 @@ /obj/structure/cable{ icon_state = "2-4" }, +/obj/effect/turf_decal/ihejirika_small{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "GU" = ( @@ -5077,6 +4950,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/newscaster/directional/east, /turf/open/floor/wood, /area/ship/crew/chapel) "Hg" = ( @@ -5091,10 +4965,6 @@ /turf/open/floor/grass, /area/ship/hallway/aft) "Hz" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, /obj/structure/cable{ icon_state = "1-2" }, @@ -5105,19 +4975,17 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/wood, /area/ship/bridge) "HA" = ( -/obj/machinery/computer/helm/viewscreen{ - dir = 8; - pixel_x = 28 - }, /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/item/paper{ info = "Reminder that passengers are NOT permitted to carry weapons on board."; pixel_x = 4 }, +/obj/machinery/computer/helm/viewscreen/directional/east, /turf/open/floor/plasteel/dark, /area/ship/security) "HE" = ( @@ -5271,6 +5139,16 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/aft) +"IJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/ship/crew/canteen) "IX" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -5294,13 +5172,10 @@ /turf/open/floor/pod/dark, /area/ship/hallway/fore) "Ji" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/wood, /area/ship/crew/dorm) "Jj" = ( @@ -5370,6 +5245,7 @@ /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/aft) "Jx" = ( @@ -5388,12 +5264,10 @@ /turf/open/floor/wood, /area/ship/crew) "Jz" = ( -/obj/machinery/light{ - dir = 4 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 4 }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ship/hallway/aft) "JA" = ( @@ -5415,19 +5289,16 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable, /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/ship/crew/canteen) "JD" = ( /obj/effect/turf_decal/siding/wood, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/wood, /area/ship/crew/canteen) "JF" = ( @@ -5527,12 +5398,10 @@ /turf/open/floor/engine/o2, /area/ship/engineering) "KG" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/newscaster/directional/east, /turf/open/floor/wood, /area/ship/crew/canteen) "KH" = ( @@ -5548,13 +5417,8 @@ /turf/open/floor/plasteel, /area/ship/hallway/fore) "KK" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/east, /turf/open/floor/pod/light, /area/ship/hallway/fore) "KO" = ( @@ -5590,13 +5454,10 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/aft) "Lk" = ( @@ -5604,15 +5465,11 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "Lp" = ( -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 28 - }, /obj/effect/turf_decal/siding/wood{ dir = 5 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, +/obj/machinery/computer/helm/viewscreen/directional/north, /turf/open/floor/carpet/black, /area/ship/crew/dorm) "Lt" = ( @@ -5622,13 +5479,10 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, /obj/effect/turf_decal/siding/red{ dir = 8 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/security) "Lu" = ( @@ -5679,9 +5533,7 @@ /obj/item/gun/ballistic/automatic/smg/wt550, /obj/item/ammo_box/magazine/wt550m9, /obj/item/ammo_box/magazine/wt550m9, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ship/cargo) "LV" = ( @@ -5732,16 +5584,11 @@ /area/ship/engineering) "Mf" = ( /obj/machinery/biogenerator, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, /obj/effect/turf_decal/siding/wood{ dir = 5 }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/firealarm/directional/east, /turf/open/floor/wood, /area/ship/crew/hydroponics) "Mm" = ( @@ -5777,12 +5624,10 @@ /turf/open/floor/grass, /area/ship/hallway/central) "My" = ( -/obj/machinery/light{ - dir = 1 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 9 }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/starboard) "Mz" = ( @@ -5792,10 +5637,7 @@ /area/ship/crew/chapel) "MD" = ( /obj/effect/turf_decal/corner/opaque/white/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/fore) "MM" = ( @@ -5844,10 +5686,7 @@ /obj/structure/chair/comfy/black{ dir = 4 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/carpet/black, /area/ship/crew/office) "Nr" = ( @@ -5973,6 +5812,14 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"On" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cruisewindows"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/hallway/fore) "Or" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -6032,9 +5879,7 @@ /obj/effect/turf_decal/corner/opaque/lightgrey/border{ dir = 9 }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/pod/dark, /area/ship/hallway/fore) "Pa" = ( @@ -6070,9 +5915,7 @@ /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/computer/cryopod{ - pixel_y = 26 - }, +/obj/machinery/computer/cryopod/directional/north, /turf/open/floor/light, /area/ship/crew/dorm) "Pm" = ( @@ -6091,21 +5934,17 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 1 }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/fore) "Pq" = ( -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 28 - }, +/obj/machinery/computer/helm/viewscreen/directional/north, /turf/open/floor/circuit, /area/ship/hallway/fore) "Pr" = ( @@ -6201,9 +6040,7 @@ dir = 8 }, /obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/newscaster{ - pixel_x = -30 - }, +/obj/machinery/newscaster/directional/west, /turf/open/floor/wood, /area/ship/crew) "PX" = ( @@ -6211,23 +6048,14 @@ /obj/structure/cable{ icon_state = "1-4" }, -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/siding/red{ dir = 10 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/south, /turf/open/floor/plasteel/dark, /area/ship/security) "PY" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/structure/cable{ icon_state = "1-2" }, @@ -6236,6 +6064,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 9 }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/wood, /area/ship/bridge) "Qc" = ( @@ -6290,9 +6119,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/canteen) "Qt" = ( @@ -6357,7 +6184,9 @@ /turf/open/floor/wood, /area/ship/crew) "QJ" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, @@ -6372,9 +6201,7 @@ /obj/effect/turf_decal/trimline/opaque/green/arrow_ccw{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating, /area/ship/engineering) "QN" = ( @@ -6386,10 +6213,7 @@ /area/ship/hallway/aft) "QP" = ( /obj/machinery/suit_storage_unit/atmos, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "QS" = ( @@ -6415,10 +6239,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 9 }, @@ -6446,9 +6267,7 @@ dir = 9 }, /obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/light/dim{ - dir = 8 - }, +/obj/machinery/light/dim/directional/west, /turf/open/floor/wood, /area/ship/crew) "QZ" = ( @@ -6533,7 +6352,8 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ id = "cruisebridgewindows"; - name = "External Shutters" + name = "External Shutters"; + dir = 4 }, /obj/structure/cable{ icon_state = "1-8" @@ -6570,9 +6390,7 @@ /obj/item/clothing/neck/tie/blue, /obj/item/pen/fountain, /obj/item/spacecash/bundle/c100, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/carpet/black, /area/ship/crew) "RC" = ( @@ -6647,12 +6465,10 @@ /turf/open/floor/plasteel, /area/ship/hallway/starboard) "RV" = ( -/obj/machinery/light/small{ - dir = 8 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 8 }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/fore) "RZ" = ( @@ -6677,10 +6493,8 @@ /obj/item/pizzabox, /obj/item/pizzabox, /obj/item/clothing/under/suit/waiter, -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "Sg" = ( @@ -6707,12 +6521,10 @@ /turf/open/floor/wood, /area/ship/crew/canteen) "Sj" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ship/crew/library) "Sq" = ( @@ -6801,13 +6613,10 @@ /turf/open/floor/wood, /area/ship/crew/chapel) "Tr" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 4 }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel, /area/ship/hallway/aft) "Tt" = ( @@ -6872,12 +6681,10 @@ /turf/open/floor/wood, /area/ship/crew/dorm) "TK" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ship/crew/chapel) "TL" = ( @@ -6911,7 +6718,7 @@ /obj/structure/closet/secure_closet/wall{ icon_state = "sec_wall"; name = "equipment locker"; - pixel_y = 32; + pixel_y = 28; req_access = list(30) }, /obj/item/card/id/captains_spare, @@ -6993,14 +6800,13 @@ /turf/open/floor/carpet, /area/ship/crew/chapel) "Uq" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cruisewindows"; dir = 4 }, -/turf/open/floor/wood, -/area/ship/crew/chapel) +/turf/open/floor/plating, +/area/ship/crew/dorm) "Uv" = ( /obj/structure/railing{ dir = 6 @@ -7045,21 +6851,17 @@ /turf/open/floor/plasteel/dark, /area/ship/security) "UG" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/canteen) "UL" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/corner/opaque/lightgrey/border{ dir = 9 }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/port) "UO" = ( @@ -7067,16 +6869,14 @@ /turf/open/floor/plasteel, /area/ship/crew/canteen/kitchen) "UP" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/grass, /area/ship/hallway/aft) "US" = ( /obj/machinery/computer/atmos_control/tank/oxygen_tank{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ship/engineering) "UV" = ( @@ -7108,7 +6908,7 @@ "Vb" = ( /obj/structure/closet/crate/freezer/blood, /obj/machinery/iv_drip, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/white, /area/ship/medical) "Vc" = ( @@ -7185,23 +6985,23 @@ /turf/open/floor/grass, /area/ship/hallway/central) "VF" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, /turf/open/floor/pod/dark, /area/ship/hallway/fore) "VG" = ( -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-8" }, /obj/effect/turf_decal/siding/wood{ dir = 5 }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/ship/crew/chapel) "VR" = ( @@ -7219,7 +7019,8 @@ }, /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters{ - id = "cruisewindows" + id = "cruisewindows"; + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) @@ -7270,7 +7071,7 @@ pixel_x = 1; pixel_y = -8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "Wf" = ( @@ -7290,17 +7091,16 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/hallway/starboard) "Wj" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/effect/turf_decal/corner/opaque/white/border, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel, /area/ship/crew) "Wl" = ( -/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/airlock/public/glass{ + dir = 4 + }, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, @@ -7314,7 +7114,8 @@ /obj/machinery/button/door{ id = "cruise_disposals"; name = "disposals blastdoor"; - pixel_y = -28 + pixel_y = -20; + dir = 1 }, /turf/open/floor/plating, /area/ship/crew/janitor) @@ -7339,7 +7140,9 @@ /turf/open/floor/wood, /area/ship/crew/dorm) "WC" = ( -/obj/machinery/door/airlock/wood/glass, +/obj/machinery/door/airlock/wood/glass{ + dir = 4 + }, /obj/effect/turf_decal/corner/opaque/white/border, /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -7390,13 +7193,10 @@ /area/ship/hallway/central) "WX" = ( /obj/machinery/suit_storage_unit/security, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel/dark, /area/ship/security) "Xa" = ( @@ -7469,16 +7269,12 @@ /obj/item/pushbroom, /obj/item/mop, /obj/item/reagent_containers/glass/bucket, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/item/holosign_creator/janibarrier, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-4" }, /obj/item/storage/box/maid, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel, /area/ship/crew/janitor) "Xs" = ( @@ -7487,9 +7283,7 @@ /obj/item/clothing/neck/tie/red, /obj/item/toy/cards/deck/syndicate, /obj/item/spacecash/bundle/c100, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/carpet/black, /area/ship/crew) "Xz" = ( @@ -7502,10 +7296,8 @@ /turf/open/floor/wood, /area/ship/crew/chapel) "XC" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/newscaster/directional/east, /turf/open/floor/carpet/black, /area/ship/crew) "XI" = ( @@ -7513,9 +7305,7 @@ /turf/open/floor/grass, /area/ship/hallway/central) "XM" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/structure/table/wood, /obj/item/storage/bag/easterbasket{ pixel_x = 5; @@ -7549,12 +7339,10 @@ /turf/open/floor/plasteel/white, /area/ship/crew/toilet) "XY" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 4 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ship/hallway/aft) "Ya" = ( @@ -7581,11 +7369,11 @@ /turf/open/floor/carpet/black, /area/ship/crew/dorm) "Yh" = ( -/obj/machinery/power/apc/auto_name/north, /obj/structure/flora/ausbushes/ywflowers, /obj/structure/cable{ icon_state = "0-2" }, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/grass, /area/ship/hallway/central) "Yl" = ( @@ -7701,7 +7489,6 @@ /turf/open/floor/light/colour_cycle/dancefloor_a, /area/ship/crew/office) "Zu" = ( -/obj/machinery/power/apc/auto_name/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, @@ -7709,6 +7496,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/ship/crew/dorm) "Zx" = ( @@ -7757,10 +7545,10 @@ /turf/open/floor/plasteel, /area/ship/hallway/starboard) "ZO" = ( -/obj/machinery/light, /obj/effect/turf_decal/corner/opaque/white/border{ dir = 10 }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/port) "ZP" = ( @@ -7815,6 +7603,7 @@ ZK ZK ZK ZK +ZK xZ sv xZ @@ -7847,6 +7636,7 @@ ZK ZK "} (2,1,1) = {" +ZK vs Ki Ki @@ -7887,6 +7677,7 @@ tb wI "} (3,1,1) = {" +ZK Ki IG RJ @@ -7927,6 +7718,7 @@ tp tb "} (4,1,1) = {" +ZK Ki LQ GV @@ -7953,9 +7745,9 @@ lU US xC CS -Be +pg GT -Uy +rk Pn Wi Wi @@ -7967,6 +7759,7 @@ aK iV "} (5,1,1) = {" +ZK Ki Sq ih @@ -8007,6 +7800,7 @@ Jj tb "} (6,1,1) = {" +ZK Ki Ki Ki @@ -8047,6 +7841,7 @@ tb tb "} (7,1,1) = {" +ZK ae Fn wa @@ -8087,6 +7882,7 @@ mT sH "} (8,1,1) = {" +wi at Fn au @@ -8127,6 +7923,7 @@ NA sH "} (9,1,1) = {" +ZK ae Fn aN @@ -8167,6 +7964,7 @@ WB sH "} (10,1,1) = {" +ZK bD bD bD @@ -8207,6 +8005,7 @@ ZY sH "} (11,1,1) = {" +ZK Fq bD Gn @@ -8244,10 +8043,11 @@ JX zN po sH -sH +Uq "} (12,1,1) = {" ZK +ZK Fq bD lo @@ -8283,12 +8083,13 @@ tb Lp FP sH -sH +Uq ZK "} (13,1,1) = {" ZK ZK +ZK tS Qt Qt @@ -8322,7 +8123,7 @@ Qk Qk Qk Qk -sH +Uq ZK ZK "} @@ -8330,6 +8131,7 @@ ZK ZK ZK ZK +ZK Qt Fl eF @@ -8370,6 +8172,7 @@ ZK ZK ZK ZK +ZK bi Ju Fd @@ -8410,6 +8213,7 @@ ZK ZK ZK ZK +ZK Qt ss XW @@ -8435,7 +8239,7 @@ Kl Kl Kl IX -DN +yg Qk lm tg @@ -8450,6 +8254,7 @@ ZK ZK ZK ZK +ZK tS Qt fX @@ -8491,6 +8296,7 @@ ZK ZK ZK ZK +ZK Oe xh UG @@ -8502,7 +8308,7 @@ gI JC Rm Qc -Rm +IJ DD vg bj @@ -8531,6 +8337,7 @@ ZK ZK ZK ZK +ZK Oe xh NQ @@ -8571,6 +8378,7 @@ ZK ZK ZK ZK +ZK Oe xh gq @@ -8611,6 +8419,7 @@ ZK ZK ZK ZK +ZK Oe xh NQ @@ -8651,13 +8460,14 @@ ZK ZK ZK ZK +ZK Oe fK Qs IA pC lN -yg +lN vf Kr WS @@ -8691,6 +8501,7 @@ ZK ZK ZK ZK +ZK Ci Ci Ci @@ -8731,6 +8542,7 @@ ZK ZK ZK ZK +ZK Ci qM Sa @@ -8771,6 +8583,7 @@ ZK ZK ZK ZK +ZK Ci go UO @@ -8811,6 +8624,7 @@ ZK ZK ZK ZK +ZK tu Ci kh @@ -8835,7 +8649,7 @@ mO nU Kl IX -DN +yg KO KO KO @@ -8852,6 +8666,7 @@ ZK ZK ZK ZK +ZK pl Vg DB @@ -8892,6 +8707,7 @@ ZK ZK ZK ZK +ZK Ci Ci ke @@ -8932,6 +8748,7 @@ ZK ZK ZK ZK +ZK Ci yj Uf @@ -8972,6 +8789,7 @@ ZK ZK ZK ZK +ZK Ci pF ko @@ -9012,6 +8830,7 @@ ZK ZK ZK ZK +ZK IY cS cS @@ -9035,7 +8854,7 @@ Pw Pw Pw wU -rI +CE Oz Oz Oz @@ -9053,6 +8872,7 @@ ZK ZK ZK ZK +ZK Ij kq SK @@ -9093,6 +8913,7 @@ ZK ZK ZK ZK +ZK Ij lV Jx @@ -9133,6 +8954,7 @@ ZK ZK ZK ZK +ZK IY cS rB @@ -9158,7 +8980,7 @@ yn rI Ui lf -lf +On ZK ZK ZK @@ -9174,6 +8996,7 @@ ZK ZK ZK ZK +ZK cS Mf mx @@ -9214,6 +9037,7 @@ ZK ZK ZK ZK +ZK cS cS cS @@ -9254,6 +9078,7 @@ ZK ZK ZK ZK +ZK AR uq FQ @@ -9294,6 +9119,7 @@ ZK ZK ZK ZK +ZK AR uq AX @@ -9334,6 +9160,7 @@ ZK ZK ZK ZK +ZK AR uq wj @@ -9374,6 +9201,7 @@ ZK ZK ZK ZK +ZK AR uq jM @@ -9414,6 +9242,7 @@ ZK ZK ZK ZK +ZK AR TA TA @@ -9454,6 +9283,7 @@ ZK ZK ZK ZK +ZK aC Wa kL @@ -9495,6 +9325,7 @@ ZK ZK ZK ZK +ZK AR kL kL @@ -9535,6 +9366,7 @@ ZK ZK ZK ZK +ZK fM hj Bt @@ -9576,6 +9408,7 @@ ZK ZK ZK ZK +ZK AR Bt GE @@ -9616,12 +9449,13 @@ ZK ZK ZK ZK +ZK AR kL VG OM hs -Uq +hs He Dg kL @@ -9656,6 +9490,7 @@ ZK ZK ZK ZK +ZK AR kL kL @@ -9696,6 +9531,7 @@ ZK ZK ZK ZK +ZK fM hj mt @@ -9737,6 +9573,7 @@ ZK ZK ZK ZK +ZK AR mt Pq @@ -9777,6 +9614,7 @@ ZK ZK ZK ZK +ZK AR mt gF @@ -9817,6 +9655,7 @@ ZK ZK ZK ZK +ZK AR mt mt @@ -9857,6 +9696,7 @@ ZK ZK ZK ZK +ZK aC JP UV @@ -9898,6 +9738,7 @@ ZK ZK ZK ZK +ZK QA jh en @@ -9939,6 +9780,7 @@ ZK ZK ZK ZK +ZK na jh Jt @@ -9946,7 +9788,7 @@ Jt xT mt mz -mz +xr mt ef TD @@ -9980,6 +9822,7 @@ ZK ZK ZK ZK +ZK QA NT jh @@ -10022,6 +9865,7 @@ ZK ZK ZK ZK +ZK na NT NT diff --git a/_maps/shuttles/shiptest/independent_litieguai.dmm b/_maps/shuttles/shiptest/independent_litieguai.dmm index d09ba2c9cb6d..5d6abc3ec24b 100644 --- a/_maps/shuttles/shiptest/independent_litieguai.dmm +++ b/_maps/shuttles/shiptest/independent_litieguai.dmm @@ -17,14 +17,21 @@ /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/machinery/smartfridge/organ, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/storage) +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15; + dir = 2 + }, +/turf/template_noop, +/area/template_noop) "bu" = ( /obj/machinery/door/airlock/medical{ + dir = 4; name = "Storage Room" }, /obj/effect/turf_decal/trimline/opaque/red/arrow_ccw, @@ -46,10 +53,7 @@ /turf/open/floor/plasteel, /area/ship/storage) "bC" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -25 - }, +/obj/item/radio/intercom/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, @@ -66,10 +70,7 @@ /turf/open/floor/plating, /area/ship/bridge) "ck" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/structure/sign/poster/retro/smile{ pixel_y = -32 }, @@ -136,9 +137,7 @@ /turf/open/floor/plating, /area/ship/maintenance/port) "ed" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/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, @@ -150,15 +149,11 @@ /obj/effect/turf_decal/industrial/warning{ dir = 9 }, -/obj/machinery/computer/cryopod{ - pixel_y = -34 - }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/cryopod{ dir = 8 }, +/obj/machinery/computer/cryopod/directional/south, /turf/open/floor/plasteel/dark, /area/ship/crew) "eJ" = ( @@ -212,9 +207,7 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/donkpockets, /obj/effect/spawner/lootdrop/donkpockets, -/obj/machinery/newscaster{ - pixel_y = -30 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/plasteel/grimy, /area/ship/crew) "fe" = ( @@ -230,14 +223,8 @@ /turf/open/floor/plating, /area/ship/maintenance/port) "fn" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/airalarm/directional/south, /obj/structure/closet/crate/freezer/surplus_limbs{ name = "organ freezer" }, @@ -261,9 +248,7 @@ "fT" = ( /obj/machinery/stasis, /obj/effect/turf_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech, /area/ship/medical) "go" = ( @@ -335,7 +320,7 @@ /turf/open/floor/plasteel/tech, /area/ship/medical) "hT" = ( -/obj/machinery/power/apc/auto_name/south, +/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{ @@ -359,21 +344,17 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/west, /obj/structure/cable{ icon_state = "1-2" }, /obj/effect/turf_decal/industrial/warning, /obj/machinery/button/door{ dir = 4; - pixel_y = -6; - pixel_x = -25; id = "traumaenginer"; - name = "Engine Shutter Control" + name = "Engine Shutter Control"; + pixel_x = -25; + pixel_y = -6 }, /turf/open/floor/plating, /area/ship/maintenance/starboard) @@ -384,10 +365,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/showroomfloor, /area/ship/crew/toilet) "iP" = ( @@ -443,10 +421,7 @@ /turf/open/floor/plasteel/dark, /area/ship/crew) "kH" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 25 - }, +/obj/item/radio/intercom/directional/east, /obj/machinery/power/terminal, /obj/structure/cable/yellow, /obj/structure/reagent_dispensers/fueltank, @@ -467,6 +442,7 @@ icon_state = "0-4" }, /obj/machinery/door/poddoor{ + dir = 4; id = "traumaramp" }, /obj/machinery/door/firedoor/border_only{ @@ -503,7 +479,7 @@ /turf/open/floor/plasteel/dark, /area/ship/bridge) "lb" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -549,6 +525,7 @@ /area/ship/hallway/aft) "lY" = ( /obj/machinery/door/airlock/medical{ + dir = 4; name = "Crew Quarters" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -570,6 +547,7 @@ /area/ship/crew) "mw" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Port Engines" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -590,10 +568,7 @@ /turf/open/floor/plating, /area/ship/maintenance/port) "mG" = ( -/obj/machinery/firealarm{ - pixel_y = 26; - pixel_x = -6 - }, +/obj/machinery/firealarm/directional/north, /obj/structure/sign/warning/gasmask{ pixel_x = -32 }, @@ -601,21 +576,20 @@ /obj/item/stack/marker_beacon/thirty, /obj/item/stack/marker_beacon/thirty, /obj/item/stack/marker_beacon/thirty, -/obj/effect/turf_decal/siding/thinplating/dark/corner, /obj/structure/rack, -/obj/effect/turf_decal/industrial/outline/red, /obj/item/pickaxe/emergency{ - name = "Medical Retrieval Tool"; - desc = "For extracting yourself from rough landings, and getting to the even rougher ones" + desc = "For extracting yourself from rough landings, and getting to the even rougher ones"; + name = "Medical Retrieval Tool" }, /obj/item/pickaxe/emergency{ - name = "Medical Retrieval Tool"; - desc = "For extracting yourself from rough landings, and getting to the even rougher ones" + desc = "For extracting yourself from rough landings, and getting to the even rougher ones"; + name = "Medical Retrieval Tool" }, /obj/item/pickaxe/emergency{ - name = "Medical Retrieval Tool"; - desc = "For extracting yourself from rough landings, and getting to the even rougher ones" + 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, /turf/open/floor/plasteel/tech, /area/ship/storage) "mO" = ( @@ -658,12 +632,13 @@ /turf/open/floor/plasteel/white, /area/ship/medical) "nl" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/turf_decal/number/five{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/maintenance/starboard) "nm" = ( @@ -711,37 +686,37 @@ /obj/structure/table/reinforced, /obj/machinery/door/window/southleft, /obj/machinery/button/door{ + dir = 1; id = "lobbydoors"; name = "Lobby Door Control"; - pixel_y = -4; - dir = 1; normaldoorcontrol = 1; - pixel_x = 11 + pixel_x = 11; + pixel_y = -4 }, /obj/machinery/door/firedoor/border_only, /obj/effect/turf_decal/industrial/hatch/red, /obj/machinery/button/shieldwallgen{ dir = 1; - pixel_y = 8; - name = "Lobby Holoshield"; id = "traumashield"; - pixel_x = -6 + 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; - dir = 1; - specialfunctions = 4; - normaldoorcontrol = 1 + specialfunctions = 4 }, /obj/machinery/button/door{ + dir = 1; id = "traumalobby"; name = "Lobby Shutter Control"; pixel_x = -6; - pixel_y = -4; - dir = 1 + pixel_y = -4 }, /turf/open/floor/plating, /area/ship/medical) @@ -759,7 +734,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-4" }, @@ -799,10 +774,7 @@ /obj/structure/mirror{ pixel_x = 25 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 28 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/showroomfloor, /area/ship/crew/toilet) "qQ" = ( @@ -839,8 +811,10 @@ /turf/open/floor/plasteel/white, /area/ship/medical) "rM" = ( -/obj/machinery/light/small, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/light/small/directional/south{ + pixel_x = 17 + }, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-8" }, @@ -854,9 +828,7 @@ /obj/item/flashlight/seclite, /obj/item/flashlight/seclite, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/item/clothing/head/helmet/sec, /obj/item/clothing/head/helmet/sec, /obj/item/clothing/head/helmet/sec, @@ -894,10 +866,7 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 25 - }, +/obj/item/radio/intercom/wideband/directional/east, /turf/open/floor/plasteel/white, /area/ship/hallway/fore) "sH" = ( @@ -939,10 +908,7 @@ dir = 1 }, /obj/item/kirbyplants/random, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/aft) "tO" = ( @@ -950,15 +916,10 @@ icon_state = "med_secure"; name = "medical intern's locker" }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/item/clothing/glasses/hud/health, /obj/item/healthanalyzer, /obj/item/healthanalyzer, @@ -978,9 +939,7 @@ /turf/open/floor/plasteel/grimy, /area/ship/crew) "tT" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/chair{ dir = 8 }, @@ -1002,10 +961,7 @@ /obj/machinery/modular_computer/console/preset/command{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) "uo" = ( @@ -1034,11 +990,7 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "uE" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - pixel_y = -38; - pixel_x = 7 - }, +/obj/machinery/light/directional/south, /obj/structure/window/reinforced/tinted/frosted{ dir = 8 }, @@ -1065,9 +1017,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/aft) "ve" = ( @@ -1079,10 +1029,7 @@ /obj/machinery/computer/med_data/laptop{ dir = 1 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -25 - }, +/obj/item/radio/intercom/directional/west, /obj/machinery/door/firedoor/border_only, /obj/effect/turf_decal/industrial/hatch/red, /turf/open/floor/plating, @@ -1091,7 +1038,7 @@ /obj/effect/turf_decal/trimline/opaque/red/filled/warning{ dir = 1 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -1122,15 +1069,10 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ship/maintenance/port) "vG" = ( -/obj/machinery/light{ - dir = 1 - }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -1140,17 +1082,13 @@ /area/ship/medical) "vT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-2" }, /obj/item/storage/toolbox/electrical, /turf/open/floor/plating, /area/ship/maintenance/port) -"wC" = ( -/obj/machinery/smartfridge/bloodbank/preloaded, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/storage) "wD" = ( /obj/structure/chair/comfy/shuttle{ dir = 1; @@ -1183,16 +1121,17 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "yi" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, +/obj/effect/turf_decal/number/zero{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/maintenance/starboard) "zg" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, @@ -1235,10 +1174,7 @@ /obj/item/pen{ pixel_x = -5 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /obj/item/paper_bin{ pixel_x = 9 }, @@ -1259,19 +1195,18 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/firealarm{ - pixel_x = -28; - dir = 4 - }, +/obj/machinery/firealarm/directional/west, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/white, /area/ship/hallway/fore) "AG" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 8 +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/structure/railing{ + dir = 6 }, +/turf/open/floor/plasteel/showroomfloor, /area/ship/storage) "AJ" = ( /turf/closed/wall/mineral/titanium, @@ -1285,8 +1220,8 @@ /area/ship/hallway/aft) "BH" = ( /obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "traumashield2"; - dir = 1 + dir = 1; + id = "traumashield2" }, /obj/structure/cable{ icon_state = "0-4" @@ -1301,6 +1236,7 @@ dir = 8 }, /obj/machinery/door/poddoor{ + dir = 4; id = "traumaramp" }, /turf/open/floor/engine, @@ -1313,10 +1249,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/structure/cable{ icon_state = "1-2" }, @@ -1417,6 +1350,7 @@ /obj/item/storage/box/gloves, /obj/item/storage/box/masks, /obj/item/storage/box/bodybags, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/white, /area/ship/medical) "DU" = ( @@ -1447,10 +1381,7 @@ /turf/open/floor/plasteel/white, /area/ship/hallway/fore) "FE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/industrial/outline/red, /obj/machinery/reagentgrinder{ pixel_y = 10 @@ -1459,27 +1390,24 @@ /obj/item/lighter{ pixel_x = -8 }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/white, /area/ship/medical) "Gm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26; - pixel_y = 6 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/cable{ icon_state = "1-2" }, /obj/effect/turf_decal/industrial/warning, /obj/machinery/button/door{ dir = 8; - pixel_y = -6; - pixel_x = 25; id = "traumaenginel"; - name = "Engine Shutter Control" + name = "Engine Shutter Control"; + pixel_x = 25; + pixel_y = -6 }, /turf/open/floor/plating, /area/ship/maintenance/port) @@ -1505,6 +1433,7 @@ /area/ship/maintenance/starboard) "GP" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Starboard Engines" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1546,9 +1475,7 @@ /obj/machinery/door/window/northleft, /obj/machinery/power/terminal, /obj/structure/cable, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ship/maintenance/starboard) "Hr" = ( @@ -1571,9 +1498,7 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/maintenance/starboard) "IE" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ icon_state = "1-2" @@ -1597,10 +1522,7 @@ /obj/machinery/power/terminal, /obj/structure/cable/yellow, /obj/item/wrench/crescent, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -25 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plating, /area/ship/maintenance/port) "Jn" = ( @@ -1613,6 +1535,7 @@ "JA" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/preopen{ + dir = 4; id = "traumawindows"; name = "Window Blast Door" }, @@ -1626,10 +1549,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/industrial/warning, @@ -1639,16 +1559,11 @@ /obj/effect/landmark/start/paramedic, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ship/crew) "Ko" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/industrial/outline/red, /obj/machinery/suit_storage_unit/inherit, /obj/item/clothing/suit/space/hardsuit/medical, @@ -1672,9 +1587,7 @@ /obj/machinery/door/window/northright, /obj/machinery/power/terminal, /obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ship/maintenance/port) "KR" = ( @@ -1693,10 +1606,7 @@ /obj/item/clothing/glasses/science, /obj/item/reagent_containers/glass/beaker/large, /obj/item/reagent_containers/glass/beaker/large, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/structure/closet/wall/white/chem{ dir = 1; name = "Chemistry Locker"; @@ -1736,9 +1646,7 @@ /obj/effect/turf_decal/arrows/red{ dir = 8 }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, +/obj/effect/turf_decal/siding/thinplating/dark/corner, /turf/open/floor/plasteel/showroomfloor, /area/ship/storage) "Lt" = ( @@ -1769,9 +1677,26 @@ }, /turf/open/floor/vault, /area/ship/storage) +"Ml" = ( +/obj/docking_port/stationary{ + dwidth = 8; + width = 30; + height = 15; + dir = 8 + }, +/turf/template_noop, +/area/template_noop) "MK" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/industrial/outline/red, +/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/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/tech, /area/ship/storage) "MN" = ( @@ -1780,9 +1705,7 @@ icon_state = "0-2" }, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/stack/sheet/mineral/plasma/twenty, /turf/open/floor/plating, /area/ship/maintenance/starboard) @@ -1792,19 +1715,13 @@ icon_state = "0-2" }, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light/small{ - dir = 1 - }, +/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/machinery/light/small, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -25 - }, +/obj/item/radio/intercom/directional/south, /obj/machinery/cell_charger, /turf/open/floor/plasteel/grimy, /area/ship/crew) @@ -1883,9 +1800,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ship/maintenance/starboard) "OK" = ( @@ -1920,6 +1835,9 @@ dir = 4; pixel_x = -28 }, +/obj/effect/turf_decal/number/two{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/maintenance/starboard) "PG" = ( @@ -2003,6 +1921,7 @@ dir = 8 }, /obj/machinery/door/poddoor{ + dir = 8; id = "traumaramp" }, /obj/machinery/door/firedoor/border_only{ @@ -2014,7 +1933,7 @@ /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/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -2024,10 +1943,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/industrial/warning, @@ -2035,6 +1951,7 @@ /area/ship/maintenance/starboard) "Rh" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Port Engines" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2076,6 +1993,10 @@ /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 + }, /turf/open/floor/plasteel/tech, /area/ship/medical) "RW" = ( @@ -2101,17 +2022,17 @@ }, /obj/machinery/button/door{ dir = 1; - pixel_y = -26; - pixel_x = -4; + id = "traumaramp"; name = "Emergency Ramp"; - id = "traumaramp" + pixel_x = -4; + pixel_y = -26 }, /obj/machinery/button/shieldwallgen{ dir = 1; - pixel_y = -23; - pixel_x = 6; + id = "traumashield2"; name = "Emergency Ramp Shield"; - id = "traumashield2" + pixel_x = 6; + pixel_y = -23 }, /obj/effect/turf_decal/arrows/red{ dir = 8 @@ -2124,15 +2045,14 @@ "Sy" = ( /obj/machinery/stasis, /obj/effect/turf_decal/industrial/outline/red, +/obj/machinery/smartfridge/organ{ + pixel_y = 32; + density = 0 + }, /turf/open/floor/plasteel/tech, /area/ship/medical) "SH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/industrial/outline/red, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plasteel/tech, @@ -2156,13 +2076,14 @@ /turf/open/floor/plasteel/showroomfloor, /area/ship/crew/toilet) "SR" = ( -/obj/effect/turf_decal/siding/white/end{ - dir = 1 +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/siding/white{ + dir = 8 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/effect/turf_decal/siding/white{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/vault, /area/ship/storage) "Ti" = ( @@ -2180,14 +2101,9 @@ /turf/open/floor/carpet/nanoweave/beige, /area/ship/medical) "Tt" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/filingcabinet/medical, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/carpet/nanoweave/beige, /area/ship/medical) "Tx" = ( @@ -2255,9 +2171,7 @@ /turf/open/floor/plasteel/white, /area/ship/hallway/fore) "UC" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 4 }, @@ -2329,9 +2243,7 @@ req_access_txt = "5" }, /obj/item/gun/ballistic/automatic/pistol/commander/no_mag, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/item/ammo_box/magazine/co9mm{ ammo_type = /obj/item/ammo_casing/c9mm/ap; name = "Commander magazine (AP 9mm)" @@ -2360,10 +2272,7 @@ /turf/open/floor/plasteel/white, /area/ship/medical) "Vs" = ( -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = -25 - }, +/obj/item/radio/intercom/wideband/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 }, @@ -2386,9 +2295,7 @@ pixel_y = 8 }, /obj/item/reagent_containers/syringe, -/obj/item/radio/intercom{ - pixel_y = 24 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/tech, /area/ship/medical) "VM" = ( @@ -2408,7 +2315,7 @@ /turf/open/floor/plating, /area/ship/maintenance/starboard) "VY" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, @@ -2474,6 +2381,7 @@ /area/ship/maintenance/starboard) "Xh" = ( /obj/machinery/door/airlock/medical{ + dir = 4; name = "Restroom" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2495,6 +2403,7 @@ /area/ship/crew/toilet) "Xj" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Starboard Engines" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2515,11 +2424,10 @@ /turf/open/floor/plasteel, /area/ship/hallway/aft) "Xs" = ( -/obj/machinery/light/small, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -25 +/obj/machinery/light/small/directional/south{ + pixel_x = 17 }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/carpet/nanoweave, /area/ship/bridge) "XW" = ( @@ -2555,6 +2463,7 @@ /obj/machinery/microwave{ pixel_y = 5 }, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/grimy, /area/ship/crew) "Yn" = ( @@ -2577,9 +2486,7 @@ /turf/open/floor/plasteel/showroomfloor, /area/ship/medical) "YI" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/chair{ dir = 4 }, @@ -2600,18 +2507,25 @@ /obj/effect/turf_decal/trimline/opaque/red/filled/line{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ 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) @@ -2621,10 +2535,7 @@ "ZO" = ( /obj/machinery/vending/cola/random, /obj/effect/turf_decal/trimline/opaque/red/filled/line, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/ship/hallway/aft) @@ -2638,7 +2549,7 @@ UG UG UG UG -UG +Ml UG UG UG @@ -2656,6 +2567,7 @@ ZC fp UG UG +UG "} (2,1,1) = {" UG @@ -2685,6 +2597,7 @@ Kh Ny Jn UG +UG "} (3,1,1) = {" UG @@ -2714,6 +2627,7 @@ Gm KD dR Jn +UG "} (4,1,1) = {" UG @@ -2743,6 +2657,7 @@ ZC ZC ZC fp +UG "} (5,1,1) = {" UG @@ -2765,13 +2680,14 @@ UG UG UG UG -fp +ZC ZC vr ZC UG UG UG +UG "} (6,1,1) = {" UG @@ -2801,10 +2717,11 @@ ZC fp UG UG +UG "} (7,1,1) = {" -bX -bX +Nn +Nn uk UJ Nn @@ -2830,6 +2747,7 @@ gL gL gL AJ +UG "} (8,1,1) = {" bX @@ -2843,7 +2761,7 @@ zo Ko QE SH -bl +OK Sy uo hQ @@ -2859,6 +2777,7 @@ YI Ja Qp KW +UG "} (9,1,1) = {" bX @@ -2872,7 +2791,7 @@ zo OK bu OK -wC +OK RB Go kP @@ -2888,6 +2807,7 @@ xa eS cn gO +UG "} (10,1,1) = {" bX @@ -2917,6 +2837,7 @@ Bl Bl rh BN +bl "} (11,1,1) = {" bX @@ -2946,6 +2867,7 @@ IG eS cn TO +UG "} (12,1,1) = {" bX @@ -2975,10 +2897,11 @@ tT uW ZO KW +UG "} (13,1,1) = {" -bX -bX +Nn +Nn zR Nq Nn @@ -3004,6 +2927,7 @@ gL gL gL AJ +UG "} (14,1,1) = {" UG @@ -3033,6 +2957,7 @@ UO Ti UG UG +UG "} (15,1,1) = {" UG @@ -3062,6 +2987,7 @@ UO UG UG UG +UG "} (16,1,1) = {" UG @@ -3075,7 +3001,7 @@ XW np tq Yk -Hl +Ev Qq UG UG @@ -3091,6 +3017,7 @@ UO UO UO Ti +UG "} (17,1,1) = {" UG @@ -3120,6 +3047,7 @@ ir Hq VM Dj +UG "} (18,1,1) = {" UG @@ -3130,7 +3058,7 @@ UG UG iA Kc -PH +Zb Ev iA UG @@ -3149,6 +3077,7 @@ QY Ob Dj UG +UG "} (19,1,1) = {" UG @@ -3178,4 +3107,5 @@ UO Ti UG UG +UG "} diff --git a/_maps/shuttles/shiptest/independent_masinyane.dmm b/_maps/shuttles/shiptest/independent_masinyane.dmm index 76b3cd0cd6d1..67f850b2914d 100644 --- a/_maps/shuttles/shiptest/independent_masinyane.dmm +++ b/_maps/shuttles/shiptest/independent_masinyane.dmm @@ -10,11 +10,14 @@ /obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/isf_small/right{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "cu" = ( @@ -32,13 +35,7 @@ /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/computer/cryopod/directional/west, /turf/open/floor/mineral/plastitanium, /area/ship/bridge) "dJ" = ( @@ -136,6 +133,7 @@ /obj/machinery/computer/helm{ dir = 8 }, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium, /area/ship/bridge) "ju" = ( @@ -157,8 +155,9 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/number/three{ + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) @@ -169,13 +168,10 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/light/small{ +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/isf_small/left{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, /turf/open/floor/plating, /area/ship/engineering) "kO" = ( @@ -210,6 +206,9 @@ /obj/machinery/atmospherics/pipe/simple/green{ dir = 6 }, +/obj/effect/turf_decal/number/zero{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "mw" = ( @@ -222,7 +221,10 @@ /obj/machinery/atmospherics/pipe/manifold/green{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/number/five{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "mG" = ( @@ -232,6 +234,9 @@ /obj/structure/cable{ icon_state = "1-8" }, +/obj/effect/turf_decal/number/zero{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "qu" = ( @@ -246,9 +251,7 @@ /area/ship/bridge) "qK" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ship/bridge) "sn" = ( @@ -269,13 +272,14 @@ /obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, +/obj/structure/cable{ + icon_state = "0-8" + }, /obj/machinery/door/poddoor/preopen{ + dir = 4; id = "masi_engi"; name = "Emergency Engine Shielding" }, -/obj/structure/cable{ - icon_state = "0-8" - }, /turf/open/floor/plating, /area/ship/engineering) "up" = ( @@ -335,6 +339,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ship/engineering) "zI" = ( @@ -346,20 +351,24 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Bq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + dir = 4; + id = "masinyane_windowshield"; + name = "Cockpit Emergency Blast Door" + }, +/turf/open/floor/plating, +/area/ship/bridge) "Ce" = ( /obj/machinery/power/smes/engineering, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/cable{ icon_state = "0-8" }, /obj/effect/turf_decal/trimline/opaque/white/filled/warning{ dir = 10 }, -/obj/item/storage/secure/safe{ - pixel_x = 33 - }, /turf/open/floor/plasteel/dark, /area/ship/bridge) "Cu" = ( @@ -416,23 +425,24 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/effect/turf_decal/isf_small{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "Fr" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/obj/item/radio/intercom/wideband{ - pixel_y = 21 - }, +/obj/item/radio/intercom/wideband/directional/north, /obj/machinery/button/door{ id = "masinyane_windowshield"; name = "shutters"; pixel_x = 25; - pixel_y = 30 + pixel_y = 21 }, -/obj/item/radio/intercom{ - pixel_y = 36 +/obj/item/radio/intercom/directional/north{ + pixel_y = 44 }, /turf/open/floor/mineral/plastitanium, /area/ship/bridge) @@ -447,7 +457,8 @@ dir = 8 }, /obj/machinery/door/airlock/hatch{ - name = "Thruster Maintenance" + name = "Thruster Maintenance"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -483,9 +494,7 @@ /turf/open/floor/plasteel/tech, /area/ship/bridge) "IQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/structure/chair, /turf/open/floor/plasteel/dark, @@ -563,6 +572,10 @@ /obj/machinery/power/terminal{ dir = 1 }, +/obj/item/storage/secure/safe{ + pixel_x = 33; + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/ship/bridge) "Pn" = ( @@ -576,6 +589,9 @@ dir = 4 }, /obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/number/three{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "PB" = ( @@ -624,6 +640,9 @@ }, /obj/item/stack/sheet/mineral/plasma/twenty, /obj/item/stack/sheet/mineral/uranium/twenty, +/obj/effect/turf_decal/number/five{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "St" = ( @@ -660,7 +679,7 @@ /turf/open/floor/plasteel/dark, /area/ship/bridge) "Tq" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -680,9 +699,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech, /area/ship/bridge) "Wn" = ( @@ -690,10 +707,7 @@ /area/ship/bridge) "Xc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -20 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/dark, /area/ship/bridge) "Xe" = ( @@ -704,9 +718,7 @@ /area/ship/bridge) "Xq" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ship/bridge) "XT" = ( @@ -717,10 +729,8 @@ /obj/effect/turf_decal/trimline/opaque/white/filled/warning{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - name = "air filtration controller"; - pixel_x = 25 +/obj/machinery/airalarm/directional/east{ + name = "air filtration controller" }, /turf/open/floor/plasteel/dark, /area/ship/bridge) @@ -752,10 +762,7 @@ /area/ship/bridge) "ZU" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/food/snacks/burrito, /obj/item/reagent_containers/food/snacks/burrito, @@ -919,7 +926,7 @@ LT vC Wn jo -Md +Bq Md "} (11,1,1) = {" @@ -933,7 +940,7 @@ Ce Oy XT Wn -Md +Bq Md sx "} diff --git a/_maps/shuttles/shiptest/independent_meta.dmm b/_maps/shuttles/shiptest/independent_meta.dmm index f603dea63754..c012bb11fb69 100644 --- a/_maps/shuttles/shiptest/independent_meta.dmm +++ b/_maps/shuttles/shiptest/independent_meta.dmm @@ -54,9 +54,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/atmospherics/components/unary/tank/toxins, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/built/directional/north, /turf/open/floor/plating, /area/ship/engineering) "am" = ( @@ -74,7 +72,8 @@ id = "whiteship_port"; name = "Port Blast Door Control"; pixel_x = -25; - pixel_y = 5 + pixel_y = 5; + dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/cargo) @@ -109,6 +108,9 @@ name = "food crate" }, /obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/ntspaceworks_big/seven{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/ship/cargo) "ar" = ( @@ -126,6 +128,9 @@ pixel_x = -3; pixel_y = -3 }, +/obj/effect/turf_decal/ntspaceworks_big/six{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/ship/cargo) "as" = ( @@ -135,30 +140,30 @@ id = "whiteship_port"; name = "Port Blast Door Control"; pixel_x = 25; - pixel_y = 5 + pixel_y = 5; + dir = 8 + }, +/obj/effect/turf_decal/ntspaceworks_big/five{ + dir = 1 }, /turf/open/floor/plasteel/dark, /area/ship/cargo) "at" = ( /obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 + pixel_x = -32; + pixel_y = -10 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/built{ - dir = 8 - }, /obj/machinery/advanced_airlock_controller{ dir = 8; pixel_x = 25 }, /obj/machinery/atmospherics/components/unary/vent_pump/layer2, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plating, /area/ship/crew) "au" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -176,14 +181,13 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew) "av" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/bed, -/obj/machinery/light/small/built{ - dir = 4 - }, /obj/item/bedsheet/brown, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -202,9 +206,6 @@ /turf/open/floor/plasteel/dark, /area/ship/crew) "aw" = ( -/obj/machinery/light/small{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/bed, /obj/item/bedsheet/brown, @@ -222,6 +223,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew) "ax" = ( @@ -372,6 +374,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew) "aI" = ( @@ -511,7 +514,9 @@ /area/ship/engineering) "aQ" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, @@ -628,13 +633,7 @@ /turf/open/floor/plasteel/dark, /area/ship/crew) "aX" = ( -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, /obj/structure/cable{ icon_state = "2-8" }, @@ -657,6 +656,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, /area/ship/crew) "aY" = ( @@ -683,7 +683,8 @@ "aZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/airlock/glass{ - name = "Crew Quarters" + name = "Crew Quarters"; + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" @@ -713,11 +714,8 @@ /turf/open/floor/plasteel/dark, /area/ship/crew) "ba" = ( -/obj/machinery/light/small/built, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/north, /obj/structure/cable{ icon_state = "4-8" }, @@ -730,6 +728,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, +/obj/machinery/light/small/built/directional/south, /turf/open/floor/plasteel, /area/ship/crew) "bb" = ( @@ -749,9 +748,7 @@ /area/ship/crew) "bc" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ icon_state = "4-8" @@ -793,28 +790,21 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, -/obj/machinery/light/small{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 }, +/obj/machinery/light/small/built/directional/north, /turf/open/floor/plasteel, /area/ship/crew) "bf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/cryopod{ - dir = 8 +/obj/docking_port/stationary{ + dwidth = 15; + width = 30; + height = 15; + dir = 2 }, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/ship/crew) +/turf/template_noop, +/area/template_noop) "bg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -828,10 +818,6 @@ /area/ship/engineering) "bh" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/table, /obj/item/storage/toolbox/mechanical{ @@ -841,19 +827,17 @@ pixel_x = 3; pixel_y = 3 }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plating, /area/ship/engineering) "bi" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light/small/built, +/obj/machinery/light/small/built/directional/south, /obj/effect/decal/cleanable/blood, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plating, /area/ship/engineering) "bj" = ( @@ -955,6 +939,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew) "br" = ( @@ -1021,14 +1006,7 @@ /turf/open/floor/plating, /area/ship/engineering) "bz" = ( -/obj/machinery/light/built{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, /obj/structure/closet/crate/internals, /obj/item/tank/internals/oxygen{ pixel_x = -3; @@ -1040,6 +1018,7 @@ pixel_y = 3 }, /obj/item/clothing/mask/breath, +/obj/machinery/light/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/cargo) "bA" = ( @@ -1066,14 +1045,8 @@ /turf/open/floor/plasteel/dark, /area/ship/cargo) "bC" = ( -/obj/machinery/light/built{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/built/directional/east, /turf/open/floor/plasteel/dark, /area/ship/cargo) "bD" = ( @@ -1107,7 +1080,6 @@ /area/ship/crew/canteen) "bF" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/built, /obj/structure/curtain, /obj/machinery/shower{ pixel_y = 15 @@ -1116,6 +1088,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, +/obj/machinery/light/small/built/directional/south, /turf/open/floor/plasteel/freezer, /area/ship/crew) "bG" = ( @@ -1166,9 +1139,6 @@ /turf/open/floor/plasteel/dark, /area/ship/engineering) "bJ" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/rack, /obj/item/storage/belt/utility, @@ -1177,6 +1147,7 @@ pixel_y = 3 }, /obj/item/radio/off, +/obj/machinery/light/small/built/directional/east, /turf/open/floor/plasteel/dark, /area/ship/engineering) "bL" = ( @@ -1196,9 +1167,6 @@ /turf/open/floor/plasteel/dark, /area/ship/cargo) "bM" = ( -/obj/machinery/light/small/built{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, /obj/machinery/microwave, @@ -1212,6 +1180,7 @@ /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "bN" = ( @@ -1252,7 +1221,7 @@ /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel, /area/ship/crew/canteen) "bO" = ( @@ -1267,20 +1236,14 @@ /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/machinery/computer/helm/viewscreen{ - pixel_x = 30; - pixel_y = 30 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel, /area/ship/crew/canteen) "bP" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/vending/coffee, +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sign/poster/contraband/random{ pixel_x = 32 @@ -1295,6 +1258,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 8 }, +/obj/machinery/light/small/built/directional/east, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "bQ" = ( @@ -1306,10 +1270,6 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -1325,6 +1285,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/engineering) "bT" = ( @@ -1346,15 +1307,13 @@ /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/firedoor/window, /obj/machinery/door/poddoor{ - id = "whiteship_windows" + id = "whiteship_windows"; + dir = 4 }, /turf/open/floor/plating, /area/ship/cargo) "bV" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/transparent/neutral{ @@ -1372,6 +1331,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, /area/ship/crew) "bW" = ( @@ -1431,55 +1391,36 @@ /area/ship/crew/canteen) "cc" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) "cd" = ( -/obj/structure/table, -/obj/machinery/light/small/built{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, -/obj/item/paper_bin{ - pixel_x = -4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/camera{ - pixel_x = 12; - pixel_y = 6 - }, -/obj/item/storage/photo_album{ - pixel_x = 14 +/obj/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 }, -/obj/machinery/power/apc/auto_name/north, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 7 +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 }, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 7 +/obj/effect/turf_decal/corner/transparent/neutral, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 }, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 7 +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 8 }, +/obj/machinery/computer/helm/viewscreen/directional/north, +/obj/machinery/light/small/built/directional/east, /turf/open/floor/plasteel/dark, -/area/ship/bridge) +/area/ship/crew/canteen) "ce" = ( /obj/structure/table, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/item/folder/blue{ pixel_x = 6; @@ -1487,6 +1428,7 @@ }, /obj/machinery/recharger, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, /area/ship/bridge) "cf" = ( @@ -1518,13 +1460,15 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/structure/frame/computer{ +/obj/structure/frame/computer/retro{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/bridge) "ch" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, @@ -1537,6 +1481,13 @@ /obj/machinery/door/firedoor/border_only{ dir = 4 }, +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + name = "Salvage Ship"; + port_direction = 2; + preferred_direction = 4; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "ci" = ( @@ -1546,19 +1497,19 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small/built{ - dir = 1 - }, /obj/machinery/advanced_airlock_controller{ pixel_y = -25 }, /obj/machinery/atmospherics/components/unary/vent_pump/layer2{ dir = 4 }, +/obj/machinery/light/small/built/directional/north, /turf/open/floor/plating, /area/ship/engineering) "cj" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, @@ -1716,7 +1667,8 @@ "cr" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" @@ -1814,7 +1766,7 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/machinery/computer/helm{ +/obj/machinery/computer/helm/retro{ dir = 8 }, /turf/open/floor/plasteel/dark, @@ -1825,10 +1777,6 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, @@ -1844,6 +1792,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/engineering) "cx" = ( @@ -1910,46 +1859,46 @@ /area/ship/crew/canteen) "cC" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) "cD" = ( /obj/structure/table, -/obj/machinery/light/small/built{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, -/obj/item/gps{ - gpstag = "NTREC1"; - pixel_x = -9; - pixel_y = 7 +/obj/item/paper_bin{ + pixel_x = -4 }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 7 +/obj/item/pen{ + pixel_x = -4 }, -/obj/item/megaphone{ - pixel_x = -2; - pixel_y = -4 +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/item/radio/intercom/wideband{ - pixel_y = -29 +/obj/item/camera{ + pixel_x = 12; + pixel_y = 6 }, +/obj/item/storage/photo_album{ + pixel_x = 14 + }, +/obj/item/spacecash/bundle/c1000{ + pixel_x = 7 + }, +/obj/item/spacecash/bundle/c1000{ + pixel_x = 7 + }, +/obj/item/spacecash/bundle/c1000{ + pixel_x = 7 + }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/bridge) "cE" = ( /obj/structure/table, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high/plus, @@ -1963,6 +1912,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/bridge) "cF" = ( @@ -1974,27 +1924,17 @@ id = "whiteship_bridge"; name = "Bridge Blast Door Control"; pixel_x = 5; - pixel_y = -25 + pixel_y = -21; + dir = 1 }, /obj/machinery/button/door{ id = "whiteship_windows"; name = "Windows Blast Door Control"; - pixel_x = -5; - pixel_y = -25 + pixel_x = -6; + pixel_y = -21; + dir = 1 }, /obj/effect/turf_decal/corner/opaque/blue, -/obj/machinery/button/door{ - id = "whiteship_starboard"; - name = "Starboard Blast Door Control"; - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "whiteship_port"; - name = "Port Blast Door Control"; - pixel_x = -5; - pixel_y = -32 - }, /turf/open/floor/plasteel/dark, /area/ship/bridge) "cG" = ( @@ -2006,10 +1946,23 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/structure/frame/computer{ - anchored = 1; +/obj/structure/frame/computer/retro{ dir = 8 }, +/obj/machinery/button/door{ + id = "whiteship_port"; + name = "Port Blast Door Control"; + pixel_x = -5; + pixel_y = -21; + dir = 1 + }, +/obj/machinery/button/door{ + id = "whiteship_starboard"; + name = "Starboard Blast Door Control"; + pixel_x = 6; + pixel_y = -21; + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/ship/bridge) "cH" = ( @@ -2020,9 +1973,6 @@ /turf/open/floor/plasteel/dark, /area/ship/engineering) "cI" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/rack, @@ -2038,9 +1988,8 @@ pixel_x = -2; pixel_y = 1 }, -/obj/machinery/computer/helm/viewscreen{ - pixel_y = -30 - }, +/obj/machinery/light/small/built/directional/east, +/obj/machinery/computer/helm/viewscreen/directional/south, /turf/open/floor/plasteel/dark, /area/ship/engineering) "cJ" = ( @@ -2048,7 +1997,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plasteel/dark, /area/ship/cargo) "cK" = ( @@ -2056,13 +2005,11 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/three, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ship/cargo) "cL" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, /obj/item/reagent_containers/food/drinks/bottle/vodka{ pixel_y = 12 }, @@ -2086,6 +2033,7 @@ /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "cM" = ( @@ -2123,41 +2071,32 @@ /turf/open/floor/plasteel, /area/ship/crew/canteen) "cO" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 1 +/obj/item/gps{ + gpstag = "NTREC1"; + pixel_x = -9; + pixel_y = 7 }, -/obj/effect/turf_decal/corner/transparent/neutral, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 7 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 +/obj/item/megaphone{ + pixel_x = -2; + pixel_y = -4 }, +/obj/item/radio/intercom/wideband/directional/south, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +/area/ship/bridge) "cP" = ( -/obj/machinery/light/built{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/structure/cable{ icon_state = "1-2" }, +/obj/machinery/light/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/cargo) "cQ" = ( @@ -2185,15 +2124,9 @@ /turf/open/floor/plasteel/dark, /area/ship/cargo) "cS" = ( -/obj/machinery/light/built{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, +/obj/machinery/light/built/directional/east, /turf/open/floor/plasteel/dark, /area/ship/cargo) "cT" = ( @@ -2225,13 +2158,10 @@ /area/ship/crew/canteen) "cU" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/processor, /obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "cV" = ( @@ -2254,6 +2184,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plating, /area/ship/engineering) "cY" = ( @@ -2261,26 +2192,19 @@ /obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stack/cable_coil/red, /obj/item/stock_parts/cell/high, /obj/item/multitool, +/obj/machinery/light/small/built/directional/north, /turf/open/floor/plating, /area/ship/engineering) "cZ" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/light/small/built{ - dir = 1 - }, /obj/machinery/autolathe, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/ship/engineering) "da" = ( @@ -2383,6 +2307,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "dh" = ( @@ -2419,27 +2344,22 @@ "dm" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/hydroponics/constructable, -/obj/machinery/light/small{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "dn" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, /obj/effect/turf_decal/corner/opaque/green, /obj/effect/turf_decal/corner/opaque/green{ dir = 8 }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) "do" = ( @@ -2475,7 +2395,9 @@ /area/ship/cargo) "dt" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, @@ -2544,7 +2466,9 @@ /area/ship/cargo) "dw" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, @@ -2597,12 +2521,7 @@ /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "dy" = ( -/obj/machinery/light/small/built, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ icon_state = "1-8" @@ -2619,6 +2538,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "dz" = ( @@ -2642,7 +2562,8 @@ "dA" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/airlock/glass{ - name = "Kitchen" + name = "Kitchen"; + dir = 4 }, /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 @@ -2671,7 +2592,8 @@ "dD" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/airlock/glass{ - name = "Hydroponics" + name = "Hydroponics"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2772,10 +2694,10 @@ amount = 10 }, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/power/apc/auto_name/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/ship/engineering) "dK" = ( @@ -2836,6 +2758,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "dS" = ( @@ -2896,7 +2819,7 @@ /obj/machinery/computer/monitor{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/built/directional/south, /turf/open/floor/plating, /area/ship/engineering) "dY" = ( @@ -2905,7 +2828,8 @@ id = "whiteship_starboard"; name = "Starboard Blast Door Control"; pixel_x = -25; - pixel_y = -5 + pixel_y = -5; + dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/cargo) @@ -2924,7 +2848,8 @@ id = "whiteship_starboard"; name = "Starboard Blast Door Control"; pixel_x = 25; - pixel_y = -5 + pixel_y = -5; + dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/cargo) @@ -2940,9 +2865,6 @@ /obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, -/obj/machinery/light/small/built{ - dir = 8 - }, /obj/machinery/advanced_airlock_controller{ dir = 8; pixel_x = 25 @@ -2950,14 +2872,11 @@ /obj/machinery/atmospherics/components/unary/vent_pump/layer2{ dir = 1 }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plating, /area/ship/crew/canteen) "ed" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, /obj/machinery/reagentgrinder{ @@ -2979,6 +2898,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "ee" = ( @@ -2989,16 +2909,11 @@ pixel_x = -3; pixel_y = 6 }, -/obj/machinery/light/small/built{ - dir = 4 - }, +/obj/machinery/light/small/built/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) "ef" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/built{ - dir = 8 - }, /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/opaque/green{ @@ -3007,21 +2922,19 @@ /obj/effect/turf_decal/corner/opaque/green{ dir = 4 }, +/obj/machinery/light/small/built/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "eg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/hydroponics/constructable, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, /obj/effect/turf_decal/corner/opaque/green{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/green{ dir = 4 }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) "eh" = ( @@ -3118,6 +3031,13 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"hq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/ntspaceworks_big/one{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "hr" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/washing_machine, @@ -3158,7 +3078,6 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, @@ -3166,23 +3085,19 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plasteel, /area/ship/crew) +"mb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/ntspaceworks_big/three{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "nK" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/docking_port/mobile{ - callTime = 250; - can_move_docking_ports = 1; - dir = 2; - dwidth = 11; - height = 17; - launch_status = 0; - name = "Salvage Ship"; - port_direction = 8; - preferred_direction = 4; - width = 33 - }, /obj/machinery/door/firedoor/border_only{ dir = 1 }, @@ -3254,6 +3169,14 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering) +"qx" = ( +/obj/docking_port/stationary{ + dwidth = 15; + width = 30; + height = 15 + }, +/turf/template_noop, +/area/template_noop) "qX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -3290,6 +3213,16 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering) +"tU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "tZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/mineral/ore_redemption, @@ -3316,6 +3249,13 @@ /obj/effect/turf_decal/corner/opaque/white, /turf/open/floor/plasteel, /area/ship/crew/canteen) +"ve" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/ntspaceworks_big/eight{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "wM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/blood, @@ -3377,16 +3317,21 @@ "zd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/built{ - dir = 4 - }, /obj/effect/turf_decal/corner/opaque/white{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/white, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/light/small/built/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) +"zC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/ntspaceworks_big/four{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Bw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/corner/opaque/white{ @@ -3412,7 +3357,8 @@ "FU" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor{ - id = "whiteship_bridge" + id = "whiteship_bridge"; + dir = 4 }, /obj/machinery/door/firedoor/window, /turf/open/floor/plating, @@ -3445,6 +3391,29 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/crew/canteen) +"NY" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + dir = 4 + }, +/obj/machinery/door/firedoor/window, +/turf/open/floor/plating, +/area/ship/engineering) +"Rw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/computer/cryopod/retro/directional/north{ + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/ship/crew) "Un" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -3457,12 +3426,35 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering) +"Xs" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/ntspaceworks_big/two{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"XZ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 1 + }, +/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/landmark/observer_start, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "YW" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo) (1,1,1) = {" aa +aa ab ax aL @@ -3479,8 +3471,10 @@ aL Un ab aa +aa "} (2,1,1) = {" +aa ab ac ay @@ -3498,8 +3492,10 @@ tN fb ac ab +aa "} (3,1,1) = {" +aa ac ak az @@ -3517,27 +3513,31 @@ dp dH dW ac +aa "} (4,1,1) = {" +aa ac al aA aN bh ac -am +NY ac ci ac -am +NY ac cY el dI dX ac +aa "} (5,1,1) = {" +aa do ac aB @@ -3555,9 +3555,11 @@ JR dJ ac do +aa "} (6,1,1) = {" aa +aa am aC aP @@ -3574,9 +3576,11 @@ fX dK am aa +aa "} (7,1,1) = {" aa +aa YW YW aQ @@ -3593,8 +3597,10 @@ dt YW YW aa +aa "} (8,1,1) = {" +aa ad YW aD @@ -3612,15 +3618,17 @@ qX dL YW ad +aa "} (9,1,1) = {" +aa ae ao aE aR fa bz -dM +tU Fb bW cy @@ -3631,11 +3639,13 @@ du bA dY eh +aa "} (10,1,1) = {" +aa ae -ap -ap +ve +zC aT bo bA @@ -3650,17 +3660,19 @@ qX em bA ei +aa "} (11,1,1) = {" +qx af aq -ap +mb aU bn bB bL bW -bW +XZ nT wM cR @@ -3669,11 +3681,13 @@ dv tZ ap ei +bf "} (12,1,1) = {" +aa ae ar -ap +Xs qX de ap @@ -3688,11 +3702,13 @@ yh ap dZ eh +aa "} (13,1,1) = {" +aa af as -ap +hq qX bo bC @@ -3707,8 +3723,10 @@ qX dM ea ei +aa "} (14,1,1) = {" +aa ad YW aG @@ -3726,9 +3744,11 @@ yh dN YW ad +aa "} (15,1,1) = {" aa +aa YW YW dw @@ -3745,9 +3765,11 @@ dw YW YW aa +aa "} (16,1,1) = {" aa +aa aj aH aW @@ -3764,8 +3786,10 @@ dx dO eb aa +aa "} (17,1,1) = {" +aa do ai ai @@ -3783,27 +3807,31 @@ dy bD bD do +aa "} (18,1,1) = {" +aa nK at aI aY bs bD -bP +cd cc cq cC -cO +bP bD di dz Nu ec ej +aa "} (19,1,1) = {" +aa ai ai ai @@ -3821,8 +3849,10 @@ dA bD bD bD +aa "} (20,1,1) = {" +aa ai au ai @@ -3830,9 +3860,9 @@ ba ai bF bQ -cd -cs cD +cs +cO bQ cU pQ @@ -3840,8 +3870,10 @@ Bw uA ed bD +aa "} (21,1,1) = {" +aa aj av aJ @@ -3859,8 +3891,10 @@ qn yo ee eb +aa "} (22,1,1) = {" +aa ai ai ai @@ -3878,27 +3912,31 @@ dD dS bD bD +aa "} (23,1,1) = {" +aa aj aw aK bd jO ai -FU +bQ cg cv cG -FU +bQ bD dm dE dT ef eb +aa "} (24,1,1) = {" +aa ai bV ai @@ -3916,12 +3954,14 @@ dF dU eg bD +aa "} (25,1,1) = {" +aa ag ai ai -bf +Rw ai ag aa @@ -3935,9 +3975,11 @@ dG dV bD cW +aa "} (26,1,1) = {" aa +aa do ai ai @@ -3954,4 +3996,5 @@ bD bD do aa +aa "} diff --git a/_maps/shuttles/shiptest/independent_metis.dmm b/_maps/shuttles/shiptest/independent_metis.dmm index b3f1a8b554e2..a96a76147ec8 100644 --- a/_maps/shuttles/shiptest/independent_metis.dmm +++ b/_maps/shuttles/shiptest/independent_metis.dmm @@ -17,8 +17,20 @@ id = "foreshutter"; name = "Window Shutters" }, +/obj/machinery/light/directional/west, /turf/open/floor/mineral/titanium/tiled/blue, /area/ship/bridge) +"ak" = ( +/obj/structure/closet/crate, +/obj/item/resonator, +/obj/item/resonator, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/machinery/light/small/directional/north, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/turf/open/floor/plating, +/area/ship/storage) "au" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 @@ -34,6 +46,10 @@ name = "coldroom" }, /area/ship/science/xenobiology) +"ax" = ( +/obj/machinery/light/broken/directional/east, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/fore) "az" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -81,21 +97,24 @@ /obj/machinery/door/firedoor, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"bK" = ( +"bJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/effect/decal/cleanable/xenoblood/xsplatter, +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/effect/decal/cleanable/glass, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "slimelock"; - name = "Lockdown Shutters" - }, /turf/open/floor/plating, -/area/ship/science/xenobiology) +/area/ship/storage) "bL" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -107,17 +126,6 @@ }, /turf/open/floor/plating, /area/ship/science/xenobiology) -"bS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science/xenobiology) "cd" = ( /obj/effect/mob_spawn/human/scientist, /obj/effect/decal/cleanable/blood, @@ -132,6 +140,21 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) +"cl" = ( +/obj/structure/door_assembly/door_assembly_science{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science/robotics) "cv" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall/mineral/titanium/nodiagonal, @@ -173,6 +196,14 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) +"dd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science) "dg" = ( /obj/machinery/nanite_chamber, /turf/open/floor/mineral/titanium/tiled, @@ -196,24 +227,35 @@ /obj/structure/sign/warning/electricshock, /turf/closed/wall/mineral/titanium, /area/ship/science/xenobiology) +"dH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/autolathe, +/obj/machinery/light/directional/west, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/science/robotics) +"dK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/toilet) "dL" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/science/robotics) -"dM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/mineral/titanium/tiled/blue, -/area/ship/bridge) "dQ" = ( /obj/item/shard, /obj/machinery/mecha_part_fabricator, /turf/open/floor/mineral/titanium/tiled, /area/ship/science/robotics) +"dR" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/soup/electron, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/canteen) "dT" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -229,6 +271,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) +"eh" = ( +/obj/structure/table/reinforced, +/obj/item/mmi/posibrain, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/science/robotics) "ej" = ( /obj/machinery/computer/helm, /turf/open/floor/mineral/titanium/tiled/blue, @@ -279,10 +327,6 @@ "eE" = ( /turf/open/floor/circuit/green, /area/ship/science/ai_chamber) -"eM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/ship/hallway/aft) "eO" = ( /obj/structure/sign/warning/deathsposal, /turf/closed/wall/mineral/titanium{ @@ -300,22 +344,9 @@ /obj/effect/spawner/lootdrop/randomthreat, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"eU" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = 27; - set_dir_on_move = 0 - }, -/turf/open/floor/mineral/titanium/tiled/blue, -/area/ship/bridge) "eV" = ( /obj/structure/bookcase/random, +/obj/item/radio/intercom/directional/north, /turf/open/floor/carpet/purple, /area/ship/crew/office) "fb" = ( @@ -327,19 +358,12 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"fc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/science/xenobiology) +"fd" = ( +/obj/machinery/recharge_station, +/obj/item/robot_suit, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/science/robotics) "fn" = ( /obj/item/kirbyplants/dead, /obj/item/aiModule/toyAI, @@ -351,6 +375,11 @@ /obj/effect/decal/cleanable/robot_debris/gib, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/ai_chamber) +"fy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/carpet/purple, +/area/ship/crew/office) "fC" = ( /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine/longrange, @@ -369,16 +398,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/robotics) -"fP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-10" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science/xenobiology) "fQ" = ( /obj/structure/cable{ icon_state = "4-9" @@ -420,25 +439,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/xenobiology) -"gH" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/locked, -/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/ship/engineering/engine) -"gP" = ( -/obj/machinery/light/small, -/obj/structure/frame/machine, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/toilet) "gW" = ( /obj/effect/decal/cleanable/blood, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -468,6 +468,22 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"hi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/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/ship/engineering/engine) "hl" = ( /obj/structure/sign/poster/random, /turf/closed/wall/mineral/titanium{ @@ -491,6 +507,13 @@ }, /turf/open/floor/mineral/titanium/tiled/blue, /area/ship/bridge) +"ht" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/kfp_small/left{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/hallway/aft) "hu" = ( /obj/structure/tank_dispenser, /turf/open/floor/plating, @@ -581,6 +604,22 @@ }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/science/xenobiology) +"is" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "slimelock"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/ship/science/xenobiology) "it" = ( /obj/effect/decal/cleanable/blood, /obj/structure/cable{ @@ -597,25 +636,49 @@ baseturfs = /turf/open/floor/mineral/titanium/tiled/white }, /area/ship/science/xenobiology) +"iw" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ship/science/xenobiology) "iG" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/engine) -"ja" = ( -/obj/item/radio/intercom{ - pixel_y = 26 +"iO" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/fore) +"iT" = ( +/obj/machinery/door/airlock/science{ + dir = 4 }, -/obj/machinery/door/window/brigdoor/southright{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/light/floor, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/machinery/camera/autoname, -/turf/open/floor/circuit/green, -/area/ship/science/ai_chamber) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/science) "jc" = ( /obj/structure/closet/crate/radiation, /obj/item/stack/sheet/mineral/uranium/five, @@ -641,14 +704,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) -"jn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science) "jq" = ( /obj/structure/window/plasma/reinforced/spawner, /obj/structure/window/plasma/reinforced/spawner/east, @@ -705,14 +760,6 @@ }, /turf/open/floor/plating, /area/ship/hallway/aft) -"kj" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/light/broken, -/obj/structure/cable{ - icon_state = "5-10" - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/canteen) "kz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -762,13 +809,15 @@ id = "slimelock"; name = "Lockdown Shutters"; pixel_x = 7; - pixel_y = -25 + pixel_y = -21; + dir = 1 }, /obj/machinery/button/door{ id = "slimekill"; name = "Coldroom Release Shutter Control"; pixel_x = -7; - pixel_y = -25 + pixel_y = -21; + dir = 1 }, /obj/item/stack/tile/mineral/titanium/tiled/white, /obj/machinery/atmospherics/pipe/manifold/general/hidden{ @@ -794,18 +843,10 @@ /obj/effect/spawner/lootdrop/thirtyfive_percent_borerspawner, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/toilet) -"lu" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/purple, -/area/ship/science/xenobiology) +"lo" = ( +/obj/machinery/pipedispenser, +/turf/open/floor/plating, +/area/ship/engineering/engine) "lx" = ( /obj/structure/falsewall/titanium, /obj/structure/sign/poster/retro/science, @@ -882,33 +923,19 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"mD" = ( -/obj/item/chair, -/obj/machinery/light/broken{ - dir = 1 +"mB" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/canteen) -"mJ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ship/science/xenobiology) +"mK" = ( /obj/structure/cable{ - icon_state = "0-8" - }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/gloves/color/yellow, -/obj/item/stack/cable_coil/red, -/obj/item/stack/tape/industrial, -/obj/item/stack/tape/industrial/electrical, -/obj/structure/closet/wall/orange{ - dir = 8; - pixel_x = 30 - }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"mK" = ( -/obj/structure/cable{ - icon_state = "4-8" + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -933,12 +960,35 @@ }, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) +"mQ" = ( +/obj/item/flashlight/glowstick/pink, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-10" + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/fore) "mT" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plating, /area/ship/engineering/electrical) +"mX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = 21 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/button/door{ + id = "rdshutter"; + name = "lockdown shutters"; + pixel_x = -5; + pixel_y = 22 + }, +/turf/open/floor/carpet/purple, +/area/ship/crew/office) "nm" = ( /obj/structure/cable{ icon_state = "6-8" @@ -948,9 +998,7 @@ "nn" = ( /obj/structure/frame/computer, /obj/item/shard, -/obj/machinery/camera/autoname{ - dir = 8 - }, +/obj/machinery/light/directional/east, /turf/open/floor/mineral/titanium/tiled/blue, /area/ship/bridge) "nr" = ( @@ -972,6 +1020,24 @@ }, /turf/open/floor/mineral/titanium/tiled, /area/ship/science/robotics) +"nJ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "slimelock"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/ship/science/xenobiology) "nM" = ( /obj/item/cigbutt, /obj/structure/cable{ @@ -983,6 +1049,11 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) +"nN" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/machinery/light/directional/west, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science) "nR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -1012,13 +1083,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/robotics) -"om" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway/aft) "op" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -1039,17 +1103,16 @@ baseturfs = /turf/open/floor/mineral/titanium/tiled/white }, /area/ship/science/xenobiology) -"oJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/fore) "oK" = ( /obj/structure/sign/poster/official/fruit_bowl, /turf/closed/wall/mineral/titanium, /area/ship/hallway/fore) +"oR" = ( +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/obj/machinery/light/broken/directional/south, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/fore) "oT" = ( /obj/effect/decal/cleanable/glass, /obj/effect/decal/cleanable/dirt, @@ -1072,21 +1135,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/bridge) -"pF" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "slimelock"; - name = "Lockdown Shutters" - }, -/turf/open/floor/plating, -/area/ship/science/xenobiology) "pG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -1094,30 +1142,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 }, +/obj/effect/landmark/observer_start, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/dorm) -"pL" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/office) "pV" = ( /obj/machinery/modular_computer/console/preset/research{ dir = 8 }, /turf/open/floor/carpet/purple, /area/ship/crew/office) -"pZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/autolathe, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/science/robotics) "qe" = ( /obj/item/kirbyplants/random, /mob/living/simple_animal/hostile/alien/maid{ @@ -1126,6 +1159,17 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) +"qi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/aft) "qo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/cigbutt, @@ -1189,15 +1233,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"rg" = ( -/obj/machinery/computer/robotics{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/office) "rh" = ( /obj/machinery/door/airlock/science/glass, /obj/structure/barricade/wooden/crude, @@ -1212,15 +1247,13 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) -"rp" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-10" +"rj" = ( +/obj/effect/decal/cleanable/xenoblood/xgibs/up, +/obj/effect/turf_decal/number/five{ + dir = 1 }, /turf/open/floor/plating, -/area/ship/storage) +/area/ship/hallway/aft) "rt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, @@ -1257,26 +1290,6 @@ /obj/effect/decal/cleanable/xenoblood/xgibs, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) -"sb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/toilet) -"sk" = ( -/obj/effect/decal/cleanable/robot_debris/gib, -/obj/item/bodypart/leg/right/robot, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/science/robotics) "sn" = ( /obj/machinery/ore_silo, /turf/open/floor/plating, @@ -1311,6 +1324,25 @@ }, /turf/open/floor/plating, /area/ship/storage) +"sD" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "slimelock"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/ship/science/xenobiology) "sG" = ( /obj/machinery/camera/autoname{ dir = 1 @@ -1341,11 +1373,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) -"sV" = ( -/obj/effect/decal/cleanable/oil, -/obj/item/bodypart/leg/left/robot, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/science/robotics) +"tg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science/xenobiology) "to" = ( /obj/structure/cable{ icon_state = "2-9" @@ -1385,6 +1417,11 @@ /obj/item/kirbyplants/random, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) +"tO" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light/built/directional/east, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/aft) "uk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/carpet/purple, @@ -1466,12 +1503,17 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"vE" = ( -/obj/effect/decal/cleanable/xenoblood/xsplatter, -/obj/machinery/light/broken, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/fore) +"vB" = ( +/obj/item/extinguisher/empty, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/science/xenobiology) "vV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -1483,43 +1525,24 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"vW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/aft) -"vZ" = ( -/obj/machinery/door/airlock/science/glass, -/obj/structure/barricade/wooden/crude/snow, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"vY" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-10" }, -/turf/open/floor/plating, -/area/ship/science/xenobiology) -"wa" = ( -/obj/structure/frame/machine, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/toilet) -"wl" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) +"wa" = ( +/obj/structure/frame/machine, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/toilet) "wq" = ( /obj/effect/mob_spawn/human/corpse/damaged, /obj/effect/decal/cleanable/dirt, @@ -1536,28 +1559,6 @@ /obj/machinery/camera/autoname, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"wD" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/dorm) -"wK" = ( -/obj/structure/table/glass, -/obj/item/paper{ - name = "List of Friends"; - pixel_x = -4 - }, -/obj/item/pen{ - pixel_x = 5 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science/xenobiology) "wR" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/cubancarp, @@ -1585,19 +1586,6 @@ /obj/item/shard, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"xv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/science/xenobiology) "xy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -1605,13 +1593,6 @@ }, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/xenobiology) -"xB" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) "xL" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/mineral/titanium/tiled/white, @@ -1699,27 +1680,6 @@ }, /turf/open/floor/carpet/purple, /area/ship/crew/office) -"yG" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/pipedispenser, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"yH" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/storage) "yM" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall/mineral/titanium{ @@ -1748,19 +1708,35 @@ /turf/open/floor/mineral/titanium/tiled/white, /area/ship/bridge) "zg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/obj/docking_port/mobile{ - launch_status = 0; - port_direction = 2 +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15; + dir = 2 }, -/turf/open/floor/plating, -/area/ship/hallway/aft) +/turf/template_noop, +/area/template_noop) "zr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) +"zs" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/gloves/color/yellow, +/obj/item/stack/cable_coil/red, +/obj/item/stack/tape/industrial, +/obj/item/stack/tape/industrial/electrical, +/obj/structure/closet/wall/orange{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ship/engineering/electrical) "zw" = ( /obj/structure/closet/secure_closet/RD, /obj/item/reagent_containers/food/drinks/flask/gold, @@ -1788,6 +1764,19 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/hallway/aft) +"zE" = ( +/obj/machinery/door/window/brigdoor/eastright{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ship/science/xenobiology) "zG" = ( /obj/structure/sign/poster/random, /turf/closed/wall/mineral/titanium/nodiagonal, @@ -1796,6 +1785,24 @@ /obj/structure/sign/departments/xenobio, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/canteen) +"zU" = ( +/obj/machinery/door/airlock/science/glass{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science) "zV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1830,24 +1837,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"Ai" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/door/poddoor/shutters{ - id = "slimekill" - }, -/turf/open/floor/circuit/telecomms{ - name = "coldroom" - }, -/area/ship/science/xenobiology) "Al" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, @@ -1862,14 +1851,9 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) -"AD" = ( -/obj/machinery/recharge_station, -/obj/item/robot_suit, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/science/robotics) +"Av" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/crew/dorm) "AG" = ( /obj/effect/decal/cleanable/blood/gibs/up, /obj/machinery/camera/autoname{ @@ -1877,6 +1861,32 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science) +"AH" = ( +/obj/machinery/door/airlock/science{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "slimelock"; + name = "Lockdown Shutters" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ship/science/xenobiology) "AI" = ( /obj/structure/closet/cardboard, /obj/effect/spawner/lootdrop/maintenance/four, @@ -1890,31 +1900,21 @@ }, /turf/open/floor/plating, /area/ship/storage) -"AQ" = ( -/obj/item/extinguisher/empty, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/disposalpipe/broken{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/science/xenobiology) -"Bf" = ( -/obj/structure/cable{ - icon_state = "4-8" +"AU" = ( +/obj/machinery/flasher{ + pixel_y = 23 }, -/obj/structure/cable{ - icon_state = "5-8" +/obj/item/circuitboard/machine/nanite_program_hub, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ship/science/ai_chamber) "Bg" = ( /obj/structure/sign/poster/official/random, /turf/closed/wall/mineral/titanium/nodiagonal, @@ -1929,15 +1929,24 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science) -"Bp" = ( +"Bu" = ( +/obj/machinery/light/directional/east, /obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/firealarm{ - pixel_y = 25 +/obj/item/slime_scanner, +/obj/structure/disposalpipe/segment, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science) +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ship/science/xenobiology) +"Bx" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/broken/directional/south, +/obj/structure/cable{ + icon_state = "5-10" + }, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/canteen) "By" = ( /obj/item/clothing/mask/facehugger_item/lamarr, /obj/effect/decal/cleanable/dirt, @@ -2031,6 +2040,12 @@ }, /turf/closed/wall/mineral/titanium, /area/ship/storage) +"CA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/item/crowbar/red, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/aft) "CF" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/canteen) @@ -2044,25 +2059,25 @@ /obj/effect/decal/cleanable/xenoblood, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science) -"CP" = ( -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/plating, -/area/ship/hallway/aft) +"CQ" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/frame/machine, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/toilet) "CR" = ( /obj/effect/decal/cleanable/blood, /obj/machinery/door/firedoor, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"CT" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"CU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/turf/open/floor/carpet/purple, -/area/ship/crew/office) +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/fore) "CZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -2078,29 +2093,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"Dg" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science/xenobiology) -"Dq" = ( -/obj/machinery/door/window/brigdoor/eastright{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/purple, -/area/ship/science/xenobiology) "Dr" = ( /obj/structure/cable{ icon_state = "2-5" @@ -2125,6 +2117,17 @@ baseturfs = /turf/open/floor/mineral/titanium/tiled/white }, /area/ship/hallway/aft) +"DD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/science/xenobiology) "DF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/tiled, @@ -2207,47 +2210,15 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"Eg" = ( -/obj/machinery/door/airlock/science/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science) "Eh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/toilet) -"Ej" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science/xenobiology) "Er" = ( /mob/living/carbon/monkey, /obj/effect/decal/cleanable/blood, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"EG" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) "EL" = ( /obj/effect/decal/cleanable/blood, /obj/effect/mob_spawn/human/scientist, @@ -2259,14 +2230,6 @@ "EM" = ( /turf/closed/wall/mineral/titanium, /area/ship/science/robotics) -"EN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-10" - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/canteen) "EP" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2274,14 +2237,6 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) -"ET" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/soup/electron, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/canteen) "Fk" = ( /obj/structure/window/reinforced/spawner, /obj/structure/window/reinforced/spawner/west, @@ -2477,6 +2432,32 @@ /obj/effect/spawner/lootdrop/xenospawner, /turf/open/floor/plating, /area/ship/science/xenobiology) +"Hn" = ( +/obj/machinery/door/airlock/science{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "slimelock"; + name = "Lockdown Shutters" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ship/science/xenobiology) "Ho" = ( /obj/structure/barricade/wooden, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2490,13 +2471,25 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"Hy" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall/mineral/titanium, -/area/ship/science) -"Hz" = ( -/obj/item/chair{ - dir = 8 +"Hx" = ( +/obj/structure/table/glass, +/obj/item/paper{ + name = "List of Friends"; + pixel_x = -4 + }, +/obj/item/pen{ + pixel_x = 5 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science/xenobiology) +"Hy" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall/mineral/titanium, +/area/ship/science) +"Hz" = ( +/obj/item/chair{ + dir = 8 }, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) @@ -2553,15 +2546,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) -"HW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/fore) "Ic" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid, @@ -2599,22 +2583,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) -"In" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable{ - icon_state = "6-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/toilet) "Iq" = ( /obj/machinery/power/terminal, /obj/structure/cable/yellow, @@ -2655,22 +2623,6 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"IJ" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/tiled/purple, -/area/ship/science/xenobiology) "IS" = ( /obj/item/stack/sheet/mineral/titanium{ amount = 2 @@ -2701,6 +2653,17 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) +"IZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science/xenobiology) "Jg" = ( /obj/structure/holosign/barrier/infinite, /obj/structure/cable{ @@ -2719,23 +2682,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) -"Jj" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/disposalpipe/broken{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "slimelock"; - name = "Lockdown Shutters" - }, -/turf/open/floor/plating, -/area/ship/science/xenobiology) "Jo" = ( /obj/machinery/computer/rdconsole/robotics{ dir = 8 @@ -2758,15 +2704,6 @@ "JB" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/electrical) -"JD" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "5-8" - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/dorm) "JL" = ( /obj/structure/cable{ icon_state = "6-8" @@ -2803,22 +2740,16 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) +"JX" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/purple, +/area/ship/crew/office) "Kb" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/bridge) -"Kj" = ( -/obj/structure/door_assembly/door_assembly_science, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science/robotics) "Kv" = ( /obj/effect/decal/cleanable/blood, /obj/effect/mob_spawn/drone, @@ -2827,10 +2758,6 @@ }, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/toilet) -"Ky" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/dorm) "Kz" = ( /obj/effect/decal/cleanable/blood, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -2863,6 +2790,13 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) +"KH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/number/two{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/hallway/aft) "KK" = ( /obj/structure/bed/pod, /obj/item/bedsheet/rd, @@ -2873,12 +2807,6 @@ /obj/structure/holosign/barrier/infinite, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"KS" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/fore) "Le" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, @@ -2886,6 +2814,37 @@ /obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/ship/science/robotics) +"Lh" = ( +/obj/item/radio/intercom/wideband/directional/north, +/obj/machinery/button/flasher{ + pixel_y = -25 + }, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8 + }, +/obj/item/stack/sheet/rglass, +/obj/item/stack/cable_coil/cut/red, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/floor, +/obj/item/circuitboard/aicore, +/obj/effect/mob_spawn/human/scientist, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/airalarm/directional/south{ + pixel_y = -32 + }, +/obj/machinery/camera/autoname{ + dir = 6 + }, +/turf/open/floor/circuit/green, +/area/ship/science/ai_chamber) +"Lj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/dorm) "Lo" = ( /obj/machinery/porta_turret/syndicate/energy{ faction = list("hivebot") @@ -2909,60 +2868,17 @@ }, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/xenobiology) -"LK" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science) -"LO" = ( -/obj/item/flashlight/glowstick/pink, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-10" - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/fore) -"LP" = ( -/obj/machinery/door/airlock/science, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "slimelock"; - name = "Lockdown Shutters" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/tiled/purple, -/area/ship/science/xenobiology) -"Mc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/slime_scanner, -/obj/structure/disposalpipe/segment, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/turf/open/floor/mineral/titanium/tiled/purple, -/area/ship/science/xenobiology) "Mg" = ( /obj/structure/sign/poster/official/random, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/canteen) +"Mo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/kfp_small/right{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/hallway/aft) "My" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -2974,18 +2890,18 @@ }, /turf/open/floor/plating, /area/ship/science/xenobiology) -"ME" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science) "MK" = ( /obj/machinery/vending/cigarette, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) +"MP" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/ship/crew/office) "MR" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -3005,6 +2921,12 @@ "Nh" = ( /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) +"Nj" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science/xenobiology) "Nl" = ( /turf/closed/wall/mineral/titanium, /area/ship/storage) @@ -3021,6 +2943,16 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) +"Ns" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-10" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science/xenobiology) "Nz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3047,6 +2979,13 @@ }, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/dorm) +"NF" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science) "NG" = ( /obj/structure/cable{ icon_state = "1-6" @@ -3092,24 +3031,6 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science) -"Ob" = ( -/obj/machinery/button/door{ - id = "rdshutter"; - name = "lockdown shutters"; - pixel_x = -5; - pixel_y = 39 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = 40 - }, -/obj/item/radio/intercom{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/carpet/purple, -/area/ship/crew/office) "Oc" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 9 @@ -3117,12 +3038,24 @@ /obj/structure/sign/warning/coldtemp, /turf/closed/wall/mineral/titanium, /area/ship/science/xenobiology) +"Oe" = ( +/obj/machinery/pipedispenser/disposal, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Oo" = ( /obj/structure/sign/poster/official/ion_carbine, /turf/closed/wall/mineral/titanium{ baseturfs = /turf/open/floor/mineral/titanium/tiled/white }, /area/ship/storage) +"Ow" = ( +/obj/docking_port/mobile{ + launch_status = 0; + port_direction = 2; + dheight = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/ship/science/xenobiology) "Ox" = ( /obj/structure/cable{ icon_state = "1-10" @@ -3136,6 +3069,21 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) +"OB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-10" + }, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/canteen) +"OD" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/dorm) "OE" = ( /obj/effect/decal/cleanable/xenoblood/xgibs/core, /obj/structure/cable{ @@ -3149,21 +3097,12 @@ }, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science) -"OM" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/aft) -"ON" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/science/xenobiology) +"OI" = ( +/obj/item/chair, +/obj/machinery/light/broken/directional/north, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/canteen) "OS" = ( /obj/effect/decal/cleanable/blood/gibs/old, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -3175,9 +3114,31 @@ /mob/living/carbon/monkey, /turf/open/floor/plating, /area/ship/science/xenobiology) +"OU" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/item/radio/intercom/wideband/directional/west{ + set_dir_on_move = 0 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ship/bridge) "OV" = ( /turf/closed/wall/mineral/titanium, /area/ship/crew/toilet) +"OY" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/ship/crew/office) "Pj" = ( /obj/structure/showcase/cyborg/old, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -3185,6 +3146,13 @@ }, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/ai_chamber) +"Pk" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Pt" = ( /obj/effect/decal/cleanable/oil, /obj/item/wrench/crescent, @@ -3193,6 +3161,21 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"Pu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/disks_nanite, +/obj/item/nanite_scanner, +/obj/item/nanite_remote, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-9" + }, +/obj/item/clothing/suit/toggle/labcoat/raincoat{ + desc = "A translucent, uniquely designed labcoat. It's made from a special material that actively repels fluids. You're pretty sure this is just a raincoat"; + name = "clear labcoat" + }, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/toilet) "Pw" = ( /obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{ dir = 1 @@ -3215,6 +3198,25 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science) +"PB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/fore) +"PD" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable{ + icon_state = "6-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, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/toilet) "PJ" = ( /mob/living/carbon/monkey, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ @@ -3226,29 +3228,11 @@ }, /turf/open/floor/plating, /area/ship/science/xenobiology) -"PX" = ( -/obj/machinery/door/airlock/science, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "slimelock"; - name = "Lockdown Shutters" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/tiled/purple, -/area/ship/science/xenobiology) +"PS" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/bodypart/leg/left/robot, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/science/robotics) "PY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -3263,6 +3247,13 @@ /obj/effect/spawner/lootdrop/xenospawner, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) +"Qb" = ( +/obj/effect/decal/cleanable/xenoblood, +/obj/effect/turf_decal/kfp_small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/hallway/aft) "Qg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -3311,11 +3302,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) +"QP" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/dorm) "QS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ship/engineering/electrical) "QT" = ( @@ -3389,31 +3385,23 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"RU" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "slimelock"; - name = "Lockdown Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 4; - req_access_txt = "55" +"RW" = ( +/obj/effect/decal/cleanable/robot_debris/gib, +/obj/item/bodypart/leg/right/robot, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plating, -/area/ship/science/xenobiology) -"Sa" = ( +/turf/open/floor/mineral/titanium/tiled, +/area/ship/science/robotics) +"Sc" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/turf/open/floor/carpet/purple, -/area/ship/crew/office) +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/hallway/aft) "Sd" = ( /obj/structure/table, /mob/living/simple_animal/hostile/facehugger/toy, @@ -3480,6 +3468,21 @@ }, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/dorm) +"SR" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/circuit/telecomms{ + name = "coldroom" + }, +/area/ship/science/xenobiology) "SZ" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -3519,14 +3522,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) -"TE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/crowbar/red, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/aft) "TH" = ( /obj/structure/bed/pod, /obj/item/bedsheet/purple, @@ -3544,6 +3539,15 @@ }, /turf/open/floor/mineral/titanium/tiled, /area/ship/crew/canteen) +"TT" = ( +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/dorm) "TV" = ( /obj/effect/decal/cleanable/glass, /obj/effect/decal/cleanable/dirt, @@ -3552,10 +3556,6 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"TZ" = ( -/obj/effect/decal/cleanable/xenoblood/xgibs/up, -/turf/open/floor/plating, -/area/ship/hallway/aft) "Uk" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/mineral/titanium/tiled/white, @@ -3574,6 +3574,15 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) +"Ur" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-10" + }, +/turf/open/floor/plating, +/area/ship/storage) "Us" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -3599,29 +3608,11 @@ /obj/item/cigbutt{ pixel_x = 5 }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/canteen) -"Uv" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "slimelock"; - name = "Lockdown Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 4; - req_access_txt = "55" - }, -/turf/open/floor/plating, -/area/ship/science/xenobiology) +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/mineral/titanium/tiled, +/area/ship/crew/canteen) "Uy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -3655,6 +3646,17 @@ /obj/item/assembly/flash/handheld, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/ai_chamber) +"UP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/science/xenobiology) "UY" = ( /obj/structure/sign/poster/official/random, /turf/closed/wall/mineral/titanium, @@ -3672,11 +3674,6 @@ }, /turf/open/floor/circuit/green, /area/ship/science/ai_chamber) -"Vj" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/pipedispenser/disposal, -/turf/open/floor/plating, -/area/ship/engineering/engine) "Vo" = ( /obj/structure/sign/poster/random, /turf/closed/wall/mineral/titanium{ @@ -3686,25 +3683,11 @@ "Vw" = ( /turf/closed/wall/mineral/titanium, /area/ship/hallway/fore) -"Vx" = ( -/obj/machinery/door/airlock/science, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/locked, -/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/mineral/titanium/tiled, +"Vy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/machinery/light/directional/east, +/turf/open/floor/mineral/titanium/tiled/white, /area/ship/science) "Vz" = ( /obj/machinery/vending/classicbeats, @@ -3724,6 +3707,24 @@ /obj/structure/sign/warning/nosmoking, /turf/closed/wall/mineral/titanium, /area/ship/science/robotics) +"VO" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "slimelock"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/ship/science/xenobiology) "VQ" = ( /obj/structure/cable{ icon_state = "4-9" @@ -3764,20 +3765,46 @@ /obj/machinery/computer/mecha, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/bridge) +"Wf" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/number/zero{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/hallway/aft) +"Wg" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "slimelock"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/ship/science/xenobiology) +"Wk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Wl" = ( /obj/structure/cable{ icon_state = "6-8" }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/fore) -"Wo" = ( -/obj/structure/table/reinforced, -/obj/item/mmi/posibrain, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/science/robotics) "Wq" = ( /obj/effect/decal/cleanable/blood/gibs/body{ dir = 1 @@ -3813,6 +3840,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/xenobiology) +"WN" = ( +/obj/machinery/light/broken/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ship/science/xenobiology) "WQ" = ( /obj/structure/window/reinforced/spawner, /obj/machinery/power/smes/shuttle/precharged{ @@ -3929,29 +3962,19 @@ "XG" = ( /turf/closed/wall/mineral/titanium, /area/ship/bridge) -"XH" = ( -/obj/machinery/flasher{ - pixel_y = 23 - }, -/obj/item/circuitboard/machine/nanite_program_hub, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/mineral/titanium/tiled/purple, -/area/ship/science/ai_chamber) "XI" = ( /obj/structure/sign/poster/official/no_erp, /turf/closed/wall/mineral/titanium{ baseturfs = /turf/open/floor/mineral/titanium/tiled/white }, /area/ship/science/ai_chamber) +"XK" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) "XN" = ( /obj/item/aicard, /obj/structure/cable{ @@ -3973,40 +3996,20 @@ /obj/item/toy/figure/roboticist, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science) -"Ye" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/disks_nanite, -/obj/item/nanite_scanner, -/obj/item/nanite_remote, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-9" - }, -/obj/item/clothing/suit/toggle/labcoat/raincoat{ - desc = "A translucent, uniquely designed labcoat. It's made from a special material that actively repels fluids. You're pretty sure this is just a raincoat"; - name = "clear labcoat" +"Yj" = ( +/obj/machinery/door/airlock/science/glass{ + dir = 4 }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/toilet) -"Yf" = ( -/obj/machinery/firealarm{ - pixel_y = 25 +/obj/structure/barricade/wooden/crude/snow, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/fore) -"Yi" = ( -/obj/structure/closet/crate, -/obj/item/resonator, -/obj/item/resonator, -/obj/item/t_scanner/adv_mining_scanner/lesser, -/obj/item/t_scanner/adv_mining_scanner/lesser, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, /turf/open/floor/plating, -/area/ship/storage) +/area/ship/science/xenobiology) "Yk" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4055,17 +4058,11 @@ /turf/open/floor/mineral/titanium/tiled/purple, /area/ship/science/xenobiology) "YK" = ( -/turf/closed/wall/mineral/titanium{ - baseturfs = /turf/open/floor/mineral/titanium/tiled/white - }, -/area/ship/hallway/fore) -"YO" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/mineral/titanium/tiled, -/area/ship/crew/dorm) +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ship/hallway/aft) "YP" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer2{ dir = 9 @@ -4097,6 +4094,20 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/science/xenobiology) +"Zd" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera/autoname, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/circuit/green, +/area/ship/science/ai_chamber) "Zq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -4105,52 +4116,17 @@ /obj/effect/decal/cleanable/blood/gibs/torso, /turf/open/floor/mineral/titanium/tiled/white, /area/ship/hallway/aft) -"ZH" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/machinery/power/apc/auto_name/north, +"Zs" = ( +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ - icon_state = "0-10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 + icon_state = "0-4" }, -/turf/open/floor/mineral/titanium/tiled/white, -/area/ship/hallway/aft) +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ship/bridge) "ZI" = ( /obj/structure/sign/poster/retro/lasergun_new, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/engine) -"ZJ" = ( -/obj/item/radio/intercom/wideband{ - pixel_y = 27 - }, -/obj/machinery/button/flasher{ - pixel_y = -25 - }, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8 - }, -/obj/item/stack/sheet/rglass, -/obj/item/stack/cable_coil/cut/red, -/obj/effect/decal/cleanable/blood, -/obj/machinery/light/floor, -/obj/item/circuitboard/aicore, -/obj/effect/mob_spawn/human/scientist, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/airalarm/directional/south{ - pixel_y = -32 - }, -/obj/machinery/camera/autoname{ - dir = 6 - }, -/turf/open/floor/circuit/green, -/area/ship/science/ai_chamber) "ZM" = ( /obj/machinery/airalarm/directional/east, /obj/item/kirbyplants/random, @@ -4194,7 +4170,8 @@ XO XO XO XO -XO +Ow +vo vo vo "} @@ -4207,7 +4184,7 @@ ih CF CF Ag -Ej +tg HS Np uS @@ -4225,6 +4202,7 @@ WS XO vo vo +vo "} (3,1,1) = {" vo @@ -4239,13 +4217,13 @@ Er cK DM dT -xv +UP Hj gb -AQ +vB Kz gb -fc +DD OS bL au @@ -4253,13 +4231,14 @@ HA XO vo vo +vo "} (4,1,1) = {" vo vo ih Mg -mD +OI lS Xx or @@ -4267,20 +4246,21 @@ Ab Us bn WZ -RU -bK +nJ +Wg ow -Uv -Jj +sD +VO iu -RU -pF +nJ +is Ww -Ai +SR Ti XO vo vo +vo "} (5,1,1) = {" vo @@ -4290,14 +4270,14 @@ gZ IB qo Xx -Dq +zE Fk kK IE -ON +Nj xs yr -Dg +WN vt aC az @@ -4305,10 +4285,11 @@ JO cV im Oc -vZ +Yj Gu sH vo +vo "} (6,1,1) = {" vo @@ -4337,6 +4318,7 @@ Iq FX JB sH +vo "} (7,1,1) = {" vo @@ -4346,7 +4328,7 @@ Uu TQ Tr Xx -lu +mB nT kK JT @@ -4358,13 +4340,14 @@ LG NS hx YC -bS +IZ dD -EG +XK jk Sg Sg sH +vo "} (8,1,1) = {" vo @@ -4374,9 +4357,9 @@ sQ mN wR Xx -PX +Hn Gu -IJ +iw NA PJ WG @@ -4393,6 +4376,7 @@ HV gj YP sH +vo "} (9,1,1) = {" vo @@ -4405,22 +4389,23 @@ Xx hR kS jy -Mc +Bu ep gE YG -fP +Ns Uo ry -wK +Hx ZM ib kS -mJ +zs QS ra ra sH +vo "} (10,1,1) = {" vo @@ -4430,7 +4415,7 @@ sQ gW CF zJ -LP +AH Fy kS kS @@ -4449,6 +4434,7 @@ mT uP ij sH +vo "} (11,1,1) = {" vo @@ -4461,30 +4447,31 @@ NG Al Qu Jq -oJ +PB CZ Xt KO QM Iz -TE +CA wq NY De QM ZI -gH +hi bB bB -sH +JB +vo "} (12,1,1) = {" vo ih -ET -kj +dR +Bx BD -YK +fU zr to DK @@ -4501,21 +4488,22 @@ NR PY Zr jd -Bf +Wk fb hb vh +vo "} (13,1,1) = {" vo ih -EN +OB kC Vw rT zY Gj -cC +Av cC cC cC @@ -4525,13 +4513,14 @@ vb vb vb vb -DC +Wz hI Dr ms Iw WF -yG +lo +iG vo "} (14,1,1) = {" @@ -4540,7 +4529,7 @@ Kb XG XG Vw -Yf +iO Nz DO cC @@ -4554,27 +4543,28 @@ SA nr uF DC -ZH +vY QM jd -xB +Pk rb WQ vh +vo "} (15,1,1) = {" um ag -dM +Zs pA oK rY qP -HW +CU cC -wD +OD Nm -Ky +QP vb GK eE @@ -4587,7 +4577,8 @@ KO jd Pt WF -Vj +Oe +iG vo "} (16,1,1) = {" @@ -4600,23 +4591,24 @@ Qu JL Rk cC -JD +TT eo SN vb -ZJ +Lh ZZ Yz UL eE DC -wl +qi Wr jd xg Fr hb vh +vo "} (17,1,1) = {" um @@ -4634,16 +4626,17 @@ aT XI Vb ZZ -XH +AU EL uY zx Dt -vW +Sc iG bB bB iG +iG vo "} (18,1,1) = {" @@ -4656,11 +4649,11 @@ HQ Af DQ cC -YO +Lj XB Vz vb -ja +Zd ZZ Pj XN @@ -4673,20 +4666,21 @@ kb jI ic vo +vo "} (19,1,1) = {" sr nn -eU +OU if Vw -LO +mQ At -vE +oR cC JM Nm -Ky +QP vb nm eE @@ -4697,10 +4691,11 @@ DC IY jH DC -eM -eM +KH +Mo ic vo +vo "} (20,1,1) = {" XG @@ -4725,10 +4720,11 @@ DC Cm QM DC -om -CP +Wf +Qb Wz ic +vo "} (21,1,1) = {" vo @@ -4739,7 +4735,7 @@ fU tG Wl qW -cC +Av cC cC cC @@ -4749,22 +4745,23 @@ vb vb vb Vo -DC +Wz Gw De yc -TZ -eM +rj +ht aB +YK zg "} (22,1,1) = {" vo Ft eV -Sa +fy +fU fU -YK Qu xY ee @@ -4785,11 +4782,12 @@ hu tw cv ic +vo "} (23,1,1) = {" vo me -Ob +mX uk UH UY @@ -4797,13 +4795,13 @@ Qu DV Qu vs -KS +ax Uk cf TV Ri oT -OM +tO CR NY fQ @@ -4813,16 +4811,17 @@ ic ic ic vo +vo "} (24,1,1) = {" vo DS He lz -pL +MP Ft qB -Eg +zU Hy qB QB @@ -4834,32 +4833,33 @@ hD tt EM EM -Kj +cl VJ dL vo vo vo vo +vo "} (25,1,1) = {" vo Sh mL fC -CT +OY me AG Bi us -LK +nN NZ Ut XY BC dQ YB -pZ +dH Xc sp Co @@ -4869,6 +4869,7 @@ vo vo vo vo +vo "} (26,1,1) = {" vo @@ -4885,7 +4886,7 @@ XF CK sG BC -sk +RW ut NP Xn @@ -4897,6 +4898,7 @@ vo vo vo vo +vo "} (27,1,1) = {" vo @@ -4925,6 +4927,7 @@ vo vo vo vo +vo "} (28,1,1) = {" vo @@ -4943,7 +4946,7 @@ HC em DF DF -sV +PS Rj nI jS @@ -4953,25 +4956,26 @@ vo vo vo vo +vo "} (29,1,1) = {" vo aX fn -rg +JX pV me -Bp -jn +NF +dd HG -ME +Vy xL mK XZ BC -AD +fd Jo -Wo +eh Ic DF so @@ -4981,6 +4985,7 @@ vo vo vo vo +vo "} (30,1,1) = {" vo @@ -4994,7 +4999,7 @@ qB qB fH fH -Vx +iT eB dL BC @@ -5002,9 +5007,10 @@ BC zG UZ Oo -yH +bJ wu -EM +dL +vo vo vo vo @@ -5022,9 +5028,9 @@ vo vo OV rK -In +PD Fo -sb +dK yW dg Nl @@ -5037,6 +5043,7 @@ vo vo vo vo +vo "} (32,1,1) = {" vo @@ -5051,7 +5058,7 @@ vo vo OV rK -Ye +Pu qL Kv nF @@ -5065,6 +5072,7 @@ vo vo vo vo +vo "} (33,1,1) = {" vo @@ -5082,9 +5090,9 @@ OV GL wa Gz -gP +CQ Nl -Yi +ak ab ew Nl @@ -5093,6 +5101,7 @@ vo vo vo vo +vo "} (34,1,1) = {" vo @@ -5112,7 +5121,7 @@ rK VE Eh Nl -rp +Ur Gh jc Nl @@ -5121,6 +5130,7 @@ vo vo vo vo +vo "} (35,1,1) = {" vo @@ -5149,6 +5159,7 @@ vo vo vo vo +vo "} (36,1,1) = {" vo @@ -5177,4 +5188,5 @@ vo vo vo vo +vo "} diff --git a/_maps/shuttles/shiptest/independent_nemo.dmm b/_maps/shuttles/shiptest/independent_nemo.dmm index 1841fb2080da..f5867eeddb84 100644 --- a/_maps/shuttles/shiptest/independent_nemo.dmm +++ b/_maps/shuttles/shiptest/independent_nemo.dmm @@ -22,6 +22,7 @@ /area/ship/hallway/central) "ap" = ( /obj/machinery/door/poddoor{ + dir = 4; id = "nemoblast" }, /obj/machinery/power/shieldwallgen/atmos{ @@ -47,6 +48,9 @@ /obj/structure/cable{ icon_state = "2-8" }, +/obj/effect/turf_decal/kfp_small/left{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/maintenance/port) "aF" = ( @@ -62,10 +66,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -141,7 +142,9 @@ /turf/open/floor/plating, /area/ship/engineering/atmospherics) "bx" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, +/obj/machinery/door/poddoor/incinerator_atmos_aux{ + dir = 4 + }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) "bI" = ( @@ -152,7 +155,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -197,10 +200,7 @@ /obj/effect/turf_decal/siding/purple{ dir = 8 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/dark, /area/ship/science) "cj" = ( @@ -208,9 +208,7 @@ /turf/open/floor/wood, /area/ship/crew/dorm) "cq" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plasteel/white, /area/ship/crew/dorm) @@ -246,9 +244,7 @@ /turf/open/floor/plasteel/white, /area/ship/crew/dorm) "di" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/machinery/suit_storage_unit/mining, /obj/effect/turf_decal/siding/brown{ dir = 1 @@ -259,7 +255,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -336,9 +332,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, @@ -367,10 +361,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/siding/thinplating/dark, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) @@ -411,6 +402,7 @@ dir = 4 }, /obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; id = "nemowindows" }, /turf/open/floor/plating, @@ -456,6 +448,7 @@ /area/ship/engineering/atmospherics) "eT" = ( /obj/machinery/door/airlock/command/glass{ + dir = 4; name = "Bridge" }, /obj/machinery/door/firedoor/border_only{ @@ -506,6 +499,7 @@ /area/ship/hallway/central) "fA" = ( /obj/machinery/door/poddoor{ + dir = 4; id = "nemoblast" }, /obj/machinery/power/shieldwallgen/atmos{ @@ -574,13 +568,8 @@ /turf/open/floor/plating, /area/ship/engineering/atmospherics) "gI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, /obj/structure/table/reinforced, /obj/item/reagent_containers/food/snacks/fishfingers, /obj/effect/turf_decal/siding/wood{ @@ -589,7 +578,7 @@ /turf/open/floor/wood, /area/ship/crew/canteen) "gL" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -604,19 +593,13 @@ /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) "gO" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 }, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/carpet/black, /area/ship/bridge) "hf" = ( @@ -718,10 +701,7 @@ /turf/open/floor/pod, /area/ship/hallway/central) "iv" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/firealarm/directional/east, /obj/machinery/recharge_station, /obj/item/mmi/posibrain, /turf/open/floor/circuit, @@ -740,7 +720,7 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/computer/atmos_alert{ dir = 1 }, @@ -750,7 +730,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -779,18 +759,12 @@ /area/ship/science) "iP" = ( /obj/structure/table/wood, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/siding/wood{ dir = 5 }, /obj/item/storage/backpack/magspear_quiver, /obj/item/pneumatic_cannon/speargun, -/obj/machinery/newscaster{ - pixel_x = 30 - }, /turf/open/floor/wood, /area/ship/crew/library) "iR" = ( @@ -799,9 +773,7 @@ /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) "iZ" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/rack, /obj/item/hatchet/wooden, /obj/item/hatchet/wooden, @@ -883,10 +855,7 @@ dir = 1 }, /obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/computer/helm/viewscreen{ - dir = 1; - pixel_y = -30 - }, +/obj/machinery/computer/helm/viewscreen/directional/south, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "jT" = ( @@ -896,9 +865,7 @@ /obj/machinery/power/terminal{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating, /area/ship/engineering/electrical) "kd" = ( @@ -911,14 +878,6 @@ "kf" = ( /obj/machinery/door/airlock/external/glass, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/docking_port/mobile{ - callTime = 250; - dir = 2; - launch_status = 0; - name = "Fauna Research Ship"; - port_direction = 8; - preferred_direction = 4 - }, /turf/open/floor/pod, /area/ship/hallway/central) "kh" = ( @@ -931,7 +890,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, @@ -1073,22 +1032,16 @@ /area/ship/engineering/atmospherics) "ma" = ( /obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 23 - }, +/obj/machinery/light/directional/north, /obj/machinery/computer/bookmanagement, /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/ship/crew/library) "mg" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/siding/blue{ dir = 5 }, @@ -1164,6 +1117,7 @@ /area/ship/engineering/electrical) "mO" = ( /obj/machinery/door/airlock/public/glass{ + dir = 4; name = "Central Hallway" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1189,7 +1143,7 @@ /area/ship/hallway/central) "mQ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/portable_atmospherics/pump, /turf/open/floor/plating, /area/ship/maintenance/starboard) @@ -1205,15 +1159,13 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/suit_storage_unit/atmos, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) "ns" = ( /obj/machinery/bookbinder, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -1225,6 +1177,23 @@ /obj/structure/window/plasma/reinforced/spawner/north, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) +"nz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "nH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -1233,17 +1202,11 @@ /turf/open/floor/plasteel/white, /area/ship/medical) "nJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 }, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -25 - }, +/obj/item/radio/intercom/wideband/directional/west, /turf/open/floor/carpet/black, /area/ship/bridge) "nZ" = ( @@ -1304,6 +1267,7 @@ dir = 8 }, /obj/machinery/door/airlock/research/glass{ + dir = 4; name = "Science Lab" }, /obj/effect/turf_decal/siding/wood/corner{ @@ -1369,9 +1333,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/trimline/opaque/red/line, /turf/open/floor/engine, /area/ship/engineering/atmospherics) @@ -1385,20 +1347,20 @@ /turf/open/floor/pod, /area/ship/hallway/central) "qt" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/cable{ icon_state = "1-4" }, /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/turf_decal/kfp_small/right{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/maintenance/port) "qz" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/south, /obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plating, /area/ship/engineering/atmospherics) @@ -1416,9 +1378,7 @@ /turf/open/floor/plating, /area/ship/maintenance/starboard) "qG" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/cable{ icon_state = "2-4" }, @@ -1472,10 +1432,7 @@ /obj/structure/chair/comfy/black{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/carpet/black, /area/ship/crew/library) "rX" = ( @@ -1483,7 +1440,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/siding/yellow{ dir = 4 }, @@ -1505,10 +1462,7 @@ dir = 4 }, /obj/item/clothing/suit/hooded/cloak/goliath/polar, -/obj/machinery/computer/helm/viewscreen{ - dir = 8; - pixel_x = 30 - }, +/obj/machinery/computer/helm/viewscreen/directional/east, /turf/open/floor/wood, /area/ship/crew/library) "tb" = ( @@ -1522,15 +1476,13 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/table/glass, /obj/item/reagent_containers/spray/cleaner, /obj/effect/turf_decal/siding/blue{ dir = 9 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/bodybag/bluespace, /turf/open/floor/plasteel/white, /area/ship/medical) @@ -1539,10 +1491,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/wood, /area/ship/crew/dorm) "tX" = ( @@ -1619,6 +1568,7 @@ "uR" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; id = "nemobridge" }, /turf/open/floor/plating, @@ -1685,7 +1635,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/closet/secure_closet/freezer/meat, /obj/item/storage/fancy/egg_box, /obj/item/storage/fancy/egg_box, @@ -1721,9 +1671,7 @@ dir = 4; name = "Waste to Environment" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/trimline/opaque/red/arrow_ccw, /turf/open/floor/engine, /area/ship/engineering/atmospherics) @@ -1734,13 +1682,11 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/trimline/opaque/purple/line, /turf/open/floor/plating, /area/ship/engineering/atmospherics) @@ -1765,7 +1711,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/thinplating/dark, /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -1776,7 +1722,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/tank_dispenser/oxygen, /turf/open/floor/pod, /area/ship/hallway/central) @@ -1800,18 +1746,14 @@ /area/ship/hallway/central) "xW" = ( /obj/structure/bookcase/random/nonfiction, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood, /area/ship/crew/library) "xY" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/rack, /obj/item/pickaxe/emergency, /obj/item/pickaxe/emergency, @@ -1828,6 +1770,7 @@ /area/ship/maintenance/port) "yz" = ( /obj/machinery/door/airlock/atmos{ + dir = 4; name = "Atmospherics" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1893,8 +1836,11 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/item/poster/random_contraband, +/obj/effect/turf_decal/number/zero{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/maintenance/port) "An" = ( @@ -1905,6 +1851,7 @@ dir = 8 }, /obj/machinery/door/airlock/atmos/glass{ + dir = 4; name = "Atmospherics" }, /turf/open/floor/engine, @@ -1920,6 +1867,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/machinery/newscaster/directional/north, /turf/open/floor/wood, /area/ship/crew/library) "AE" = ( @@ -1937,16 +1885,12 @@ /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) "AX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 23 - }, +/obj/machinery/light/directional/west, /obj/machinery/ore_silo, /obj/effect/turf_decal/siding/brown{ dir = 9 }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) "Be" = ( @@ -2083,6 +2027,14 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/ship/crew/dorm) +"CQ" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15 + }, +/turf/template_noop, +/area/template_noop) "CS" = ( /obj/structure/cable{ icon_state = "2-4" @@ -2099,6 +2051,7 @@ "CV" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; id = "nemowindows" }, /obj/machinery/atmospherics/pipe/layer_manifold{ @@ -2164,6 +2117,7 @@ /area/ship/hallway/central) "Eg" = ( /obj/machinery/door/airlock/engineering{ + dir = 4; name = "Electrical" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2182,21 +2136,14 @@ /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) "Eq" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/layer2, /turf/open/floor/pod, /area/ship/hallway/central) "Ez" = ( /obj/structure/tank_dispenser, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/siding/yellow{ dir = 5 }, @@ -2293,6 +2240,9 @@ /area/ship/crew/dorm) "GX" = ( /obj/item/book/manual/wiki/tcomms, +/obj/effect/turf_decal/number/five{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/maintenance/port) "Hj" = ( @@ -2320,6 +2270,7 @@ dir = 10 }, /obj/machinery/suit_storage_unit/rd, +/obj/machinery/airalarm/directional/south, /turf/open/floor/carpet/black, /area/ship/bridge) "Id" = ( @@ -2347,9 +2298,7 @@ "Ji" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/closet/radiation, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "Jn" = ( @@ -2405,16 +2354,14 @@ /turf/open/floor/engine, /area/ship/engineering/atmospherics) "JF" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/mecha_part_fabricator{ dir = 8 }, /turf/open/floor/circuit, /area/ship/science) "JG" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/computer/operating{ dir = 1 }, @@ -2427,14 +2374,9 @@ /turf/open/floor/plasteel/white, /area/ship/medical) "JL" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 26 - }, /obj/machinery/cryopod, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/computer/cryopod/directional/north, /turf/open/floor/circuit/green, /area/ship/crew/dorm) "JS" = ( @@ -2462,13 +2404,8 @@ /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) "KH" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, /obj/machinery/suit_storage_unit/mining, /obj/effect/turf_decal/siding/brown{ dir = 1 @@ -2522,12 +2459,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, @@ -2537,6 +2469,13 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"Lm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "Lt" = ( /obj/structure/window/plasma/reinforced/spawner/west, /obj/effect/turf_decal/atmos/air, @@ -2561,23 +2500,17 @@ /obj/effect/turf_decal/siding/blue{ dir = 10 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/white, /area/ship/medical) "LY" = ( -/obj/item/radio/intercom{ - pixel_x = 30 - }, /obj/effect/turf_decal/siding/yellow{ dir = 6 }, /obj/machinery/computer/monitor{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) "Ma" = ( @@ -2597,26 +2530,21 @@ /area/ship/maintenance/port) "My" = ( /obj/effect/turf_decal/siding/purple, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ship/science) "MM" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, /obj/structure/curtain/bounty, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/carpet/black, /area/ship/crew/dorm) "MN" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering/electrical) "MQ" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/structure/frame/machine, /obj/item/circuitboard/machine/circuit_imprinter, /obj/structure/sign/poster/official/moth/boh{ @@ -2649,9 +2577,7 @@ dir = 4; name = "Chamber Mixer" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/item/paper/crumpled{ info = "A mix of 67/33 ratio of oxygen (node 1) and plasma (node 2) works very well, even at 500 kPa." }, @@ -2700,6 +2626,9 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/turf_decal/kfp_small{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/maintenance/port) "NB" = ( @@ -2712,9 +2641,6 @@ /turf/open/floor/plasteel/white, /area/ship/crew/dorm) "ND" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 6 }, @@ -2735,6 +2661,7 @@ /obj/item/binoculars, /obj/item/clothing/glasses/science, /obj/item/gps/science, +/obj/machinery/newscaster/directional/east, /turf/open/floor/carpet/black, /area/ship/bridge) "NI" = ( @@ -2798,6 +2725,7 @@ dir = 1 }, /obj/machinery/door/airlock/mining/glass{ + dir = 4; name = "Cargo Bay" }, /obj/machinery/door/firedoor/border_only{ @@ -2829,9 +2757,7 @@ /area/ship/cargo) "Ov" = ( /obj/structure/bookcase/random/reference, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -2954,10 +2880,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/siding/thinplating/dark/corner, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 @@ -3034,6 +2957,9 @@ /obj/structure/cable{ icon_state = "2-8" }, +/obj/effect/turf_decal/number/three{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/maintenance/port) "Sq" = ( @@ -3124,10 +3050,7 @@ /obj/machinery/atmospherics/pipe/simple{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/trimline/opaque/purple/arrow_cw, /obj/effect/turf_decal/trimline/opaque/blue/arrow_ccw{ dir = 1 @@ -3167,15 +3090,13 @@ /obj/machinery/atmospherics/pipe/simple/green/visible/layer5{ dir = 6 }, -/obj/item/radio/intercom{ - pixel_y = 23 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 }, /obj/effect/turf_decal/trimline/opaque/red/line{ dir = 5 }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "UB" = ( @@ -3201,10 +3122,26 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/thinplating/dark, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"Vi" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "nemobridge" + }, +/obj/docking_port/mobile{ + callTime = 250; + dir = 4; + launch_status = 0; + name = "Fauna Research Ship"; + preferred_direction = 4; + port_direction = 2 + }, +/turf/open/floor/plating, +/area/ship/bridge) "Vj" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -3242,6 +3179,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/wood, /area/ship/crew/library) "VN" = ( @@ -3298,6 +3236,7 @@ dir = 4 }, /obj/machinery/door/airlock/research/glass{ + dir = 4; name = "Science Lab" }, /turf/open/floor/plasteel/dark, @@ -3384,13 +3323,11 @@ }, /obj/structure/frame/machine, /obj/item/circuitboard/machine/rdserver, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/carpet/black, /area/ship/bridge) "WU" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 }, @@ -3427,7 +3364,7 @@ dir = 1 }, /obj/effect/turf_decal/siding/purple, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-8" }, @@ -3460,9 +3397,7 @@ icon_state = "0-4" }, /obj/machinery/power/smes/engineering, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ship/engineering/electrical) "XO" = ( @@ -3473,16 +3408,14 @@ /area/ship/science) "XT" = ( /obj/machinery/cryopod, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/circuit/green, /area/ship/crew/dorm) "Yb" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -3625,7 +3558,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/ship/engineering/atmospherics) @@ -3637,6 +3570,7 @@ tb tb tb tb +tb kJ kJ bx @@ -3651,6 +3585,7 @@ tb "} (2,1,1) = {" tb +tb kq ym ym @@ -3671,6 +3606,7 @@ Ly "} (3,1,1) = {" tb +tb lu gp gp @@ -3691,6 +3627,7 @@ uI "} (4,1,1) = {" tb +tb lu bj bj @@ -3711,6 +3648,7 @@ uI "} (5,1,1) = {" tb +tb lu aC Nn @@ -3731,6 +3669,7 @@ uI "} (6,1,1) = {" tb +tb lu GX Al @@ -3751,6 +3690,7 @@ uI "} (7,1,1) = {" tb +tb kq lu lu @@ -3773,6 +3713,7 @@ Ly tb tb tb +tb kq lu UB @@ -3794,6 +3735,7 @@ tb tb tb tb +tb se Wm bk @@ -3815,6 +3757,7 @@ tb tb tb tb +tb UB gl ih @@ -3835,6 +3778,7 @@ tb tb tb tb +tb UB aH ly @@ -3855,6 +3799,7 @@ tb tb tb tb +tb UB nv AN @@ -3874,6 +3819,7 @@ tb tb tb tb +tb kJ UB Zi @@ -3894,6 +3840,7 @@ tb tb tb tb +tb UB Lt Ma @@ -3914,6 +3861,7 @@ tb tb tb tb +tb UB Sq VS @@ -3933,6 +3881,7 @@ tb tb tb tb +tb kJ UB UB @@ -3953,12 +3902,13 @@ tb tb tb tb +tb cc AX BH Jw cc -fm +nz GJ jT ax @@ -3973,6 +3923,7 @@ tb tb tb tb +tb cc di Ol @@ -3993,6 +3944,7 @@ tb tb tb tb +tb cc KH nZ @@ -4013,6 +3965,7 @@ tb tb tb tb +tb cc gL gk @@ -4030,6 +3983,7 @@ tb tb "} (21,1,1) = {" +tb hF UK UK @@ -4050,6 +4004,7 @@ tb tb "} (22,1,1) = {" +CQ kf SS Eq @@ -4070,6 +4025,7 @@ tb tb "} (23,1,1) = {" +tb UK UK UK @@ -4090,13 +4046,14 @@ tb tb "} (24,1,1) = {" +tb UK Pd Pd iZ xR ju -Pn +Lm hu rh jg @@ -4110,6 +4067,7 @@ tb tb "} (25,1,1) = {" +tb ak GK dV @@ -4130,6 +4088,7 @@ tb tb "} (26,1,1) = {" +tb UK ij qp @@ -4150,6 +4109,7 @@ tb tb "} (27,1,1) = {" +tb hF ap fA @@ -4174,6 +4134,7 @@ tb tb tb tb +tb zE AE TH @@ -4194,6 +4155,7 @@ tb tb tb tb +tb zE mG ah @@ -4214,6 +4176,7 @@ tb tb tb tb +tb Yk wh TE @@ -4234,6 +4197,7 @@ tb tb tb tb +tb zE FF HQ @@ -4254,6 +4218,7 @@ tb tb tb tb +tb zE JS ai @@ -4274,6 +4239,7 @@ tb tb tb tb +tb Yk YO jj @@ -4294,6 +4260,7 @@ tb tb tb tb +tb fl Yk Yk @@ -4315,6 +4282,7 @@ tb tb tb tb +tb lG MT SU @@ -4335,6 +4303,7 @@ tb tb tb tb +tb pq xk cX @@ -4355,6 +4324,7 @@ tb tb tb tb +tb lG iJ xs @@ -4375,6 +4345,7 @@ tb tb tb tb +tb dG lG px @@ -4396,6 +4367,7 @@ tb tb tb tb +tb lG PL ch @@ -4416,6 +4388,7 @@ tb tb tb tb +tb lG Jn hf @@ -4436,6 +4409,7 @@ tb tb tb tb +tb lG Xn JF @@ -4456,6 +4430,7 @@ tb tb tb tb +tb dY eT dY @@ -4476,6 +4451,7 @@ tb tb tb tb +tb dY WU eR @@ -4496,6 +4472,7 @@ tb tb tb tb +tb dY WJ Ht @@ -4516,6 +4493,7 @@ tb tb tb tb +tb LE dY Fk @@ -4537,9 +4515,10 @@ tb tb tb tb +tb LE uR -uR +Vi uR LE tb diff --git a/_maps/shuttles/shiptest/independent_pillbottle.dmm b/_maps/shuttles/shiptest/independent_pillbottle.dmm index 7b485d7e8094..6ae88eaf61ab 100644 --- a/_maps/shuttles/shiptest/independent_pillbottle.dmm +++ b/_maps/shuttles/shiptest/independent_pillbottle.dmm @@ -1,4 +1,9 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/white/full, +/turf/open/floor/plasteel, +/area/ship/crew) "ah" = ( /obj/effect/turf_decal/industrial/warning/corner, /obj/effect/turf_decal/industrial/warning/corner{ @@ -47,24 +52,10 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"aO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_y = 7; - pixel_x = 27 - }, -/obj/effect/turf_decal/corner/opaque/white/full, -/turf/open/floor/plasteel, -/area/ship/crew) "ba" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ship/hallway/central) @@ -100,6 +91,17 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ship/storage) +"ce" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "cl" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/industrial/warning{ @@ -116,14 +118,10 @@ "cr" = ( /turf/closed/wall, /area/ship/engineering) -"cu" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_y = 3; - pixel_x = -22 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) +"cA" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/crewtwo) "cD" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt/dust, @@ -136,6 +134,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/crewtwo) +"de" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "ds" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/industrial/warning{ @@ -161,15 +163,15 @@ /obj/effect/decal/cleanable/robot_debris/old, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"dL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +"dP" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/firealarm{ - pixel_y = 27 +/obj/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "dS" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -186,17 +188,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"ed" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/crewtwo) "ef" = ( /obj/structure/cable{ icon_state = "2-5" @@ -212,15 +203,6 @@ }, /turf/open/floor/carpet, /area/ship/crew) -"eh" = ( -/obj/machinery/door/poddoor{ - id = "pillbottle" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/hallway/fore) "ei" = ( /obj/structure/cable{ icon_state = "4-8" @@ -266,16 +248,30 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"fe" = ( -/obj/item/radio/intercom{ - pixel_y = 22 - }, +"eW" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "0-2" }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, +/obj/structure/cable/yellow{ + icon_state = "1-6" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, /area/ship/engineering) +"fi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + id = "pillbob"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/crew/crewtwo) "fp" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ dir = 1 @@ -289,6 +285,38 @@ /obj/effect/turf_decal/corner/opaque/white/full, /turf/open/floor/plasteel, /area/ship/crew) +"fs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dorms"; + 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/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/dorm) +"fu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "fy" = ( /obj/structure/chair/plastic{ dir = 8 @@ -380,6 +408,15 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) +"gc" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "gf" = ( /obj/structure/cable{ icon_state = "4-8" @@ -398,6 +435,34 @@ }, /turf/open/floor/carpet, /area/ship/crew) +"gh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"gi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "pillbob"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/crew/crewtwo) "gl" = ( /obj/item/clothing/under/shorts/green, /obj/machinery/door/firedoor/border_only{ @@ -430,20 +495,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"gN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/fore) "hj" = ( /obj/machinery/power/shuttle/engine/electric/bad{ dir = 4 @@ -476,46 +527,37 @@ /obj/item/clothing/under/shorts/blue, /turf/open/floor/plating/airless, /area/ship/storage) -"hw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"hD" = ( -/obj/docking_port/stationary{ - dwidth = 7; - width = 15; - height = 15 +"hv" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + name = "Waste to Vent" }, -/turf/template_noop, -/area/template_noop) -"hH" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/ship/engineering) +"hx" = ( /obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-6" + icon_state = "2-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"hL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ +/obj/machinery/door/poddoor{ + id = "pillbottle"; dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/plating, +/area/ship/hallway/fore) +"hI" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/door/poddoor/shutters{ - id = "pillbob" +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, -/area/ship/crew/crewtwo) +/area/ship/engineering) "hN" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 @@ -548,19 +590,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/ship/external) -"if" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters{ - id = "pillbob" - }, -/turf/open/floor/plating, -/area/ship/crew/crewtwo) "ii" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -574,13 +603,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"iA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/ship/storage) "iR" = ( /obj/machinery/power/smes/shuttle{ dir = 4 @@ -593,6 +615,16 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"iU" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/crewtwo) "jK" = ( /obj/structure/cable{ icon_state = "4-8" @@ -616,10 +648,17 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"jX" = ( -/obj/machinery/light/small, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/crewtwo) +"kd" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "ke" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -645,34 +684,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"kl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Dorms" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"kC" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ship/storage) "kG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ @@ -684,21 +695,30 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"kZ" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" +"li" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/carpet, +/area/ship/hallway/central) +"lo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ship/crew/dorm) -"lh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 +/obj/structure/cable{ + icon_state = "2-5" }, -/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"lr" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/chair/plastic, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/directional/north, /turf/open/floor/carpet, -/area/ship/hallway/central) +/area/ship/crew) "lw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 @@ -726,6 +746,16 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/airless, /area/ship/storage) +"lX" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet, +/area/ship/hallway/central) "md" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -735,26 +765,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ship/hallway/central) -"mk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"mo" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "mx" = ( /turf/closed/wall, /area/ship/crew/toilet) @@ -770,6 +780,28 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"mR" = ( +/obj/machinery/door/airlock/mining{ + name = "Hangar"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "mW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -829,16 +861,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"oy" = ( -/obj/structure/cable{ - icon_state = "1-6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "oE" = ( /obj/structure/cable{ icon_state = "4-8" @@ -855,11 +877,13 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"oF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) +"oH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/power/smes/engineering, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "oM" = ( /obj/structure/toilet{ dir = 8; @@ -871,18 +895,6 @@ }, /turf/open/floor/plastic, /area/ship/crew/toilet) -"oO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering) "oR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 @@ -928,14 +940,14 @@ }, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/crewtwo) -"pz" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 +"pC" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/structure/bedsheetbin, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/dorm) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "pF" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -954,6 +966,14 @@ /obj/item/storage/cans/sixbeer, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/crewtwo) +"pJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet, +/area/ship/hallway/central) "pX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -962,39 +982,26 @@ /obj/item/clothing/under/shorts/purple, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"qc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, -/turf/open/floor/carpet, -/area/ship/crew) -"qg" = ( -/obj/effect/turf_decal/box, -/obj/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/greenglow, -/obj/item/stack/sheet/mineral/plasma/twenty, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "qj" = ( /obj/effect/decal/cleanable/robot_debris, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/white/full, /turf/open/floor/plasteel, /area/ship/crew) -"qm" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 25 +"qn" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/dorm) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "qx" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/industrial/warning{ @@ -1005,6 +1012,14 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"qO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "rk" = ( /obj/structure/grille/broken, /obj/structure/window/reinforced{ @@ -1027,28 +1042,6 @@ "rJ" = ( /turf/open/floor/plasteel, /area/ship/hallway/central) -"rK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) -"rR" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "rW" = ( /turf/closed/wall, /area/ship/crew) @@ -1102,6 +1095,34 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"sx" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"sK" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet, +/area/ship/crew) +"sM" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/table, +/obj/structure/reagent_dispensers/servingdish{ + desc = "A dish full of mashed pills for your bowl." + }, +/obj/effect/turf_decal/corner/opaque/white/full, +/turf/open/floor/plasteel, +/area/ship/crew) "sO" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 @@ -1120,16 +1141,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"sS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) "th" = ( /obj/structure/cable{ icon_state = "1-10" @@ -1142,18 +1153,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/hallway/central) -"tk" = ( -/obj/machinery/door/poddoor{ - id = "pillbottle" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "pilltest" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ship/hallway/fore) "tr" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1178,13 +1177,6 @@ /obj/item/toy/crayon/spraycan, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"tx" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/ship/hallway/central) "ty" = ( /obj/structure/cable{ icon_state = "6-8" @@ -1241,93 +1233,48 @@ "tP" = ( /turf/closed/wall, /area/ship/storage) -"tQ" = ( +"tV" = ( /obj/structure/cable{ - icon_state = "2-5" - }, -/obj/structure/table/wood, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_y = 3; - pixel_x = 6 + icon_state = "1-6" }, -/obj/item/radio/intercom{ - dir = 4; - pixel_y = 3; - pixel_x = -6 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"tR" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"vc" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/corner/opaque/white/full, +/turf/open/floor/plasteel, +/area/ship/crew) +"vi" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, +/obj/effect/turf_decal/number/two, /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"vp" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "pilltest"; + dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/poddoor{ + id = "pillbottle"; dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"uh" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"vc" = ( -/obj/machinery/processor, -/obj/effect/turf_decal/corner/opaque/white/full, -/turf/open/floor/plasteel, -/area/ship/crew) -"ve" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/table, -/obj/structure/reagent_dispensers/servingdish{ - desc = "A dish full of mashed pills for your bowl." - }, -/obj/effect/turf_decal/corner/opaque/white/full, -/turf/open/floor/plasteel, -/area/ship/crew) -"vi" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/number/two, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plating, /area/ship/hallway/fore) "vw" = ( /obj/structure/grille, @@ -1337,6 +1284,22 @@ /obj/structure/window/reinforced, /turf/open/floor/plating, /area/ship/hallway/central) +"vA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) +"vB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/cans/sixbeer, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet, +/area/ship/hallway/central) "vD" = ( /obj/structure/bed/pod, /obj/structure/curtain/cloth, @@ -1350,26 +1313,6 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"vH" = ( -/obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"vK" = ( -/obj/machinery/cryopod/poor{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/dorm) "vX" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1380,15 +1323,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"vZ" = ( -/obj/machinery/door/poddoor{ - id = "pillbottle" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/ship/hallway/fore) "wj" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, @@ -1438,31 +1372,61 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, /turf/open/floor/plasteel, /area/ship/hallway/central) +"wE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"wG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "pillbob"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/crew/crewtwo) +"wH" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 18; + pixel_x = 9 + }, +/obj/item/bikehorn/rubberducky, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plastic, +/area/ship/crew/toilet) "wK" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/plating/airless, /area/ship/storage) -"wS" = ( +"wO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"xd" = ( /obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) -"wZ" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 + icon_state = "1-2" }, -/obj/effect/turf_decal/corner/opaque/white/full, -/turf/open/floor/plasteel, -/area/ship/crew) -"xt" = ( /obj/machinery/door/poddoor{ - id = "pillbottle" - }, -/obj/structure/cable{ - icon_state = "1-8" + id = "pillbottle"; + dir = 8 }, /turf/open/floor/plating, /area/ship/hallway/fore) @@ -1488,17 +1452,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"xK" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "xN" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1509,6 +1462,14 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"xO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white/full, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/ship/crew) "xQ" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -1521,6 +1482,12 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"xS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "yh" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1564,17 +1531,6 @@ /obj/effect/turf_decal/corner/opaque/black/full, /turf/open/floor/plasteel, /area/ship/crew) -"yG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/cans/sixbeer, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/ship/hallway/central) "yR" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/storage/cans/sixbeer, @@ -1624,55 +1580,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"zM" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"Am" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - dir = 4; - id = "pillbottle"; - pixel_y = -3; - pixel_x = -7; - name = "Hangar Control" - }, -/obj/machinery/button/shieldwallgen{ - dir = 4; - id = "pilltest"; - pixel_y = -3; - pixel_x = 7 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "AR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -1683,6 +1590,16 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) +"AS" = ( +/obj/structure/rack, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/item/stack/marker_beacon/thirty, +/obj/item/stack/marker_beacon/thirty, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "AX" = ( /obj/machinery/camera, /obj/effect/turf_decal/weather/dirt{ @@ -1712,20 +1629,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"Bk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +"Bx" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "2-5" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/crewtwo) "BK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 @@ -1780,26 +1694,22 @@ /obj/item/modular_computer/tablet/preset/cargo, /turf/open/floor/carpet/nanoweave, /area/ship/crew/dorm) +"CM" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/door/poddoor{ + id = "pillbottle"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/hallway/fore) "CP" = ( /turf/template_noop, /area/space) "CQ" = ( /turf/closed/wall, /area/ship/bridge) -"CT" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/carpet, -/area/ship/crew) "CX" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -1821,7 +1731,17 @@ /obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/plating, /area/ship/hallway/fore) -"DN" = ( +"Dk" = ( +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -1831,36 +1751,60 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"DR" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"DJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/wrench/crescent, +/obj/structure/cable, +/obj/item/toy/crayon/red, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) +"DQ" = ( +/obj/structure/cable{ + icon_state = "2-5" + }, +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/west, +/obj/item/radio/intercom/wideband/table{ + dir = 8 + }, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) +"DR" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /obj/item/areaeditor/shuttle, /obj/item/clothing/glasses/sunglasses{ pixel_y = 7 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/item/reagent_containers/spray/pepper{ pixel_y = -7 }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"DS" = ( -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "pilltest" - }, -/obj/machinery/door/poddoor{ - id = "pillbottle" +"Eb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, +/obj/machinery/power/smes, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "0-4" }, -/turf/open/floor/plating, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech/grid, /area/ship/hallway/fore) "Ej" = ( /obj/structure/bed/pod, @@ -1869,17 +1813,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/carpet/nanoweave, /area/ship/crew/dorm) -"Em" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/newscaster{ - pixel_y = 32; - name = "Pill Newsfeed" - }, -/turf/open/floor/carpet, -/area/ship/crew) "En" = ( /obj/structure/cable{ icon_state = "6-9" @@ -1888,24 +1821,6 @@ /obj/effect/turf_decal/corner/opaque/black/full, /turf/open/floor/plasteel, /area/ship/crew) -"EA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "EJ" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -1915,82 +1830,53 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"EX" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"Fq" = ( -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "pilltest"; - dir = 1 - }, -/obj/machinery/door/poddoor{ - id = "pillbottle" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ship/hallway/fore) -"Fw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) -"FM" = ( -/obj/structure/cable{ - icon_state = "4-10" - }, -/obj/item/radio/intercom{ - pixel_y = 23 - }, -/obj/structure/chair/plastic, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet, -/area/ship/crew) +"FI" = ( +/obj/structure/table, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/nanoweave, +/area/ship/crew/dorm) "FP" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, /turf/open/floor/carpet, /area/ship/hallway/central) -"FV" = ( -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -27 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ship/crew/dorm) "Gf" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet, /area/ship/crew) -"Gs" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, +"GY" = ( /obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/corner/opaque/black/full, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/ship/crew) +"Hb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/crewtwo) -"Gy" = ( -/obj/structure/rack, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/machinery/firealarm{ - pixel_y = 27 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/stack/marker_beacon/thirty, -/obj/item/stack/marker_beacon/thirty, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) +"Hc" = ( +/obj/machinery/door/poddoor{ + id = "pillbottle"; + dir = 8 + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "pilltest" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/hallway/fore) "Hn" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 @@ -2009,15 +1895,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"Ho" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "Hq" = ( /obj/effect/decal/cleanable/glass, /obj/structure/reagent_dispensers/beerkeg, @@ -2031,6 +1908,20 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"HD" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "HJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -2073,39 +1964,28 @@ dir = 4 }, /obj/effect/decal/cleanable/cobweb, -/obj/item/radio/intercom{ - dir = 4; - pixel_y = 3; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plating, /area/ship/hallway/central) -"IZ" = ( -/obj/effect/turf_decal/weather/dirt{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/docking_port/stationary{ - dwidth = 3; - width = 7; - height = 15; - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ship/external) -"Jq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 +"Jb" = ( +/obj/effect/turf_decal/box, +/obj/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/greenglow, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/structure/window/reinforced{ +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Jr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/poddoor/shutters{ - id = "pillbob" - }, -/turf/open/floor/plating, -/area/ship/crew/crewtwo) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "JT" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2143,19 +2023,12 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"KD" = ( -/obj/machinery/door/poddoor{ - id = "pillbottle" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "pilltest"; - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ship/hallway/fore) +"Kq" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/light/small/built/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/crew/dorm) "KE" = ( /turf/open/floor/plating/airless, /area/ship/storage) @@ -2201,6 +2074,34 @@ "La" = ( /turf/open/floor/plating, /area/ship/hallway/fore) +"Ld" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "LA" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -2248,24 +2149,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"LQ" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/light/small/built/directional/east, +/turf/open/floor/plating/airless, +/area/ship/storage) "LU" = ( /obj/machinery/door/airlock/maintenance{ name = "Restroom" }, /turf/open/floor/plasteel/tech, /area/ship/crew/toilet) -"Mc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/autolathe, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Mf" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2275,27 +2169,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"Mh" = ( -/obj/machinery/door/airlock/mining{ - name = "Hangar" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "Mq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 @@ -2304,16 +2177,6 @@ dir = 8 }, /area/ship/hallway/fore) -"Mw" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/carpet, -/area/ship/hallway/central) "MB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 @@ -2323,28 +2186,50 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"MZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 8 +"MQ" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Nc" = ( +/obj/effect/turf_decal/industrial/warning/corner, +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "Nt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 8 +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/toy/crayon/spraycan, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) +"Nv" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + dir = 4; + id = "pillbottle"; + pixel_y = -3; + pixel_x = -7; + name = "Hangar Control" + }, +/obj/machinery/button/shieldwallgen{ + dir = 4; + id = "pilltest"; + pixel_y = -3; + pixel_x = 7 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/toy/crayon/spraycan, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) +/obj/effect/decal/cleanable/cobweb, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "Nw" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2387,20 +2272,28 @@ /obj/effect/turf_decal/atmos/air, /obj/machinery/portable_atmospherics/canister/air, /obj/item/wrench, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ship/hallway/central) -"NX" = ( -/obj/machinery/power/apc/auto_name/west, +"Oe" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/wrench/crescent, -/obj/structure/cable, -/obj/item/toy/crayon/red, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) +/obj/machinery/light/small/built/directional/west, +/turf/open/floor/plating/airless, +/area/ship/storage) +"On" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + id = "pillbob"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/crew/crewtwo) "Op" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2433,19 +2326,19 @@ "Oz" = ( /turf/template_noop, /area/template_noop) -"OA" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/binary/pump/layer2{ - name = "Waste to Vent" +"OB" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "pilltest" }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 +/obj/machinery/door/poddoor{ + id = "pillbottle"; + dir = 8 }, /turf/open/floor/plating, -/area/ship/engineering) +/area/ship/hallway/fore) "OF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 @@ -2466,6 +2359,13 @@ }, /turf/open/floor/plasteel, /area/ship/crew/dorm) +"ON" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "OP" = ( /obj/effect/turf_decal/industrial/warning/corner, /obj/effect/turf_decal/industrial/warning/corner{ @@ -2516,6 +2416,28 @@ /obj/item/megaphone/command, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) +"Pc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) +"Pn" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/ship/engineering) "Pp" = ( /obj/structure/bed/pod, /obj/structure/curtain/cloth, @@ -2575,14 +2497,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"QI" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/black/full, -/turf/open/floor/plasteel, -/area/ship/crew) "QQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 @@ -2592,6 +2506,16 @@ }, /turf/open/floor/plasteel, /area/ship/crew/dorm) +"Re" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Rf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/computer/cryopod/directional/west, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) "Ri" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 9 @@ -2679,19 +2603,6 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) -"SS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters{ - id = "pillbob" - }, -/turf/open/floor/plating, -/area/ship/crew/crewtwo) "SX" = ( /obj/effect/turf_decal/industrial/warning/corner, /obj/effect/turf_decal/industrial/warning/corner{ @@ -2722,6 +2633,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ship/hallway/central) +"Th" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "pilltest"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor{ + id = "pillbottle"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/hallway/fore) "Tm" = ( /turf/closed/wall, /area/ship/crew/dorm) @@ -2744,18 +2667,14 @@ "Tv" = ( /turf/closed/wall, /area/ship/crew/crewtwo) -"TC" = ( -/obj/machinery/shower{ +"Tz" = ( +/obj/structure/cable, +/obj/machinery/computer/security{ dir = 4 }, -/obj/structure/sink{ - pixel_y = 18; - pixel_x = 9 - }, -/obj/machinery/light/small, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/plastic, -/area/ship/crew/toilet) +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "TM" = ( /obj/effect/turf_decal/industrial/warning/corner, /obj/effect/turf_decal/industrial/warning/corner{ @@ -2826,16 +2745,52 @@ }, /turf/open/floor/carpet, /area/ship/crew) -"UT" = ( +"Vp" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/obj/machinery/light/small{ +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Vs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white/full, /turf/open/floor/plasteel, +/area/ship/hallway/fore) +"Vv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Hangar"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, /area/ship/crew) "VO" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -2877,6 +2832,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/hallway/fore) +"Wn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/autolathe, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Wp" = ( /obj/structure/cable{ icon_state = "1-8" @@ -2890,16 +2855,6 @@ }, /turf/open/floor/carpet, /area/ship/hallway/central) -"WC" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "WE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, @@ -2953,6 +2908,12 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Xf" = ( +/obj/machinery/cryopod/poor{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/dorm) "Xg" = ( /obj/structure/chair/plastic{ dir = 4 @@ -2977,9 +2938,6 @@ /obj/effect/turf_decal/corner/opaque/black/full, /turf/open/floor/plasteel, /area/ship/crew) -"XA" = ( -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "XE" = ( /obj/effect/turf_decal/weather/dirt{ dir = 8 @@ -3019,22 +2977,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"XX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "Yd" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 @@ -3074,13 +3016,14 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"YE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 4 +"YP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet, +/area/ship/crew) "YU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -3090,18 +3033,14 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"YY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" +"YX" = ( +/obj/docking_port/stationary{ + dwidth = 7; + width = 30; + height = 15 }, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/template_noop, +/area/template_noop) "Ze" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 1 @@ -3114,32 +3053,14 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"Zm" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Hangar" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, +"Zf" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/obj/effect/turf_decal/corner/opaque/white/full, +/obj/machinery/light/small/built/directional/north, +/turf/open/floor/plasteel, /area/ship/crew) "Zn" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -3173,6 +3094,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet, /area/ship/crew) +"Zz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet, +/area/ship/crew) "ZB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3186,6 +3115,14 @@ /obj/effect/decal/cleanable/oil/slippery, /turf/open/floor/plating, /area/ship/engineering) +"ZK" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) "ZN" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -3275,10 +3212,10 @@ cr cr cr cr -fe -oO +ZK +hI zJ -YY +Pn Wp cr cr @@ -3324,7 +3261,7 @@ Oz Oz cr ZB -OA +hv WT Oz Oz @@ -3367,11 +3304,11 @@ Oz Tm Tm cr -qg -hH +Jb +eW oE -Bk -hw +lo +oH Uy Uy Uy @@ -3388,10 +3325,10 @@ Tm HJ HJ Tm -vK +Xf Tm cr -Mc +Wn KO Zn Or @@ -3410,19 +3347,19 @@ Oz Tm Ej OH -kZ +sx SF -FV +Rf Tm cr -zM +Ld cr cr Uy SR fL mx -TC +wH mx Oz "} @@ -3431,17 +3368,17 @@ Oz Oz Oz Tm -pz +Kq QQ hO CL Sd mW -MZ +ON PB -EA -oy -mk +qn +tV +fu Ri rJ LU @@ -3457,7 +3394,7 @@ Tm Pp Zr vD -qm +FI vD mW VR @@ -3473,24 +3410,24 @@ tP Oz "} (13,1,1) = {" -if -hL +On +gi Tv Tm Tm -kl +fs Tm Tm Tm Tm -Ho +Jr wn vw Tg -DN +gh tP tF -iA +Oe Xg lL Oz @@ -3498,13 +3435,13 @@ Oz (14,1,1) = {" sl md -Gs +iU rW -CT +sK ef Sh Op -Qy +wE Qy th mi @@ -3521,18 +3458,18 @@ Oz (15,1,1) = {" sl fy -ed +Bx rW -FM +lr Zx VP CX -tx +li VQ al -lh +pJ Uy -mo +pC jK tP KE @@ -3553,13 +3490,13 @@ nz Cx FP Ww -Mw +lX Uy ba ei tP Hq -kC +LQ wK lL Oz @@ -3569,17 +3506,17 @@ sl cN ps rW -Em +Zz UA -qc +YP rW Uy Uy hl -yG +vB Uy Uy -tR +Dk aj aj aj @@ -3590,7 +3527,7 @@ Oz (18,1,1) = {" sl Bc -jX +cA rW yZ OF @@ -3603,9 +3540,9 @@ CQ CQ CQ mF -XX -EX -cu +Vp +MQ +Re eR aj Oz @@ -3615,17 +3552,17 @@ sl pH tD rW -UT +Zf Xr qj ok -wZ +ac CQ -Am -tQ -rR +Nv +DQ +Tz CQ -Gy +AS LN fZ wo @@ -3634,8 +3571,8 @@ aj Oz "} (20,1,1) = {" -SS -Jq +fi +wG Tv rW WJ @@ -3661,19 +3598,19 @@ Oz Oz Oz rW -ve +sM ez -aO -QI +xO +GY Ug CQ -dL +vA fJ -XA +de CQ NK jV -YE +wO br cD aj @@ -3685,7 +3622,7 @@ Oz Oz rW rW -Zm +Vv rW rW rW @@ -3697,7 +3634,7 @@ CQ aj aj aj -Mh +mR aj aj Oz @@ -3710,16 +3647,16 @@ tG tG Kc YU -rK -VO +Pc +qO KY KY VO pX -NX +DJ Cl -gN -wS +Eb +dP tr tG tG @@ -3729,21 +3666,21 @@ tG Oz Oz tG -oF -Fw +xS +Vs HN gJ RJ MB MB BK -Ud +ce Ud gp Ze kG Wh -sS +Hb Nt vG tG @@ -3798,7 +3735,7 @@ tG Oz Oz tG -vH +Nc xQ Tp xQ @@ -3814,7 +3751,7 @@ OP pF SX wl -xK +kd tG "} (28,1,1) = {" @@ -3842,7 +3779,7 @@ tG "} (29,1,1) = {" Oz -hD +YX Df Ce La @@ -3890,7 +3827,7 @@ tG Oz Oz tG -WC +gc yh Hn xN @@ -3906,7 +3843,7 @@ Yd vi OR eU -uh +HD tG "} (32,1,1) = {" @@ -3914,21 +3851,21 @@ Oz Oz tG tG -DS -eh -eh -eh -eh -xt -KD +OB +xd +xd +xd +xd +CM +vp tG -tk -vZ -eh -eh -eh -eh -Fq +Hc +hx +xd +xd +xd +xd +Th tG tG "} @@ -3940,7 +3877,7 @@ tG AX hT hT -IZ +hT hT hT hT @@ -3948,7 +3885,7 @@ XE hT hT hT -IZ +hT hT hT WS diff --git a/_maps/shuttles/shiptest/independent_rigger.dmm b/_maps/shuttles/shiptest/independent_rigger.dmm index b9b3fe000447..7c26d599c089 100644 --- a/_maps/shuttles/shiptest/independent_rigger.dmm +++ b/_maps/shuttles/shiptest/independent_rigger.dmm @@ -1,4 +1,14 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "ai" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ @@ -12,7 +22,8 @@ /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ id = "riggerwindows"; - name = "Blast Shutters" + name = "Blast Shutters"; + dir = 4 }, /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/curtain, @@ -23,71 +34,27 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"az" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/wood, -/obj/machinery/computer/secure_data/laptop{ - dir = 1 - }, -/obj/item/lighter/greyscale{ - pixel_x = -11; - pixel_y = 6 - }, -/obj/item/storage/fancy/cigarettes{ - pixel_x = -17; - pixel_y = -1 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/security) +"ax" = ( +/obj/structure/filingcabinet/employment, +/obj/machinery/newscaster/security_unit/directional/west, +/turf/open/floor/carpet/blue, +/area/ship/bridge) "aC" = ( /obj/structure/window/reinforced/spawner/west{ dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) -"aI" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/borderfloor, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"aJ" = ( -/obj/item/paper_bin, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/stamp/hos{ - name = "security specialist's rubber stamp"; - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/security) -"aN" = ( -/obj/machinery/door/poddoor/shutters{ - id = "riggerwindows"; - name = "Blast Shutters" +"aD" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 }, -/obj/structure/grille, -/obj/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/crew) +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "aT" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/construction) @@ -97,15 +64,12 @@ /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plating, /area/ship/construction) -"bl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = "riggerwindows"; - name = "Blast Shutters" +"bi" = ( +/obj/effect/turf_decal/kfp_small{ + dir = 8 }, -/obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, -/area/ship/crew/canteen) +/area/ship/construction) "bo" = ( /obj/machinery/status_display/shuttle{ pixel_y = -32 @@ -134,6 +98,20 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) +"bA" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) "bB" = ( /obj/machinery/atmospherics/components/binary/pump/on/layer2{ dir = 1; @@ -180,6 +158,26 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) +"bZ" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/machinery/computer/cryopod/directional/south, +/obj/effect/turf_decal/industrial/warning{ + dir = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) +"cb" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "riggerwindows"; + name = "Blast Shutters" + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) "cc" = ( /obj/structure/curtain, /obj/machinery/shower{ @@ -192,6 +190,7 @@ dir = 4 }, /obj/item/soap, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/patterned/brushed, /area/ship/crew) "ci" = ( @@ -200,10 +199,33 @@ }, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) +"cl" = ( +/obj/machinery/button/door{ + dir = 4; + id = "riggerdoors"; + name = "Blast Door Control"; + pixel_x = -29; + pixel_y = 5 + }, +/obj/machinery/button/door{ + dir = 4; + id = "riggerwindows"; + name = "Window Lockdown"; + pixel_x = -29; + pixel_y = -5 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/blue/border, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "cv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) +"cw" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/construction) "cx" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/industrial/outline/yellow, @@ -216,19 +238,6 @@ /obj/item/mining_scanner, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"cD" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "cR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -240,96 +249,57 @@ /obj/effect/turf_decal/corner/opaque/yellow/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"dv" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/virology/glass{ - name = "Infirmary" - }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) +"dc" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ship/construction) +"dx" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "dJ" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"dP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +"dU" = ( /obj/structure/cable{ icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/sign/departments/medbay/alt{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/mono, -/area/ship/hallway/central) +/obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "ee" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/landmark/observer_start, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) -"eg" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) -"es" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"ew" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/obj/effect/spawner/lootdrop/maintenance, +"eu" = ( +/obj/structure/closet/crate, +/obj/machinery/airalarm/directional/north, +/obj/item/circuitboard/machine/circuit_imprinter, +/obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plating, -/area/ship/maintenance/starboard) -"eD" = ( -/obj/machinery/power/apc/auto_name/west, +/area/ship/construction) +"eF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plating, -/area/ship/construction) -"eK" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 }, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/mono, +/area/ship/hallway/central) "eQ" = ( /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, @@ -340,7 +310,8 @@ /obj/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ id = "riggerwindows"; - name = "Blast Shutters" + name = "Blast Shutters"; + dir = 4 }, /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 @@ -379,7 +350,7 @@ pixel_y = 8 }, /obj/item/reagent_containers/glass/bottle{ - list_reagents = list(/datum/reagent/medicine/thializid = 30); + list_reagents = list(/datum/reagent/medicine/thializid=30); name = "thializid bottle"; pixel_x = 5 }, @@ -410,6 +381,21 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) +"fl" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/borderfloor, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/green{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "fn" = ( /obj/effect/turf_decal/corner_steel_grid{ dir = 8 @@ -417,15 +403,18 @@ /obj/effect/turf_decal/corner_steel_grid, /turf/open/floor/plasteel, /area/ship/crew/office) -"fu" = ( -/obj/machinery/light, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/structure/chair{ - dir = 1 +"fp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/communications) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/number/five{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/construction) "fx" = ( /obj/structure/cable{ icon_state = "4-8" @@ -435,14 +424,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"fy" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) "fO" = ( /obj/structure/cable{ icon_state = "1-2" @@ -464,54 +445,23 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"fS" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Communications" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"fU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) -"gc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +"gc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, /turf/open/floor/plasteel/grimy, /area/ship/crew) +"ge" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/office) "go" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, /obj/structure/window/reinforced/spawner/east, /obj/machinery/sleeper, /turf/open/floor/plasteel/mono, /area/ship/medical) -"gI" = ( -/obj/structure/grille, -/obj/structure/window/plasma/reinforced/plastitanium, -/obj/structure/curtain/bounty, -/turf/open/floor/plating, -/area/ship/security) "hy" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -519,6 +469,12 @@ /obj/effect/turf_decal/industrial/stand_clear, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) +"hE" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "hG" = ( /turf/open/floor/plasteel/patterned, /area/ship/crew) @@ -531,6 +487,25 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"hP" = ( +/obj/effect/turf_decal/industrial/loading, +/obj/machinery/airalarm/directional/west, +/obj/structure/ore_box, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) +"hR" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + dir = 4; + name = "Canteen" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "ib" = ( /obj/item/mecha_parts/part/ripley_left_leg{ pixel_x = 2; @@ -587,15 +562,27 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"ij" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = "riggerwindows"; - name = "Blast Shutters" +"ik" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, -/obj/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/starboard) "ir" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -627,25 +614,14 @@ "iD" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering/communications) -"iG" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 +"iP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) -"iH" = ( -/obj/structure/closet/crate, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/effect/turf_decal/number/zero{ + dir = 4 }, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plating, /area/ship/construction) "iR" = ( @@ -671,6 +647,16 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) +"iT" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "riggerwindows"; + name = "Blast Shutters" + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/construction) "iU" = ( /turf/open/floor/plasteel, /area/ship/construction) @@ -708,6 +694,13 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/maintenance/port) +"jp" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "jq" = ( /obj/structure/cable{ icon_state = "1-2" @@ -802,26 +795,14 @@ /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"jT" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Security"; - req_access_txt = "1" +"jW" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/structure/curtain/bounty, -/turf/open/floor/plasteel/dark, -/area/ship/security) +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "jZ" = ( /obj/machinery/mech_bay_recharge_port{ dir = 1 @@ -835,44 +816,24 @@ "kC" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) -"kK" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/construction) -"kL" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/security) -"kP" = ( +"kV" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"kV" = ( +"lc" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/catwalk/over, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/area/ship/maintenance/starboard) "lf" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/atmospherics) @@ -896,40 +857,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"lF" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/effect/turf_decal/corner/opaque/blue/bordercorner{ - dir = 8 - }, -/obj/item/storage/backpack/captain, -/obj/item/clothing/shoes/cowboy/white, -/obj/item/clothing/under/rank/command/captain, -/obj/item/clothing/suit/armor/vest/capcarapace/duster, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/head/caphat/cowboy, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/structure/closet/secure_closet/wall{ - dir = 8; - icon_state = "solgov_wall"; - name = "captain's closet"; - pixel_x = 28; - req_access_txt = "20" - }, -/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/spacecash/bundle/c1000, -/obj/item/ammo_box/magazine/m45, -/obj/item/ammo_box/magazine/m45, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) "lH" = ( /obj/machinery/door/airlock/maintenance{ name = "Starboard Thrusters" @@ -963,37 +890,6 @@ /obj/effect/turf_decal/corner/opaque/yellow/half, /turf/open/floor/plasteel, /area/ship/hallway/central) -"lR" = ( -/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/airlock/public/glass{ - name = "Communications" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"lT" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/closet/crate/bin, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/circuitboard/machine/protolathe/department/cargo, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/office) "lW" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "engine fuel pump" @@ -1016,35 +912,73 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"mw" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" +"my" = ( +/obj/item/reagent_containers/food/snacks/canned/beans{ + pixel_x = -5; + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/obj/item/reagent_containers/food/snacks/canned/beans{ + pixel_x = 2; + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 8 +/obj/item/reagent_containers/food/snacks/canned/beans{ + pixel_x = -2 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) -"mH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 5 }, -/obj/structure/closet/secure_closet/wall{ - icon_state = "sec_wall"; - name = "firearms locker"; - pixel_y = 28; - req_access_txt = "1" +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 1; + pixel_y = -3 }, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/item/gun/ballistic/automatic/surplus, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"mJ" = ( +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/structure/closet/crate{ + name = "food crate" + }, +/obj/item/storage/cans/sixbeer, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"mz" = ( +/obj/item/paper_bin, +/obj/machinery/airalarm/directional/south, +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/stamp/hos{ + name = "security specialist's rubber stamp"; + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/security) +"mH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/closet/secure_closet/wall{ + icon_state = "sec_wall"; + name = "firearms locker"; + pixel_y = 28; + req_access_txt = "1" + }, +/obj/item/gun/ballistic/automatic/pistol/m1911, +/obj/item/gun/ballistic/automatic/surplus, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"mJ" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -1071,9 +1005,43 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew/office) +"mW" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/virology/glass{ + dir = 4; + name = "Infirmary" + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "mY" = ( /turf/open/floor/plating, /area/ship/maintenance/port) +"mZ" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) +"ng" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) "nm" = ( /obj/item/multitool, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1083,34 +1051,60 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) +"nE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4{ + dir = 1 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"nS" = ( +/turf/open/floor/plating, +/area/ship/crew/office) +"nU" = ( +/obj/structure/table, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/obj/item/storage/cans/sixbeer, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "od" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/grimy, /area/ship/crew) +"oe" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + id = "riggerwindows"; + name = "Blast Shutters"; + dir = 4 + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) "oh" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/hallway/central) -"op" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red/border{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, +"oy" = ( /obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"oM" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 + icon_state = "1-2" }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/ship/crew/office) +"oz" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ship/construction) "oO" = ( @@ -1142,13 +1136,16 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/ship/construction) -"pr" = ( -/obj/machinery/power/apc/auto_name/west, +"ph" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "0-2" + }, +/obj/structure/chair{ + dir = 8 }, /turf/open/floor/plating, -/area/ship/maintenance/starboard) +/area/ship/crew/office) "pt" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/computer/helm, @@ -1159,6 +1156,13 @@ /obj/effect/turf_decal/corner/opaque/yellow/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"pD" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/borderfloor/cee, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "pE" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable{ @@ -1205,22 +1209,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"pY" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew) "qa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 @@ -1274,6 +1262,12 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/communications) +"qE" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/chair, +/turf/open/floor/plasteel/mono, +/area/ship/medical) "qI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, @@ -1306,38 +1300,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ship/maintenance/port) -"qU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/grunge{ - name = "Atmospherics" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"rb" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/obj/item/mecha_parts/chassis/ripley, -/obj/item/mecha_parts/mecha_equipment/drill{ - pixel_y = -11 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/ship/cargo) "rl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1398,65 +1360,50 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"rJ" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plating, -/area/ship/construction) -"rN" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"rH" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/borderfloor{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/obj/effect/turf_decal/corner/opaque/green{ + dir = 1 }, -/turf/open/floor/plating, -/area/ship/construction) -"rS" = ( +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"rL" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/catwalk/over, -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 + icon_state = "0-8" }, -/turf/open/floor/plating, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/suit/space/engineer, +/obj/item/clothing/head/helmet/space/light/engineer, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/tech, /area/ship/engineering) "rZ" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plating, /area/ship/maintenance/port) +"sa" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "sb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /turf/open/floor/engine/hull, /area/ship/external) -"se" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) "sj" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1466,6 +1413,29 @@ }, /turf/open/floor/plasteel/mono, /area/ship/engineering/communications) +"sq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/closet/wall{ + icon_door = "red_wall"; + name = "security closet"; + pixel_y = 28 + }, +/obj/item/storage/backpack/security, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/shoes/cowboy, +/obj/item/clothing/under/rank/security/officer/blueshirt, +/obj/item/clothing/glasses/hud/security/sunglasses, +/obj/item/clothing/suit/armor/vest/duster, +/obj/item/clothing/head/cowboy/sec, +/turf/open/floor/plasteel/grimy, +/area/ship/security) +"sy" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/borderfloor/cee, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "sB" = ( /obj/machinery/door/window/westleft{ name = "Armory"; @@ -1480,13 +1450,16 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/mono, /area/ship/crew/office) -"sM" = ( -/obj/item/mop, -/obj/item/storage/bag/trash{ - pixel_x = 6 +"sQ" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "riggerwindows"; + name = "Blast Shutters" }, +/obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, -/area/ship/construction) +/area/ship/crew/canteen) "sS" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 1 @@ -1509,42 +1482,20 @@ /obj/effect/turf_decal/corner_steel_grid, /turf/open/floor/plasteel, /area/ship/engineering/communications) -"te" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/table/wood, -/obj/structure/bedsheetbin, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) -"tr" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/chair, -/turf/open/floor/plasteel/mono, -/area/ship/medical) -"tu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4{ - dir = 1 +"th" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/advanced_airlock_controller{ - pixel_x = -25 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/warning/cee{ - dir = 8 + dir = 4 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/machinery/light/small/directional/north, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "tx" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1561,37 +1512,12 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"tL" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/newscaster/security_unit{ - dir = 1; - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/security) "tM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/engine/hull, /area/ship/external) -"tP" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "tT" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/maintenance/port) @@ -1614,6 +1540,20 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) +"uj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/catwalk/over, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) "uk" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1642,24 +1582,13 @@ /obj/item/clothing/head/hardhat/dblue, /turf/open/floor/plating, /area/ship/engineering) -"uq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/frame/machine, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/corner, -/obj/effect/turf_decal/techfloor/hole/right, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) +"un" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/west, +/obj/machinery/photocopier/faxmachine/longrange, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/blue, +/area/ship/bridge) "uy" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1715,6 +1644,20 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"vf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/maintenance/port) "vm" = ( /turf/open/floor/engine/hull, /area/ship/external) @@ -1750,24 +1693,20 @@ /obj/item/pen, /turf/open/floor/plasteel/grimy, /area/ship/crew/office) -"vL" = ( -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/purple, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/corner{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/obj/structure/frame/machine, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 +"vB" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"vM" = ( +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/plasteel/tech, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/airalarm/directional/south, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) "vN" = ( /obj/structure/window/reinforced/spawner, @@ -1802,19 +1741,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/construction) -"vZ" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) "wg" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 1 @@ -1835,6 +1761,18 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"wh" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/door/window/eastright{ + name = "Surgery" + }, +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/turf_decal/corner/opaque/green/border{ + dir = 6 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "wk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 @@ -1897,20 +1835,34 @@ /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"xn" = ( +/obj/item/mop, +/obj/item/storage/bag/trash{ + pixel_x = 6 + }, +/obj/effect/turf_decal/kfp_small/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/construction) "xp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) -"xE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +"xD" = ( +/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, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/construction) +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/communications) "xH" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "engine fuel pump" @@ -1944,6 +1896,27 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) +"xQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/port) "xR" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2003,13 +1976,13 @@ /turf/open/floor/plasteel/mono/white, /area/ship/medical) "yo" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 +/obj/docking_port/stationary{ + dwidth = 7; + width = 14; + height = 15 }, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/turf/template_noop, +/area/template_noop) "yp" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical) @@ -2057,6 +2030,14 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"yI" = ( +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/corner/opaque/green/border{ + dir = 10 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "yJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -2082,6 +2063,23 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"yT" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"yV" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/directional/east, +/obj/machinery/computer/monitor{ + dir = 8 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) "yW" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2096,26 +2094,17 @@ /obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"zh" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) -"zn" = ( -/obj/machinery/light{ - dir = 1 +"zi" = ( +/obj/structure/mirror{ + pixel_x = 25 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 +/obj/structure/sink{ + dir = 8; + pixel_x = 12 }, -/obj/structure/chair, -/turf/open/floor/plasteel/mono, -/area/ship/medical) +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/crew) "zr" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ @@ -2125,21 +2114,6 @@ /obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/medical) -"zt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 8 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) "zu" = ( /obj/effect/turf_decal/corner_steel_grid, /obj/effect/turf_decal/corner_steel_grid{ @@ -2147,10 +2121,33 @@ }, /turf/open/floor/plasteel, /area/ship/crew/office) -"zF" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/construction) +"zw" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2 + }, +/obj/item/clothing/head/welding, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) +"zy" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "zS" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 10 @@ -2181,6 +2178,15 @@ /obj/effect/turf_decal/corner/opaque/white/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"Aj" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/ship/engineering) "Ak" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = -32 @@ -2191,6 +2197,14 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"Am" = ( +/obj/item/radio/intercom/wideband/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/machinery/computer/cargo/express, +/turf/open/floor/carpet/blue, +/area/ship/engineering/communications) "Ao" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/patterned, @@ -2203,6 +2217,15 @@ "As" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/medical) +"At" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/construction) "Ax" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2255,39 +2278,21 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/status_display/shuttle{ - pixel_x = 32 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/corner/opaque/blue/border{ dir = 8 }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/dark, /area/ship/engineering/communications) -"Bb" = ( -/obj/structure/table, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -32 - }, -/obj/item/storage/box/cups, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) -"BC" = ( -/obj/machinery/light/small{ +"Bp" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/computer/mech_bay_power_console{ dir = 8 }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/plasteel, +/area/ship/cargo) "BG" = ( /obj/machinery/door/airlock/external, /obj/docking_port/mobile{ @@ -2303,19 +2308,31 @@ }, /turf/open/floor/plasteel, /area/ship/engineering) -"BP" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 +"BQ" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer4, /turf/open/floor/plating, -/area/ship/crew/office) -"BS" = ( -/obj/structure/window/plasma/reinforced/plastitanium, -/obj/structure/curtain/bounty, -/obj/structure/grille, +/area/ship/engineering/atmospherics) +"BX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/security) +/area/ship/maintenance/starboard) "BZ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2335,51 +2352,25 @@ "Ce" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew) -"Cn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "Cw" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 1 }, /turf/open/floor/plating, /area/ship/maintenance/port) +"Cx" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "Cz" = ( /obj/effect/turf_decal/corner/opaque/blue/half{ dir = 1 }, /turf/open/floor/plasteel, /area/ship/engineering/communications) -"CD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/closet/wall{ - icon_door = "red_wall"; - name = "security closet"; - pixel_y = 28 - }, -/obj/item/storage/backpack/security, -/obj/item/clothing/gloves/fingerless, -/obj/item/clothing/shoes/cowboy, -/obj/item/clothing/under/rank/security/officer/blueshirt, -/obj/item/clothing/glasses/hud/security/sunglasses, -/obj/item/clothing/suit/armor/vest/duster, -/obj/item/clothing/head/cowboy/sec, -/turf/open/floor/plasteel/grimy, -/area/ship/security) "CG" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/industrial/outline/yellow, @@ -2392,13 +2383,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"CO" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) "CQ" = ( /obj/structure/closet/crate/bin, /obj/effect/turf_decal/industrial/outline/yellow, @@ -2451,22 +2435,9 @@ /obj/item/flashlight/seclite, /obj/item/reagent_containers/spray/pepper, /obj/item/melee/classic_baton/telescopic, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/dark, /area/ship/security) -"Dg" = ( -/obj/machinery/light/small, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"Dm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/construction) "Dp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/layer2{ dir = 8 @@ -2474,40 +2445,9 @@ /obj/effect/turf_decal/industrial/warning/cee{ dir = 4 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"Dr" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 5 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew) -"Dv" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "DE" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 @@ -2522,52 +2462,41 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel, /area/ship/hallway/central) -"DH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) +"DJ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/port) "DL" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/pump, /obj/machinery/atmospherics/components/unary/portables_connector/layer4, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Ee" = ( -/obj/machinery/light/small{ - dir = 1 +"Ec" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/door/airlock/grunge{ + dir = 4; + name = "Armory"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Mining Room" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "Ei" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=cargo"; @@ -2576,24 +2505,6 @@ /obj/effect/turf_decal/corner/opaque/yellow/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"Ek" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/monitor{ - dir = 8 - }, -/obj/structure/catwalk/over, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plating, -/area/ship/engineering) "Em" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -2608,6 +2519,22 @@ /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plating, /area/ship/maintenance/port) +"EB" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/table/wood, +/obj/machinery/computer/secure_data/laptop{ + dir = 1 + }, +/obj/item/lighter/greyscale{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes{ + pixel_x = -17; + pixel_y = -1 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/security) "EC" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) @@ -2616,25 +2543,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/mono, /area/ship/engineering/communications) -"ER" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 +"EQ" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/effect/turf_decal/kfp_small/right{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/maintenance/port) +/area/ship/construction) "ES" = ( /obj/effect/turf_decal/corner_steel_grid, /obj/effect/turf_decal/corner_steel_grid{ @@ -2674,62 +2591,29 @@ }, /turf/open/floor/carpet/blue, /area/ship/engineering/communications) -"Fo" = ( -/obj/machinery/newscaster{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/office) -"Fp" = ( +"Fi" = ( /obj/structure/cable{ icon_state = "2-4" }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/structure/closet/crate, +/obj/machinery/firealarm/directional/west, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"Fu" = ( +/obj/machinery/cryopod{ dir = 1 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Fs" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/industrial/warning{ + dir = 9 }, -/turf/open/floor/plasteel, -/area/ship/construction) +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) "FC" = ( /turf/open/floor/plasteel/grimy, /area/ship/crew/office) -"FH" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red, -/obj/effect/turf_decal/corner/opaque/red{ - dir = 8 - }, -/obj/structure/closet/secure_closet/wall{ - dir = 1; - icon_state = "sec_wall"; - name = "firearms locker"; - pixel_y = -28; - req_access_txt = "1" - }, -/obj/item/storage/belt/security, -/obj/item/clothing/accessory/holster, -/turf/open/floor/plasteel/dark, -/area/ship/security) "FJ" = ( /obj/structure/chair{ dir = 8 @@ -2753,18 +2637,6 @@ }, /turf/open/floor/plasteel/patterned/brushed, /area/ship/crew) -"FY" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/item/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/communications) "Ga" = ( /obj/machinery/navbeacon/wayfinding/engineering{ name = "navigation beacon" @@ -2792,6 +2664,31 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) +"Gk" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "riggerwindows"; + name = "Blast Shutters" + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/crew) +"Gv" = ( +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/purple, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/frame/machine, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "Gw" = ( /obj/effect/turf_decal/corner/opaque/blue/half{ dir = 1 @@ -2804,6 +2701,28 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/communications) +"Gz" = ( +/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/airlock/public/glass{ + dir = 4; + name = "Communications" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/communications) "GC" = ( /obj/structure/cable/yellow{ icon_state = "0-4" @@ -2827,9 +2746,13 @@ /obj/machinery/atmospherics/pipe/simple/yellow/visible/layer4, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"GN" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Communications" +"GO" = ( +/obj/machinery/door/airlock/glass{ + dir = 4; + name = "Canteen" + }, +/obj/structure/cable{ + icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -2837,8 +2760,14 @@ /obj/machinery/door/firedoor/border_only{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, /turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) +/area/ship/crew/canteen) "GQ" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, @@ -2854,15 +2783,6 @@ /obj/machinery/power/port_gen/pacman, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"GY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/crew/office) "He" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2879,31 +2799,25 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/maintenance/port) -"Hg" = ( -/obj/structure/dresser, -/obj/machinery/light/small{ +"Hi" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 +/obj/machinery/door/airlock/virology/glass{ + dir = 4; + name = "Infirmary" }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/turf/open/floor/plasteel/dark, +/area/ship/medical) "Hl" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/scrubber, /obj/machinery/atmospherics/components/unary/portables_connector/layer4, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Hm" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = "riggerwindows"; - name = "Blast Shutters" - }, -/obj/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/crew) "Hn" = ( /obj/structure/bed, /obj/item/bedsheet/random, @@ -2913,25 +2827,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"Ho" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/catwalk/over, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/ship/engineering) "Ht" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2963,10 +2858,24 @@ }, /turf/open/floor/plasteel, /area/ship/crew/office) +"HD" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Communications" + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/communications) "HG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/grimy, /area/ship/security) "HR" = ( @@ -2996,6 +2905,9 @@ /obj/machinery/door/airlock{ name = "Head" }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/ship/crew) "HW" = ( @@ -3014,20 +2926,15 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"Id" = ( -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/corner/opaque/green/border{ - dir = 10 - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) "Iq" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) +"Iw" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/chair, +/turf/open/floor/plasteel/mono, +/area/ship/medical) "IB" = ( /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel/tech, @@ -3043,14 +2950,6 @@ /obj/effect/turf_decal/corner/opaque/yellow/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"IT" = ( -/obj/machinery/newscaster/security_unit{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/filingcabinet/employment, -/turf/open/floor/carpet/blue, -/area/ship/bridge) "IV" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3064,15 +2963,26 @@ /obj/effect/turf_decal/corner/opaque/white/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) -"Ji" = ( -/obj/machinery/light/small{ - dir = 4 +"Jf" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/computer/mech_bay_power_console{ +/turf/open/floor/plating, +/area/ship/maintenance/port) +"Jt" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Communications" + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/cargo) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/communications) "Jz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3098,6 +3008,40 @@ /obj/structure/grille, /turf/open/floor/plating, /area/ship/medical) +"JK" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"JS" = ( +/obj/item/radio/intercom/directional/east, +/obj/item/mecha_parts/chassis/ripley, +/obj/item/mecha_parts/mecha_equipment/drill{ + pixel_y = -11 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/ship/cargo) +"Kd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 8 + }, +/obj/structure/closet/secure_closet/wall{ + dir = 1; + icon_state = "sec_wall"; + name = "firearms locker"; + pixel_y = -28; + req_access_txt = "1" + }, +/obj/item/storage/belt/security, +/obj/item/clothing/accessory/holster, +/turf/open/floor/plasteel/dark, +/area/ship/security) "Kg" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3110,27 +3054,27 @@ }, /turf/open/floor/plasteel, /area/ship/crew/office) -"Kk" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"Kh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/number/two{ dir = 8 }, -/obj/machinery/door/airlock/glass{ - name = "Canteen" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"KI" = ( +/turf/open/floor/plating, +/area/ship/construction) +"Kn" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ + dir = 8; id = "riggerwindows"; name = "Blast Shutters" }, /obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, -/area/ship/construction) +/area/ship/bridge) "KY" = ( /obj/structure/chair/office/light, /obj/effect/landmark/start/medical_doctor, @@ -3140,6 +3084,11 @@ /obj/effect/turf_decal/corner/opaque/white/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"Le" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plating, +/area/ship/construction) "Ll" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3194,27 +3143,6 @@ /obj/item/clothing/mask/cigarette/pipe/cobpipe, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"LV" = ( -/obj/machinery/door/airlock/glass{ - name = "Canteen" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) "Md" = ( /obj/machinery/power/terminal, /obj/structure/cable, @@ -3227,26 +3155,9 @@ /obj/structure/mirror{ pixel_y = 32 }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/patterned, /area/ship/crew) -"MP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"MQ" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/components/binary/valve/digital, -/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer4, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "MW" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3258,18 +3169,6 @@ }, /turf/open/floor/plasteel/mono, /area/ship/hallway/central) -"MZ" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/suit/space/engineer, -/obj/item/clothing/head/helmet/space/light/engineer, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "Nd" = ( /obj/effect/turf_decal/borderfloor, /obj/structure/table/glass, @@ -3314,26 +3213,6 @@ /obj/item/circuitboard/mecha/ripley/peripherals, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"ND" = ( -/obj/structure/table/optable, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/borderfloor/cee, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"NF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "NO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -3346,18 +3225,17 @@ }, /turf/open/floor/engine/hull, /area/ship/external) -"NV" = ( -/obj/machinery/power/apc/auto_name/south, +"Od" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/power/smes/engineering, /obj/structure/cable, -/obj/machinery/door/window/eastright{ - name = "Surgery" - }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/turf_decal/corner/opaque/green/border{ - dir = 6 +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) "Of" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 1 @@ -3375,18 +3253,23 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/bridge) -"OG" = ( -/obj/structure/cable{ - icon_state = "2-4" +"Ov" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/chair{ + dir = 1 }, -/obj/structure/closet/crate, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) +"OJ" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ship/security) "OK" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = -32 @@ -3414,16 +3297,6 @@ "OR" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/construction) -"OS" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 1 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) "OV" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -3450,20 +3323,10 @@ /obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"Pa" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 6 - }, -/obj/effect/turf_decal/corner/opaque/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) +"OY" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) "Pd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -3504,30 +3367,16 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/security) -"Pr" = ( -/obj/machinery/button/door{ - dir = 4; - id = "riggerdoors"; - name = "Blast Door Control"; - pixel_x = -25; - pixel_y = 5 - }, -/obj/machinery/button/door{ - dir = 4; - id = "riggerwindows"; - name = "Window Lockdown"; - pixel_x = -25; - pixel_y = -5 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue/border, -/turf/open/floor/plasteel/mono/dark, -/area/ship/bridge) "Pw" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew/canteen) +"PA" = ( +/obj/structure/table, +/obj/machinery/newscaster/directional/west, +/obj/item/storage/box/cups, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "PB" = ( /obj/structure/chair, /turf/open/floor/plasteel/mono, @@ -3543,17 +3392,20 @@ "PV" = ( /turf/open/floor/plating, /area/ship/maintenance/starboard) -"PW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +"Qa" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/structure/window/reinforced/spawner/west, +/obj/effect/turf_decal/corner/opaque/red{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/construction) +/obj/effect/turf_decal/corner/opaque/red, +/obj/effect/turf_decal/corner/opaque/red{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/security) "Qd" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3585,24 +3437,50 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"Qj" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ +"Qm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = "riggerwindows"; - name = "Blast Shutters" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/catwalk/over, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plating, -/area/ship/construction) +/area/ship/engineering) "Qv" = ( /obj/structure/closet/crate, /obj/item/circuitboard/computer/rdconsole, /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plasteel, /area/ship/construction) +"QQ" = ( +/obj/machinery/holopad/emergency/command, +/obj/item/storage/backpack/captain, +/obj/item/clothing/shoes/cowboy/black, +/obj/item/clothing/under/rank/security/detective/grey, +/obj/item/clothing/accessory/waistcoat, +/obj/item/clothing/suit/jacket/leather/duster/command, +/obj/item/clothing/glasses/sunglasses, +/obj/item/gun/ballistic/revolver/detective, +/obj/item/clothing/head/HoS/cowboy, +/obj/structure/closet/secure_closet/wall{ + dir = 4; + icon_state = "solgov_wall"; + name = "first mate's closet"; + pixel_x = -28; + req_access_txt = "57" + }, +/obj/item/ammo_box/c38, +/obj/item/ammo_box/c38, +/turf/open/floor/carpet/blue, +/area/ship/engineering/communications) "QT" = ( /obj/item/mecha_parts/part/ripley_right_leg{ pixel_x = 5; @@ -3617,62 +3495,12 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"QV" = ( -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"QY" = ( -/obj/item/radio/intercom/wideband{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/computer/cargo/express, -/turf/open/floor/carpet/blue, -/area/ship/engineering/communications) "Re" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8 }, /turf/open/floor/engine/hull, /area/ship/external) -"Rf" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/port) -"Rn" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) "Rt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3681,21 +3509,26 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/status_display/shuttle{ - pixel_x = 32 - }, /obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) "Ru" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, /obj/structure/chair{ dir = 1 }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/communications) +"Ry" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/structure/bedsheetbin, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "Rz" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ @@ -3705,50 +3538,73 @@ /obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/bridge) -"RH" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/photocopier/faxmachine/longrange, -/turf/open/floor/carpet/blue, -/area/ship/bridge) -"RO" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer4, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "RW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/ship/crew) +"RY" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"Sa" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/office) "Sh" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) -"Ss" = ( +"Si" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"Sj" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/light/small{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/grunge{ + dir = 4; + name = "Atmospherics" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "Su" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/window/reinforced, @@ -3756,6 +3612,10 @@ /obj/item/clothing/suit/space/hardsuit/mining/independent, /turf/open/floor/plating, /area/ship/engineering) +"Sz" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/office) "SE" = ( /obj/machinery/washing_machine, /obj/machinery/light_switch{ @@ -3764,6 +3624,53 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew) +"SS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/blue/bordercorner{ + dir = 8 + }, +/obj/item/storage/backpack/captain, +/obj/item/clothing/shoes/cowboy/white, +/obj/item/clothing/under/rank/command/captain, +/obj/item/clothing/suit/armor/vest/capcarapace/duster, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/caphat/cowboy, +/obj/item/gun/ballistic/automatic/pistol/m1911, +/obj/structure/closet/secure_closet/wall{ + dir = 8; + icon_state = "solgov_wall"; + name = "captain's closet"; + pixel_x = 28; + req_access_txt = "20" + }, +/obj/item/ammo_box/magazine/m45, +/obj/item/ammo_box/magazine/m45, +/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/spacecash/bundle/c1000, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) +"SX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "SY" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -3779,111 +3686,50 @@ /obj/machinery/modular_computer/console/preset/command{ dir = 1 }, +/obj/machinery/light/small/directional/west, /turf/open/floor/carpet/blue, /area/ship/engineering/communications) -"Tk" = ( -/obj/item/reagent_containers/food/snacks/canned/beans{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/canned/beans{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/canned/beans{ - pixel_x = -2 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 1; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 8; - pixel_y = -3 +"Tm" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/closet/crate{ - name = "food crate" +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 }, -/obj/item/storage/cans/sixbeer, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/effect/turf_decal/box/corners{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) +/obj/machinery/light/small/directional/north, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/maintenance/port) "Tq" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) -"Tt" = ( -/obj/machinery/light/small{ +"TF" = ( +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/holopad/emergency/command, -/obj/item/storage/backpack/captain, -/obj/item/clothing/shoes/cowboy/black, -/obj/item/clothing/under/rank/security/detective/grey, -/obj/item/clothing/accessory/waistcoat, -/obj/item/clothing/suit/jacket/leather/duster/command, -/obj/item/clothing/glasses/sunglasses, -/obj/item/gun/ballistic/revolver/detective, -/obj/item/clothing/head/HoS/cowboy, -/obj/structure/closet/secure_closet/wall{ - dir = 4; - icon_state = "solgov_wall"; - name = "first mate's closet"; - pixel_x = -28; - req_access_txt = "57" - }, -/obj/item/ammo_box/c38, -/obj/item/ammo_box/c38, -/turf/open/floor/carpet/blue, -/area/ship/engineering/communications) -"TC" = ( -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/carpet/blue, -/area/ship/engineering/communications) -"TD" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering) -"TH" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 +/obj/machinery/door/airlock/security/glass{ + dir = 4; + name = "Security"; + req_access_txt = "1" }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) +/obj/structure/curtain/bounty, +/turf/open/floor/plasteel/dark, +/area/ship/security) "TO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -3891,13 +3737,6 @@ /obj/effect/turf_decal/corner/opaque/yellow/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"TP" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "TR" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3911,62 +3750,26 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"TS" = ( -/obj/structure/mirror{ - pixel_x = 25 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/machinery/light/small, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew) -"TZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/maintenance/port) +"TW" = ( +/obj/item/radio/intercom/directional/south, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) "Ug" = ( /turf/open/floor/plating, /area/ship/construction) -"Uj" = ( +"Uo" = ( /obj/structure/cable{ icon_state = "1-2" }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) -"Ul" = ( -/obj/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "riggerwindows"; - name = "Blast Shutters" - }, -/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/crew) +/area/ship/engineering/atmospherics) "Us" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -3986,6 +3789,20 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"Uv" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "UA" = ( /turf/open/floor/plasteel/mono, /area/ship/crew/office) @@ -3998,15 +3815,19 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel, /area/ship/engineering) +"US" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/ship/maintenance/port) "UW" = ( /obj/effect/turf_decal/corner/opaque/purple/half{ dir = 1 }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"UY" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/crew) "Va" = ( /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, @@ -4016,6 +3837,27 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Vh" = ( +/obj/machinery/light/small/directional/north, +/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/catwalk/over, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Mining Room" + }, +/turf/open/floor/plating, +/area/ship/engineering) "Vn" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -4044,26 +3886,26 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"Vq" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/newscaster/security_unit/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ship/security) "Vs" = ( -/obj/machinery/status_display/shuttle{ - pixel_x = 32 - }, /obj/effect/turf_decal/corner/opaque/blue/border{ dir = 1 }, +/obj/item/radio/intercom/wideband/directional/east, /turf/open/floor/plasteel/mono/dark, /area/ship/bridge) -"VF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 4 +"Vt" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 }, -/turf/open/floor/plating, -/area/ship/construction) +/obj/structure/filingcabinet/chestdrawer, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/blue, +/area/ship/engineering/communications) "VG" = ( /obj/structure/sign/poster/solgov/solgov_enlist{ pixel_y = 32 @@ -4080,26 +3922,35 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/turf/open/floor/plasteel/mono, -/area/ship/hallway/central) -"VW" = ( -/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/plasteel/mono, +/area/ship/hallway/central) +"VQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/red/border{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"VX" = ( +/obj/structure/grille, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "riggerwindows"; name = "Blast Shutters" }, -/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, -/area/ship/construction) -"Wh" = ( -/obj/machinery/computer/operating, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/obj/effect/turf_decal/borderfloor/cee, -/turf/open/floor/plasteel/dark, -/area/ship/medical) +/area/ship/engineering/atmospherics) "Wm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -4110,6 +3961,22 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) +"WD" = ( +/obj/machinery/light/directional/north, +/obj/structure/frame/machine, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/turf_decal/techfloor/hole/right, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "WE" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) @@ -4191,6 +4058,7 @@ /obj/item/clothing/glasses/hud/diagnostic{ pixel_x = 6 }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) "WV" = ( @@ -4204,36 +4072,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) -"Xe" = ( -/obj/effect/turf_decal/industrial/loading, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/structure/ore_box, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo) "Xg" = ( /turf/open/floor/plasteel/mono, /area/ship/hallway/central) -"Xk" = ( -/obj/machinery/power/port_gen/pacman/super, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"Xl" = ( +"Xi" = ( +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 + icon_state = "0-8" }, +/obj/machinery/atmospherics/components/binary/valve/digital, +/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer4, /turf/open/floor/plating, -/area/ship/maintenance/starboard) +/area/ship/engineering/atmospherics) "Xm" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4241,15 +4091,16 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/mono, /area/ship/crew/office) -"Xw" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 +"Xv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/office) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/ship/construction) "XD" = ( /obj/structure/chair/office, /obj/effect/landmark/start/captain, @@ -4261,22 +4112,6 @@ }, /turf/open/floor/carpet/blue, /area/ship/bridge) -"XK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "XM" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew/office) @@ -4300,81 +4135,39 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"XZ" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"Yo" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/obj/machinery/door/airlock/virology/glass{ - name = "Infirmary" +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "riggerwindows"; + name = "Blast Shutters" }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"Yb" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/construction) +"Yu" = ( /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/grunge{ - name = "Armory"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"Yc" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 + icon_state = "1-8" }, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + icon_state = "1-2" }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) +"YC" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, /area/ship/engineering) -"YF" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/starboard) "YG" = ( /obj/machinery/door/airlock/mining/glass{ name = "Mech Bay" @@ -4390,6 +4183,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"YH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/corner/opaque/blue/border{ + dir = 8 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "YJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4399,6 +4204,13 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"YZ" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/circuitboard/machine/protolathe/department/cargo, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/office) "Za" = ( /obj/effect/turf_decal/borderfloor{ dir = 1 @@ -4411,19 +4223,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) -"Ze" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal, -/obj/item/storage/cans/sixbeer, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) "Zf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4463,6 +4262,16 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering) +"ZB" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "ZE" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering/atmospherics) @@ -4479,16 +4288,20 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) -"ZP" = ( -/obj/machinery/power/apc/auto_name/north, +"ZU" = ( +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-2" }, -/obj/structure/chair{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/corner/opaque/blue/border{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/crew/office) +/turf/open/floor/plasteel/mono/dark, +/area/ship/bridge) "ZW" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4547,24 +4360,24 @@ Ly Ly Ly Ly -UY -UY -UY +Ce +Ce +Ce bC -UY -aN -Hm -UY -Hm -UY +Ce +Gk +Gk +Ce +Gk +Ce bC Pw -bl -bl +sQ +sQ Pw Pw -bl -bl +sQ +sQ Pw uN tT @@ -4580,31 +4393,31 @@ Ly Ly Ly Ly -UY +Ce bC FO cc -UY +Ce Hn AH AH -te +Ry gc -pY -UY -iG +Fu +Ce +aD db pv -Ze -Bb +nU +PA WO db OK tT rZ mY -OG -MP +Fi +US Md ue Of @@ -4613,7 +4426,7 @@ Of Ly Ly Ly -UY +Ce bC MF Ao @@ -4624,18 +4437,18 @@ CL rl tE RW -Dr -UY -CO +bZ +Ce +dx Cc PF PF FJ Ei TO -zh +ZB tT -QV +DJ xO fx Gf @@ -4647,27 +4460,27 @@ Cw Ly Ly Ly -UY +Ce bC SE hG -TS -UY -Hg +zi +Ce +Si pP zV -fU +SX if pT xR -Ss +ab Rt -Uj +dU IV IV oV ID -se +Yu qS CS CR @@ -4680,32 +4493,32 @@ Of (5,1,1) = {" Ly Ly -UY +Ce bC bC -UY +Ce av -UY +Ce bC -UY -Hm -Ul -UY -UY +Ce +Gk +Gk +Ce +Ce eT bC Pw Pw Pw eQ -Kk -LV +hR +GO eQ Pw uN -ER -TP -yo +Tm +Jf +yT Er uN tT @@ -4713,10 +4526,10 @@ Ly "} (6,1,1) = {" Ce -UY +Ce bC bC -UY +Ce Ly Ly Ly @@ -4729,15 +4542,15 @@ Ly sb XM VG -FC -BP +Sz +nS Hz sL Ll zu -lT +YZ tT -Rf +xQ uN uN tT @@ -4769,7 +4582,7 @@ XU UA BZ fn -Fo +Sa tT jm tT @@ -4796,16 +4609,16 @@ Ly Ly vm XM -ZP -GY +ph +oy mQ Kg Xm vR fn -Xw +ge tT -TZ +vf tT Ly Ly @@ -4823,8 +4636,8 @@ Ly Ly Ly Ly -Rz -Rz +oe +Kn qd qd qd @@ -4834,8 +4647,8 @@ iD iD iD js -GN -fS +Jt +HD js iD uN @@ -4859,13 +4672,13 @@ Ly Ly Rz pt -OS -Pr -IT -RH +JK +cl +ax +un qd -TC -Tt +Vt +QQ Te Cz vt @@ -4898,16 +4711,16 @@ Pd XD OV qd -QY +Am bx Fe Gw EK lp jl -fu +ng Tq -Dv +RY kC kC Tq @@ -4928,22 +4741,22 @@ Ly Rz JE Vs -lF -mw -zt +SS +ZU +YH lY -DH +xD AQ uy qu sj Jz sV -FY +TW Tq -Ho +Qm vn -BC +Od GC kC Tq @@ -4959,8 +4772,8 @@ Ly Ly Ly Ly -Rz -Rz +oe +cb qd qd qd @@ -4970,8 +4783,8 @@ iD iD iD js -GN -lR +Jt +Gz js iD kC @@ -5000,21 +4813,21 @@ Ly Ly vm oh -uq +WD WS -vL +Gv UW Xg Ht ES -Rn +vM Tq WH IB Su DE XV -Xk +YC Tq "} (15,1,1) = {" @@ -5075,14 +4888,14 @@ UW ee VI ES -TH +Ov Tq -Yc +bA NO cx WM bL -Dg +jp Tq "} (17,1,1) = {" @@ -5109,9 +4922,9 @@ UW cv by ES -eg +mZ Tq -Ee +Vh aC Ga Ak @@ -5133,9 +4946,9 @@ Ly Ly sT qQ -Tk -cD -Xe +my +zy +hP jS ci Xg @@ -5150,7 +4963,7 @@ iA Az Ic UL -tu +nE uI "} (19,1,1) = {" @@ -5174,7 +4987,7 @@ YG qe yr fO -dP +eF MW qo CQ @@ -5203,15 +5016,15 @@ sT yW pO Wm -fy +OY WE JG -XZ -dv +mW +Hi yp -jT -BS -gI +TF +Iq +Iq kC ZZ hI @@ -5232,7 +5045,7 @@ Ly Ly Ly Ly -Ly +yo sT yW Hy @@ -5241,16 +5054,16 @@ bo iC PB ve -Id +yI As Pj HG -aJ +mz Tq -rS -MZ -Ek -TD +uj +rL +yV +Aj kC Tq Ly @@ -5271,17 +5084,17 @@ sT hy QT ib -vZ +zw iC -zn +Iw jL Pg As -CD +sq oO -az +EB Tq -Dv +RY kC kC Tq @@ -5303,17 +5116,17 @@ Ly Ly sT yW -Ji -rb +Bp +JS jZ iC -tr +qE rm xX As -kL +OJ xJ -tL +Vq qm ZY qm @@ -5343,11 +5156,11 @@ WE WE go Us -NV +wh yp Iq sB -tP +Qa qm ZY qm @@ -5374,7 +5187,7 @@ Ly Ly vm As -Wh +pD Za Ax Je @@ -5383,7 +5196,7 @@ ON mH HR qm -XK +th qm Ly Ly @@ -5408,14 +5221,14 @@ Ly Ly tM zr -ND +sy WV Ai KY -aI +fl ON WG -FH +Kd qm ZY qm @@ -5427,10 +5240,10 @@ Ly "} (27,1,1) = {" aT -kK +aT OR OR -kK +aT Ly Ly Ly @@ -5446,12 +5259,12 @@ ZI fg id iR -Pa +rH ON -op +VQ CW qm -YF +ik Sh Sh qm @@ -5462,32 +5275,32 @@ Ly (28,1,1) = {" Ly Ly -kK +aT OR OR -kK -KI -kK +aT +iT +aT OR -kK -KI -VW -kK -kK -Qj +aT +iT +iT +aT +aT +Yo OR ZE ZE -qU +Sj ZE ZE lf -Yb +Ec ZE Sh -es -pr -eK +BX +Cx +vB HW Sh qm @@ -5497,23 +5310,23 @@ Ly Ly Ly Ly -kK +aT OR Ug oX -zF -kK -Fs -rN -Dm -PW -eD +cw +aT +dc +fp +iP +Kh +At jI pE Qd -kP +Uo vo -Fp +Uv jq kV Zf @@ -5531,19 +5344,19 @@ sS Ly Ly Ly -kK +aT OR -iH +eu kj Ap ie vW -xE +Xv Lo yJ Ug Qv -kK +aT DL Ad GM @@ -5553,7 +5366,7 @@ bB wp xg qm -ew +hE va ff zS @@ -5566,31 +5379,31 @@ Ly Ly Ly Ly -kK +aT OR Ug bc -kK -rJ -sM -Ug -oM +aT +Le +xn +bi +EQ iU -VF -kK +oz +aT Hl Ad -RO -MQ +BQ +Xi GT fQ -NF +sa xg qm dJ PV -Xl -Cn +jW +lc aw yy sS @@ -5601,23 +5414,23 @@ Ly Ly Ly Ly -kK -kK -kK +aT +aT +aT OR -kK -VW -KI -kK -KI -kK +aT +iT +iT +aT +iT +aT OR ZE -ij +VX ZE ZE ZE -ij +VX ZE ZE Sh diff --git a/_maps/shuttles/shiptest/independent_rube_goldberg.dmm b/_maps/shuttles/shiptest/independent_rube_goldberg.dmm index eb62a9193c17..7532f89bec21 100644 --- a/_maps/shuttles/shiptest/independent_rube_goldberg.dmm +++ b/_maps/shuttles/shiptest/independent_rube_goldberg.dmm @@ -5,16 +5,16 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"ab" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = 25 +"ad" = ( +/obj/machinery/light/directional/west, +/obj/structure/toilet/secret{ + dir = 8; + pixel_x = 7; + secret_type = "/obj/item/clothing/shoes/drip" }, /obj/effect/decal/cleanable/insectguts, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "ag" = ( /obj/structure/cable/pink{ icon_state = "4-8" @@ -34,15 +34,6 @@ /obj/machinery/door/airlock/command/glass, /turf/open/floor/mineral/titanium, /area/ship/bridge) -"aq" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) "at" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -90,6 +81,28 @@ /obj/item/reagent_containers/spray/cleaner, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) +"aX" = ( +/obj/machinery/light/directional/north, +/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/enzyme, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab/chicken, +/obj/item/reagent_containers/food/snacks/meat/slab/chicken, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) "ba" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/plating, @@ -143,17 +156,24 @@ /obj/machinery/washing_machine, /turf/open/floor/carpet/royalblue, /area/ship/crew/dorm) -"br" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "by" = ( /obj/machinery/suit_storage_unit/independent/engineering, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) +"bz" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/west, +/obj/machinery/cell_charger, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/corner/opaque/yellow/border{ + dir = 9 + }, +/obj/item/stock_parts/cell/hyper/empty, +/obj/item/stock_parts/cell/hyper/empty, +/turf/open/floor/mineral/titanium, +/area/ship/bridge) "bA" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ dir = 9 @@ -253,6 +273,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) +"cn" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "02 Chamber Blast"; + name = "02 Chamber Vent" + }, +/turf/open/floor/engine/airless, +/area/ship/engineering/atmospherics) "cs" = ( /obj/machinery/holopad/emergency/buddy, /turf/open/floor/wood/mahogany, @@ -261,12 +289,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold/visible, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"cC" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) "cF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -303,13 +325,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"dk" = ( -/obj/machinery/computer/atmos_control/tank/air_tank, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "dm" = ( /obj/structure/window/reinforced/spawner{ dir = 8 @@ -348,24 +363,6 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"dH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-6" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) "dK" = ( /obj/machinery/atmospherics/pipe/layer_manifold/visible, /obj/structure/cable/green{ @@ -407,6 +404,21 @@ }, /turf/open/floor/wood/mahogany, /area/ship/crew/canteen) +"dT" = ( +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/canteen) +"dU" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/dorm) +"dV" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "Mix Chamber Blast"; + name = "Mix Chamber Vent" + }, +/turf/open/floor/engine/airless, +/area/ship/engineering/atmospherics) "dY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -414,6 +426,11 @@ /obj/structure/closet/crate/engineering/electrical, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) +"ea" = ( +/obj/machinery/power/emitter, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) "ei" = ( /turf/closed/wall, /area/ship/storage) @@ -444,45 +461,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"ep" = ( -/obj/structure/rack, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/mineral/wood/fifty, -/obj/item/stack/sheet/mineral/plasma/twenty, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/plasmarglass{ - amount = 15 - }, -/obj/item/stack/sheet/plastic/five, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/cell, -/obj/item/stock_parts/cell, -/obj/item/stock_parts/cell, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) "ey" = ( /obj/structure/window/reinforced/spawner{ dir = 4 @@ -608,14 +586,6 @@ /obj/machinery/power/tesla_coil, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) -"fA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -28 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) "fB" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ @@ -672,6 +642,16 @@ /obj/structure/railing, /turf/open/floor/plating/airless, /area/ship/hallway) +"ga" = ( +/obj/structure/table/optable, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/item/tank/internals/anesthetic, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/plasteel/white, +/area/ship/medical) "gb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -693,6 +673,20 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"gd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown/bordercorner, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "gg" = ( /obj/effect/turf_decal/atmos/air, /turf/open/floor/engine, @@ -736,16 +730,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"gw" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "gF" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ dir = 4 @@ -758,6 +742,10 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"gI" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/engine) "gM" = ( /obj/item/pickaxe/mini, /obj/item/pickaxe/mini, @@ -772,6 +760,13 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) +"gO" = ( +/obj/effect/turf_decal/corner/opaque/yellow/border{ + dir = 1 + }, +/obj/item/disk/holodisk/rube/disk4, +/turf/open/floor/mineral/titanium, +/area/ship/bridge) "gP" = ( /obj/structure/window/reinforced/spawner{ dir = 4 @@ -808,15 +803,13 @@ /obj/item/disk/holodisk/rube/disk3, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"hc" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ +"hi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 4 }, -/obj/machinery/light, -/obj/effect/decal/cleanable/plasma, -/obj/effect/turf_decal/corner/opaque/brown/border, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/engine) "hl" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -824,6 +817,11 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"ho" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/transparent/bar/filled, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/dorm) "hr" = ( /obj/machinery/atmospherics/components/binary/pump/layer2, /obj/effect/decal/cleanable/ash/snappop_phoenix, @@ -867,17 +865,6 @@ /obj/structure/particle_accelerator/end_cap, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) -"hG" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/spline/plain/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/spline/plain/opaque/yellow, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/dorm) "hJ" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -922,13 +909,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"hX" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "id" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -942,30 +922,6 @@ /obj/machinery/air_sensor/atmos/nitrogen_tank, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"iw" = ( -/obj/machinery/light{ - dir = 1 - }, -/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/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/meat/slab, -/obj/item/reagent_containers/food/snacks/meat/slab, -/obj/item/reagent_containers/food/snacks/meat/slab/chicken, -/obj/item/reagent_containers/food/snacks/meat/slab/chicken, -/obj/item/reagent_containers/food/snacks/meat/slab, -/obj/item/reagent_containers/food/snacks/meat/slab, -/obj/item/reagent_containers/food/snacks/meat/slab, -/turf/open/floor/plasteel/grimy, -/area/ship/crew/canteen) "ix" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -981,23 +937,6 @@ /obj/effect/decal/cleanable/food/tomato_smudge, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) -"iG" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/ship/hallway) "iL" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/general/visible/layer2, @@ -1016,32 +955,40 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"iQ" = ( -/obj/structure/rack, -/obj/item/vending_refill/cigarette, -/obj/item/vending_refill/coffee, -/obj/item/vending_refill/cola, -/obj/item/vending_refill/engivend, -/obj/item/vending_refill/medical, -/obj/item/vending_refill/mining_equipment, -/obj/item/vending_refill/medical, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) -"iR" = ( +"iP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-6" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) +"iQ" = ( +/obj/structure/rack, +/obj/item/vending_refill/cigarette, +/obj/item/vending_refill/coffee, +/obj/item/vending_refill/cola, +/obj/item/vending_refill/engivend, +/obj/item/vending_refill/medical, +/obj/item/vending_refill/mining_equipment, +/obj/item/vending_refill/medical, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) +"iR" = ( /obj/machinery/camera/autoname, /obj/effect/turf_decal/corner/opaque/brown/border{ dir = 1 }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"jb" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew/canteen) "jd" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/computer/atmos_control/incinerator{ @@ -1049,26 +996,10 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"jj" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/railing/corner, -/turf/open/floor/plating/airless, -/area/ship/hallway) -"jk" = ( -/obj/machinery/door/airlock/hatch, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/holosign/barrier/atmos/infinite, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +"ji" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/medical) "jl" = ( /obj/item/bedsheet/ce, /obj/structure/bed, @@ -1076,6 +1007,14 @@ /obj/structure/window/reinforced/tinted, /turf/open/floor/carpet/royalblue, /area/ship/crew/dorm) +"jn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, +/obj/machinery/light/directional/east, +/obj/machinery/computer/atmos_control/tank/mix_tank{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "jo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -1160,22 +1099,18 @@ /obj/machinery/vending/tool, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) -"kf" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 +"km" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/medical) -"kj" = ( -/obj/structure/table/wood, -/obj/structure/bedsheetbin, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -25 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "kn" = ( /obj/structure/window/reinforced/spawner{ dir = 1 @@ -1232,20 +1167,13 @@ /obj/item/circuitboard/machine/vendor, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) -"kG" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable/green{ - icon_state = "4-10" - }, -/obj/machinery/firealarm{ - pixel_y = 25 +"kE" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 }, -/obj/structure/railing/corner, -/turf/open/floor/plating/airless, -/area/ship/hallway) +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/stellar, +/area/ship/crew/canteen) "kM" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1271,6 +1199,11 @@ }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) +"kR" = ( +/obj/machinery/computer/atmos_control/tank/air_tank, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "kW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -1280,6 +1213,15 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"lb" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/disk/holodisk/rube/disk5, +/turf/open/floor/plating, +/area/ship/engineering/engine) "ld" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -1297,35 +1239,27 @@ }, /turf/open/floor/carpet/royalblue, /area/ship/crew/dorm) -"lt" = ( -/obj/machinery/light{ - dir = 8 +"ly" = ( +/obj/machinery/door/window{ + dir = 4 }, /obj/effect/turf_decal/trimline/transparent/bar, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) -"ly" = ( -/obj/machinery/door/window{ +"lT" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/spline/plain/opaque/yellow{ dir = 4 }, -/obj/effect/turf_decal/trimline/transparent/bar, +/obj/effect/turf_decal/spline/plain/opaque/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) "lX" = ( /turf/closed/wall/mineral/titanium/survival/nodiagonal, /area/ship/engineering/atmospherics) -"lY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "ma" = ( /obj/structure/rack, /obj/item/storage/part_replacer, @@ -1339,13 +1273,6 @@ /obj/item/disk/holodisk/rube/disk6, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) -"mf" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/ship/engineering/engine) "mi" = ( /obj/machinery/door/airlock/hatch, /obj/machinery/atmospherics/pipe/simple/general/visible/layer2, @@ -1355,6 +1282,21 @@ /obj/structure/holosign/barrier/atmos/infinite, /turf/open/floor/plating, /area/ship/engineering) +"mp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/green{ + icon_state = "1-6" + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/industrial/radiation{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/radiation{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/ship/storage) "mr" = ( /obj/machinery/atmospherics/pipe/simple{ dir = 10 @@ -1362,27 +1304,36 @@ /obj/effect/decal/cleanable/blood/gibs/torso, /turf/open/floor/plating, /area/ship/engineering/engine) -"mO" = ( -/obj/effect/turf_decal/spline/fancy/wood, -/turf/open/floor/wood/mahogany, -/area/ship/crew/canteen) -"mQ" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"mt" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/trimline/transparent/bar, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/dorm) +"mx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/airalarm/directional/east, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/green{ + icon_state = "0-2" }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-9" }, -/obj/machinery/light, -/obj/structure/railing{ +/turf/open/floor/plasteel/stairs{ dir = 1 }, +/area/ship/medical) +"mH" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, +/obj/machinery/light/directional/east, /turf/open/floor/plating/airless, /area/ship/hallway) +"mO" = ( +/obj/effect/turf_decal/spline/fancy/wood, +/turf/open/floor/wood/mahogany, +/area/ship/crew/canteen) "mV" = ( /obj/effect/turf_decal/industrial/radiation{ dir = 5 @@ -1451,19 +1402,6 @@ "nG" = ( /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) -"nN" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "nQ" = ( /obj/effect/turf_decal/spline/plain/opaque/yellow, /obj/effect/turf_decal/spline/plain/opaque/yellow{ @@ -1478,18 +1416,6 @@ /obj/machinery/power/emitter, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) -"nU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/door{ - dir = 4; - id = "Storage Bay Blast"; - name = "Storage Bay Doors Control"; - pixel_x = -25 - }, -/turf/open/floor/plating/airless, -/area/ship/external) "od" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -1531,6 +1457,11 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"pc" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "pg" = ( /obj/machinery/atmospherics/pipe/simple{ dir = 8 @@ -1545,6 +1476,19 @@ /obj/machinery/computer/atmos_control/tank/air_tank, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"pl" = ( +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/structure/table/rolling, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/brute, +/obj/item/defibrillator, +/obj/item/stock_parts/cell/high, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) "pp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -1571,13 +1515,6 @@ /obj/structure/railing, /turf/open/floor/plating/airless, /area/ship/hallway) -"pE" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/canteen) "pF" = ( /obj/structure/lattice/catwalk, /obj/effect/spawner/structure/window/reinforced, @@ -1586,6 +1523,17 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) +"pJ" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/dorm) "pK" = ( /obj/machinery/atmospherics/pipe/layer_manifold/visible, /turf/open/floor/plasteel/tech/techmaint, @@ -1613,13 +1561,6 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"qf" = ( -/obj/machinery/door/poddoor{ - id = "02 Chamber Blast"; - name = "02 Chamber Vent" - }, -/turf/open/floor/engine/airless, -/area/ship/engineering/atmospherics) "qg" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ dir = 5 @@ -1658,22 +1599,6 @@ /obj/item/toy/figure/ce, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) -"qt" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown/border, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "qv" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple, @@ -1698,15 +1623,6 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"qO" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/disk/holodisk/rube/disk5, -/turf/open/floor/plating, -/area/ship/engineering/engine) "qP" = ( /obj/machinery/atmospherics/components/binary/pump/layer2, /obj/effect/decal/cleanable/ash/large, @@ -1748,22 +1664,6 @@ /obj/effect/turf_decal/trimline/transparent/bar/filled, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) -"rh" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/wideband{ - pixel_y = -27 - }, -/obj/item/disk/holodisk/rube/disk6, -/obj/item/disk/holodisk/rube/disk5, -/obj/item/disk/holodisk/rube/disk4, -/obj/item/disk/holodisk/rube/disk3, -/obj/item/disk/holodisk/rube/disk2, -/obj/item/disk/holodisk/rube/disk1, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 10 - }, -/turf/open/floor/mineral/titanium, -/area/ship/bridge) "rj" = ( /obj/structure/cable/pink{ icon_state = "2-5" @@ -1812,6 +1712,14 @@ /obj/machinery/field/generator, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) +"rv" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "N2 Chamber Blast"; + name = "N2 Chamber Vent" + }, +/turf/open/floor/engine/airless, +/area/ship/engineering/atmospherics) "rD" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ @@ -1825,6 +1733,9 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"rG" = ( +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "rJ" = ( /obj/structure/table/wood/reinforced, /obj/item/storage/pill_bottle/dice, @@ -1845,14 +1756,20 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"rO" = ( -/obj/machinery/power/emitter, -/obj/machinery/light{ +"rW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) -"rR" = ( +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"sb" = ( +/obj/machinery/vending/cigarette/beach, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/open/floor/wood/mahogany, +/area/ship/crew/canteen) +"sf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, @@ -1863,39 +1780,12 @@ /obj/structure/sign/warning/deathsposal{ pixel_x = 30 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/spline/fancy/wood{ dir = 4 }, /turf/open/floor/wood/mahogany, /area/ship/crew/canteen) -"rW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew/canteen) -"sb" = ( -/obj/machinery/vending/cigarette/beach, -/obj/effect/turf_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/canteen) -"sg" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/toilet/secret{ - dir = 8; - pixel_x = 7; - secret_type = "/obj/item/clothing/shoes/drip" - }, -/obj/effect/decal/cleanable/insectguts, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) "sk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/lattice/catwalk, @@ -1916,6 +1806,17 @@ /obj/structure/window/reinforced/tinted, /turf/open/floor/carpet/royalblue, /area/ship/crew/dorm) +"sq" = ( +/obj/machinery/light/directional/south, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/ship/hallway) "su" = ( /obj/structure/closet/crate/secure/engineering{ name = "WARNING - Supermatter Crystal - DANGER" @@ -1923,14 +1824,6 @@ /obj/machinery/power/supermatter_crystal/shard, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) -"sw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/ship/hallway) "sy" = ( /obj/machinery/atmospherics/components/unary/tank/nitrogen{ piping_layer = 2; @@ -1980,6 +1873,23 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) +"sP" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/ship/hallway) "sR" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ dir = 5 @@ -2052,46 +1962,24 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) -"ts" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/dorm) "tt" = ( /turf/closed/wall/mineral/wood, /area/ship/crew/canteen) +"tJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "tM" = ( /obj/structure/table/reinforced, /obj/machinery/reagentgrinder/constructed, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) -"tU" = ( -/obj/machinery/door/poddoor{ - id = "C02 Chamber Blast"; - name = "C02 Chamber Vent" - }, -/turf/open/floor/engine/airless, -/area/ship/engineering/atmospherics) -"tY" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 9 - }, -/obj/item/stock_parts/cell/hyper/empty, -/obj/item/stock_parts/cell/hyper/empty, -/turf/open/floor/mineral/titanium, -/area/ship/bridge) "tZ" = ( /obj/docking_port/mobile{ callTime = 250; @@ -2121,6 +2009,17 @@ }, /turf/open/floor/plating/airless, /area/ship/hallway) +"uv" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/spline/plain/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/spline/plain/opaque/yellow, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/dorm) "uz" = ( /obj/machinery/button/ignition/incinerator/toxmix{ id = "TEG_igniter"; @@ -2156,17 +2055,6 @@ /obj/structure/sign/departments/medbay/alt, /turf/closed/wall/r_wall, /area/ship/medical) -"uK" = ( -/obj/machinery/light, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/ship/hallway) "uN" = ( /obj/machinery/power/terminal, /obj/structure/cable/green, @@ -2182,15 +2070,6 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"uU" = ( -/obj/machinery/camera/autoname, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/stairs{ - dir = 4 - }, -/area/ship/bridge) "uW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -2207,6 +2086,13 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) +"uZ" = ( +/obj/machinery/light/directional/west, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "vc" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2341,6 +2227,25 @@ /obj/structure/lattice/catwalk, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) +"vN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/open/floor/wood/mahogany, +/area/ship/crew/canteen) "vW" = ( /obj/item/storage/backpack/satchel/flat/with_drip, /turf/open/floor/engine/airless, @@ -2352,6 +2257,16 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/medical) +"vZ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/button/door{ + dir = 4; + id = "Storage Bay Blast"; + name = "Storage Bay Doors Control"; + pixel_x = -25 + }, +/turf/open/floor/plating/airless, +/area/ship/external) "wg" = ( /turf/open/floor/plating/airless, /area/ship/external) @@ -2415,6 +2330,12 @@ /obj/structure/window/reinforced/spawner, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) +"wS" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin, +/obj/machinery/computer/cryopod/directional/west, +/turf/open/floor/carpet/royalblue, +/area/ship/crew/dorm) "wU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -2437,25 +2358,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) -"xs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/turf_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/canteen) "xv" = ( /obj/structure/table/wood/poker, /obj/item/reagent_containers/food/condiment/saltshaker{ @@ -2499,6 +2401,13 @@ /obj/effect/turf_decal/spline/fancy/wood/cee, /turf/open/floor/wood/mahogany, /area/ship/crew/canteen) +"xF" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "xQ" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "TEG Waste Disposal" @@ -2611,14 +2520,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"yA" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ship/hallway) "yB" = ( /obj/structure/table/wood/reinforced, /obj/item/toy/cards/deck{ @@ -2629,6 +2530,33 @@ }, /turf/open/floor/carpet/stellar, /area/ship/crew/canteen) +"yC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/green{ + icon_state = "0-9" + }, +/obj/structure/cable/green{ + icon_state = "4-9" + }, +/obj/effect/turf_decal/industrial/radiation, +/obj/effect/turf_decal/industrial/radiation{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/ship/storage) +"yF" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/carpet/stellar, +/area/ship/crew/canteen) "yN" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/green{ @@ -2722,6 +2650,18 @@ }, /turf/open/floor/plating, /area/ship/storage) +"zz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/west, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/ship/hallway) "zB" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -2739,15 +2679,6 @@ "zG" = ( /turf/closed/wall/mineral/titanium/survival, /area/ship/engineering/engine) -"zK" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/canteen) "zL" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ @@ -2768,6 +2699,17 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"zY" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/east, +/obj/machinery/photocopier/faxmachine{ + pixel_y = -5 + }, +/obj/effect/turf_decal/corner/opaque/yellow/border{ + dir = 5 + }, +/turf/open/floor/mineral/titanium, +/area/ship/bridge) "Ag" = ( /obj/machinery/rnd/production/protolathe/department/engineering, /turf/open/floor/plasteel/tech/techmaint, @@ -2858,45 +2800,16 @@ /obj/effect/turf_decal/spline/fancy/wood, /turf/open/floor/wood/mahogany, /area/ship/crew/canteen) -"AY" = ( -/obj/structure/chair/sofa{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = -25 - }, -/turf/open/floor/carpet/stellar, -/area/ship/crew/canteen) "AZ" = ( /obj/structure/mineral_door/wood, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) -"Bb" = ( -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/ship/bridge) -"Be" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable/green{ - icon_state = "1-6" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/turf_decal/industrial/radiation{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/radiation{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/ship/storage) +"Ba" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/ship/hallway) "Bo" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/general/visible/layer2, @@ -2905,37 +2818,10 @@ }, /turf/open/floor/plating/airless, /area/ship/hallway) -"BA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/green{ - icon_state = "0-9" - }, -/obj/structure/cable/green{ - icon_state = "4-9" - }, -/obj/effect/turf_decal/industrial/radiation, -/obj/effect/turf_decal/industrial/radiation{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/ship/storage) "BD" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/ship/external) -"BK" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) "BO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ @@ -2943,6 +2829,16 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"BS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "BV" = ( /turf/open/floor/plating, /area/ship/engineering/engine) @@ -2964,17 +2860,15 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Ce" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "Cg" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) +"Ci" = ( +/obj/structure/particle_accelerator/particle_emitter/left, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) "Ck" = ( /obj/structure/closet/crate/freezer, /obj/item/storage/box/donkpockets/donkpocketpizza, @@ -3075,6 +2969,21 @@ /obj/effect/decal/cleanable/plasma, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"Dd" = ( +/obj/machinery/camera/autoname, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"De" = ( +/obj/machinery/camera/autoname, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/ship/bridge) "Do" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -3086,6 +2995,12 @@ }, /turf/open/floor/plating/airless, /area/ship/hallway) +"Dr" = ( +/obj/machinery/light/directional/north, +/obj/structure/lattice/catwalk, +/obj/item/borg/upgrade/modkit/indoors, +/turf/open/floor/plating/airless, +/area/ship/hallway) "Ds" = ( /obj/structure/tank_dispenser/oxygen, /obj/machinery/camera/autoname{ @@ -3132,18 +3047,38 @@ /obj/structure/lattice/catwalk, /turf/open/floor/plating/airless, /area/ship/hallway) -"DN" = ( +"DJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"DK" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"DM" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "4-8" }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/corner/opaque/brown/border{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/brown/bordercorner, +/obj/effect/turf_decal/corner/opaque/brown/border, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "DQ" = ( @@ -3159,6 +3094,16 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"DU" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/obj/structure/railing/corner, +/turf/open/floor/plating/airless, +/area/ship/hallway) "DW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8; @@ -3166,29 +3111,58 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"Ee" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 +"Ef" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 4 }, /turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/dorm) +/area/ship/engineering) "Eg" = ( /obj/machinery/air_sensor/atmos/toxin_tank, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"Eq" = ( -/obj/machinery/field/generator, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) +"Ei" = ( +/obj/machinery/computer/atmos_control/tank/nitrogen_tank, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "Eu" = ( /obj/structure/chair/stool/bar, /obj/item/toy/plush/knight, /obj/effect/turf_decal/spline/fancy/wood, /turf/open/floor/wood/mahogany, /area/ship/crew/canteen) +"Ey" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/west, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/ship/hallway) +"EB" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/closet/firecloset/wall{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plating/airless, +/area/ship/hallway) "EC" = ( /obj/machinery/air_sensor/atmos/oxygen_tank, /turf/open/floor/engine/airless, @@ -3308,21 +3282,6 @@ /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"FX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/ship/bridge) "FZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -3356,6 +3315,15 @@ /obj/machinery/atmospherics/pipe/simple/general/visible/layer2, /turf/open/floor/plating, /area/ship/engineering/engine) +"Gk" = ( +/obj/machinery/camera/autoname, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Gr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -3452,18 +3420,14 @@ "Hb" = ( /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) -"Hg" = ( -/obj/structure/table/optable, -/obj/machinery/light{ - dir = 8 +"He" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "C02 Chamber Blast"; + name = "C02 Chamber Vent" }, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/item/tank/internals/anesthetic, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/open/floor/engine/airless, +/area/ship/engineering/atmospherics) "Hi" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ @@ -3622,12 +3586,6 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Ij" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "Im" = ( /obj/structure/closet/crate/internals, /turf/open/floor/plasteel/tech/techmaint, @@ -3717,32 +3675,15 @@ /obj/structure/holosign/barrier/atmos/infinite, /turf/open/floor/plating, /area/ship/engineering/engine) -"Ji" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/transparent/bar/filled, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/dorm) "Jj" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/pipe/manifold/general/visible/layer2, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Jl" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, +"Jp" = ( +/obj/machinery/light/directional/north, /turf/open/floor/plating/airless, -/area/ship/hallway) +/area/ship/external) "JK" = ( /obj/machinery/portable_atmospherics/canister/toxins, /obj/effect/turf_decal/corner/opaque/brown/border{ @@ -3772,6 +3713,24 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) +"Ka" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/holosign/barrier/atmos/infinite, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Kc" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "Plasma Chamber Blast"; + name = "Plasma Chamber Vent" + }, +/turf/open/floor/engine/airless, +/area/ship/engineering/atmospherics) "Ke" = ( /turf/open/floor/carpet/royalblue, /area/ship/crew/dorm) @@ -3851,13 +3810,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"KQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) "KT" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ dir = 6 @@ -3870,6 +3822,19 @@ /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"KU" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "KV" = ( /obj/structure/particle_accelerator/particle_emitter/center, /turf/open/floor/plasteel/tech/techmaint, @@ -3914,10 +3879,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) -"LC" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/ship/engineering/engine) "LF" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ dir = 6 @@ -3949,6 +3910,14 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"LS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/tank/toxin_tank, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "LW" = ( /obj/machinery/particle_accelerator/control_box, /turf/open/floor/plasteel/tech/techmaint, @@ -3975,13 +3944,6 @@ }, /turf/open/floor/mineral/titanium, /area/ship/storage) -"Ma" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/ship/engineering/engine) "Mb" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /obj/machinery/space_heater, @@ -4014,23 +3976,19 @@ }, /turf/open/floor/wood/mahogany, /area/ship/crew/canteen) +"Mz" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/canteen) +"MB" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/royalblue, +/area/ship/crew/dorm) "MD" = ( /obj/effect/turf_decal/atmos/plasma, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"MG" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/photocopier/faxmachine{ - pixel_y = -5 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 5 - }, -/turf/open/floor/mineral/titanium, -/area/ship/bridge) "MJ" = ( /obj/structure/tank_dispenser, /turf/open/floor/plasteel/tech/techmaint, @@ -4093,42 +4051,12 @@ }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) -"Nl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) "Nw" = ( /obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) -"NB" = ( -/obj/structure/closet/firecloset/wall{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/door/airlock/hatch, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/holosign/barrier/atmos/infinite, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/dorm) "NC" = ( /obj/structure/closet/emcloset/wall{ pixel_y = 28 @@ -4161,27 +4089,6 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"NT" = ( -/obj/structure/chair/sofa/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/stellar, -/area/ship/crew/canteen) -"NV" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "Of" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4221,12 +4128,11 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"Ov" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/ship/external) +"OB" = ( +/obj/machinery/light/directional/west, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/ship/engineering/engine) "OD" = ( /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) @@ -4261,20 +4167,6 @@ /obj/machinery/air_sensor/atmos/mix_tank, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"Pi" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/dorm) "Pj" = ( /obj/machinery/door/airlock/hatch, /obj/structure/fans/tiny, @@ -4288,24 +4180,6 @@ /obj/structure/lattice/catwalk, /turf/open/floor/plating/airless, /area/ship/hallway) -"PC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/effect/turf_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/turf_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/canteen) "PG" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2, /obj/machinery/camera/autoname{ @@ -4314,22 +4188,26 @@ /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"PI" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/green{ - icon_state = "0-8" +"PJ" = ( +/turf/closed/wall/mineral/titanium, +/area/ship/engineering/atmospherics) +"PM" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ + dir = 6 }, -/obj/machinery/button/door{ - dir = 8; - id = "Burn Chamber Blast"; - name = "Burn Chamber Vent Control"; - pixel_x = 26 +/obj/structure/lattice/catwalk, +/obj/structure/cable/green{ + icon_state = "4-10" }, +/obj/machinery/firealarm/directional/north, +/obj/structure/railing/corner, +/turf/open/floor/plating/airless, +/area/ship/hallway) +"PN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/observer_start, /turf/open/floor/plating, /area/ship/engineering/engine) -"PJ" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/engineering/atmospherics) "PR" = ( /obj/structure/window/reinforced/spawner{ dir = 4 @@ -4339,17 +4217,20 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) +"PS" = ( +/obj/machinery/computer/atmos_control/tank/carbon_tank, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "Qj" = ( /obj/structure/sign/departments/restroom, /turf/closed/wall/mineral/wood, /area/ship/crew/canteen) -"Qp" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +"Qr" = ( +/obj/machinery/field/generator, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) "Qw" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -4365,22 +4246,22 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"QA" = ( -/obj/structure/window/reinforced/spawner{ +"Qz" = ( +/obj/machinery/door/airlock/hatch{ dir = 4 }, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/machinery/disposal/deliveryChute, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/holosign/barrier/atmos/infinite, /turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/area/ship/crew/dorm) "QE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -4397,6 +4278,20 @@ "QQ" = ( /turf/closed/wall/mineral/iron, /area/ship/crew/dorm) +"QU" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/open/floor/plating/airless, +/area/ship/hallway) "QY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -4426,13 +4321,6 @@ /obj/item/reagent_containers/food/drinks/shaker, /turf/open/floor/plasteel/grimy, /area/ship/crew/canteen) -"Rt" = ( -/obj/structure/particle_accelerator/particle_emitter/left, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) "Ru" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/engine, @@ -4455,6 +4343,21 @@ /obj/effect/turf_decal/atmos/mix, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) +"RR" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/holosign/barrier/atmos/infinite, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"RT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/engine) "RV" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ dir = 4 @@ -4489,22 +4392,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"Si" = ( -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/structure/table/rolling, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/brute, -/obj/item/defibrillator, -/obj/item/stock_parts/cell/high, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) "Sm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -4532,6 +4419,15 @@ /obj/machinery/atmospherics/components/unary/thermomachine, /turf/open/floor/plating, /area/ship/engineering/engine) +"SA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/deathsposal{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "SD" = ( /obj/effect/turf_decal/number/six, /turf/open/floor/engine/airless, @@ -4573,28 +4469,6 @@ }, /turf/open/floor/mineral/titanium, /area/ship/storage) -"Tc" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"Td" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/dorm) "Th" = ( /obj/structure/window/reinforced/spawner{ dir = 8 @@ -4613,6 +4487,10 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"Tl" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/carpet/royalblue, +/area/ship/crew/dorm) "To" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -4630,21 +4508,6 @@ }, /turf/open/floor/wood/mahogany, /area/ship/crew/canteen) -"Tp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/airalarm/directional/east, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "2-9" - }, -/turf/open/floor/plasteel/stairs{ - dir = 1 - }, -/area/ship/medical) "Tq" = ( /obj/machinery/suit_storage_unit/atmos, /turf/open/floor/plasteel/tech/techmaint, @@ -4659,14 +4522,43 @@ }, /turf/open/floor/plating/airless, /area/ship/hallway) -"Tw" = ( -/obj/machinery/light{ - dir = 1 +"TA" = ( +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/stack/sheet/plasmarglass{ + amount = 15 }, -/obj/structure/lattice/catwalk, -/obj/item/borg/upgrade/modkit/indoors, -/turf/open/floor/plating/airless, -/area/ship/hallway) +/obj/item/stack/sheet/plastic/five, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/machinery/light/directional/north, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/cell, +/obj/item/stock_parts/cell, +/obj/item/stock_parts/cell, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) "TC" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -4703,16 +4595,6 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"TS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/tank/toxin_tank, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "TU" = ( /obj/structure/lattice/catwalk, /obj/effect/spawner/structure/window/reinforced, @@ -4752,11 +4634,6 @@ /obj/effect/turf_decal/corner/opaque/yellow/bordercorner, /turf/open/floor/mineral/titanium, /area/ship/bridge) -"Um" = ( -/obj/machinery/door/airlock/hatch, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/ship/engineering/atmospherics) "Uq" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer2, /obj/machinery/atmospherics/components/binary/pump/layer2{ @@ -4771,6 +4648,15 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"Uy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/plasma, +/obj/effect/turf_decal/corner/opaque/brown/border, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "UB" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 1 @@ -4927,19 +4813,6 @@ /obj/machinery/camera/autoname, /turf/open/floor/plating/airless, /area/ship/external) -"VL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/spline/plain/opaque/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/spline/plain/opaque/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/dorm) "VN" = ( /obj/machinery/portable_atmospherics/canister/toxins, /obj/effect/turf_decal/corner/opaque/brown/border{ @@ -4970,38 +4843,6 @@ /obj/machinery/disposal/deliveryChute, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"Wa" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/general/visible/layer2, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ship/hallway) -"Wf" = ( -/obj/machinery/camera/autoname, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Wh" = ( -/obj/machinery/door/poddoor{ - id = "Mix Chamber Blast"; - name = "Mix Chamber Vent" - }, -/turf/open/floor/engine/airless, -/area/ship/engineering/atmospherics) "Wp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -5015,20 +4856,6 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"WA" = ( -/obj/machinery/door/airlock/hatch, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/holosign/barrier/atmos/infinite, -/turf/open/floor/plating, -/area/ship/crew/canteen) -"WE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) "WG" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -5048,31 +4875,22 @@ /obj/effect/turf_decal/corner/opaque/brown/border, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"WQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"Xh" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/corner/opaque/yellow/border{ dir = 10 }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner{ - dir = 1 +/obj/item/radio/intercom/wideband/table{ + pixel_y = -9 }, -/turf/open/floor/plasteel/tech/techmaint, +/obj/item/disk/holodisk/rube/disk1, +/obj/item/disk/holodisk/rube/disk2, +/obj/item/disk/holodisk/rube/disk3, +/obj/item/disk/holodisk/rube/disk4, +/obj/item/disk/holodisk/rube/disk5, +/obj/item/disk/holodisk/rube/disk6, +/turf/open/floor/mineral/titanium, /area/ship/bridge) -"WR" = ( -/obj/machinery/door/poddoor{ - id = "N2 Chamber Blast"; - name = "N2 Chamber Vent" - }, -/turf/open/floor/engine/airless, -/area/ship/engineering/atmospherics) "Xi" = ( /obj/effect/turf_decal/atmos/nitrogen, /turf/open/floor/engine/airless, @@ -5169,16 +4987,21 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"XY" = ( -/obj/machinery/camera/autoname, +"Ye" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/open/floor/wood/mahogany, +/area/ship/crew/canteen) "Yf" = ( /obj/structure/sink/kitchen{ dir = 1; @@ -5215,6 +5038,14 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/medical) +"Yq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Yt" = ( /obj/machinery/atmospherics/components/trinary/mixer/layer2{ dir = 8; @@ -5223,6 +5054,21 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"Yv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/ship/bridge) "Yw" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 8 @@ -5256,6 +5102,13 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"YF" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/engine, +/area/ship/engineering/atmospherics) "YH" = ( /obj/effect/turf_decal/atmos/carbon_dioxide, /turf/open/floor/engine/airless, @@ -5274,13 +5127,6 @@ }, /turf/open/floor/plating/airless, /area/ship/hallway) -"Ze" = ( -/obj/machinery/door/poddoor{ - id = "Plasma Chamber Blast"; - name = "Plasma Chamber Vent" - }, -/turf/open/floor/engine/airless, -/area/ship/engineering/atmospherics) "Zg" = ( /turf/template_noop, /area/template_noop) @@ -5351,6 +5197,20 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plasteel/tech/techmaint, /area/ship/storage) +"ZS" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/button/door{ + dir = 8; + id = "Burn Chamber Blast"; + name = "Burn Chamber Vent Control"; + pixel_x = 26; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "ZY" = ( /obj/structure/chair/sofa/left{ dir = 4 @@ -5625,7 +5485,7 @@ Zg Zg Zg tt -iw +aX Hb rW fU @@ -5640,7 +5500,7 @@ tt tt tt ll -kj +wS QQ QQ QQ @@ -5695,16 +5555,16 @@ Hq cL mO ZY -NT +kE tt -WE +MB Ke -BK +Tl rp Ke KK Yi -lt +mt Tq QQ Zg @@ -5804,14 +5664,14 @@ tt xo bD tt -jb +DK Hb xv Mp cs Eu rJ -AY +yF tt HK sz @@ -5911,7 +5771,7 @@ gk id kW iO -lY +tJ uN CA UB @@ -5923,10 +5783,10 @@ tt tt tt tt -xs -rR +vN +sf To -PC +Ye xE eC sB @@ -5948,7 +5808,7 @@ Zg VA rM zi -mf +OB VA VA VA @@ -5978,8 +5838,8 @@ Zg Zg Zg tt -zK -pE +dT +Mz ze Of tt @@ -5987,7 +5847,7 @@ tt Qj Zk tt -hG +uv zt bp gb @@ -6039,13 +5899,13 @@ tt Nb tt tt -WA +RR tt yg -sg +ad vJ tt -VL +lT hQ qi tp @@ -6055,7 +5915,7 @@ eX yp nQ AZ -Td +dU gX bL bL @@ -6114,11 +5974,11 @@ rd SM QQ CV -Pi +pJ AS AS -QA -Nl +KU +uZ ya cF vB @@ -6157,11 +6017,11 @@ kM kM Gy Hp -jj +DU ix bZ QQ -ts +dU OD QQ ke @@ -6184,7 +6044,7 @@ KM zW nb BV -qO +lb zG Zg Zg @@ -6207,8 +6067,8 @@ eZ vc Zj pv -Hg -Si +ga +pl Zj Gr hR @@ -6219,11 +6079,11 @@ hR eZ vj QQ -Ee +OD xa QQ aN -Ji +ho Kx Cw Lt @@ -6236,7 +6096,7 @@ eZ eZ eZ VA -cF +SA pp hV fk @@ -6258,20 +6118,20 @@ Zg Zg gk iR -hc +Uy gk eZ eZ -mQ +sP Zj Zt AA Yf Zj -WQ -dH +km +iP qZ -tY +bz CI hR hR @@ -6284,17 +6144,17 @@ QQ QQ QQ QQ -NB +Qz QQ QQ pz eZ eZ eZ -uK +sq VA VA -Wf +Gk bN pg bm @@ -6327,13 +6187,13 @@ Yl XC Zj hR -FX +Yv qT UY vr -rh +Xh hR -Jl +QU Do DE Hp @@ -6341,7 +6201,7 @@ Hp Hp Hp Hp -Hp +EB UL XJ GY @@ -6351,7 +6211,7 @@ kM Xv bE MR -fA +RT oY dL mr @@ -6373,17 +6233,17 @@ Zg Zg Zg gk -DN +gd UX em jW jW cJ UH -kf +ji TC vX -Tp +mx TW bj ao @@ -6391,14 +6251,14 @@ nq vw jG hR -kG +PM uq Oj iL iL iL iL -yA +mH zL vv IW @@ -6414,7 +6274,7 @@ yz Hn rj Fr -LC +PN Ru vW rm @@ -6431,7 +6291,7 @@ Zg Zg Zg gk -qt +DM gk gk gk @@ -6443,9 +6303,9 @@ NC Is Zj hR -uU +De qZ -Bb +gO Ua CP hR @@ -6463,7 +6323,7 @@ In Xq LL Nj -Wh +dV tm IG LL @@ -6490,7 +6350,7 @@ Zg Zg gk nl -Tc +DJ sR gk bL @@ -6500,10 +6360,10 @@ Zj Zj Zj Zj -aq -KQ +rG +pc qZ -MG +zY xU hR hR @@ -6567,7 +6427,7 @@ hR eZ Hi Xn -Qp +CB bT Hu kN @@ -6576,14 +6436,14 @@ sk RV fo rE -gw +jn Vo Pj Cg Pe Ft lX -PI +ZS cF Ot RB @@ -6612,7 +6472,7 @@ mi sY sY sY -Wa +zz sY sY Xp @@ -6621,7 +6481,7 @@ Bo Bo Bo OV -iG +Ey xA HT bT @@ -6642,13 +6502,13 @@ bT bT bT VA -XY +Dd ag zW nb gF BV -Ma +hi VA Zg Zg @@ -6684,7 +6544,7 @@ eZ Dw bT CB -Ce +xF ph gv Ak @@ -6696,7 +6556,7 @@ NO Fi JO AS -sw +Ba VT PR ya @@ -6739,7 +6599,7 @@ bT bT bT bT -jk +Ka bT tk BZ @@ -6749,7 +6609,7 @@ ct DR BO hl -nN +BS bT nG Xn @@ -6758,7 +6618,7 @@ eZ eZ eZ VA -ab +Yq ag BV ba @@ -6790,7 +6650,7 @@ Zg Zg Zg bT -Ij +CB yj FQ KT @@ -6839,7 +6699,7 @@ Zg gk Qy Ix -NV +Ef ff fK UB @@ -6850,33 +6710,33 @@ Zg bT ej Mb -hX +Ei Cc Lc Ht -dk +kR Cc Lc Ht -br +PS Cc Lc Ht -TS +LS rk Yy QY IL -Be +mp LZ ei -Tw +Dr eZ eZ VA xW Sp -cC +gI VA VA VA @@ -6910,23 +6770,23 @@ If SK bT wH -Um +YF vL bT wH -Um +YF vL bT wH -Um +YF vL bT TU -Um +YF pF bT ma -BA +yC ei ei ei @@ -6986,13 +6846,13 @@ bT iQ Zz rr -Eq +Qr ZD Dv Ds uj ei -nU +vZ Zg Zg Zg @@ -7041,7 +6901,7 @@ Zr jx Eg bT -ep +TA uB Sm rr @@ -7143,17 +7003,17 @@ Zg bT bT bT -WR +rv bT bT bT -qf +cn bT bT bT -tU +He bT -Ze +Kc bT bT bT @@ -7213,7 +7073,7 @@ Zg Zg Zg ei -Rt +Ci cG hE su @@ -7278,11 +7138,11 @@ zu uX nT nT -rO +ea pO AL ei -Ov +Jp Zg Zg Zg diff --git a/_maps/shuttles/shiptest/independent_scav.dmm b/_maps/shuttles/shiptest/independent_scav.dmm index cd4054b4a944..61ffda4d8b18 100644 --- a/_maps/shuttles/shiptest/independent_scav.dmm +++ b/_maps/shuttles/shiptest/independent_scav.dmm @@ -23,26 +23,23 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/carpet/nanoweave, /area/ship/cargo) -"aQ" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "scav_shutters" +"bu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/mineral/plastitanium, -/area/ship/bridge) -"aX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-8" }, -/obj/structure/closet/firecloset/wall{ - dir = 1; - pixel_y = -32 +/obj/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "scav_shutters" }, -/turf/open/floor/plating, -/area/ship/cargo) +/turf/open/floor/plating/airless, +/area/ship/engineering) "bK" = ( /obj/effect/turf_decal/corner/opaque/pink/border{ dir = 9 @@ -71,6 +68,21 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"ct" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "scav_door"; + name = "Dusty Blast Door" + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "scavbay" + }, +/turf/open/floor/plating, +/area/ship/cargo) "cu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/border_only{ @@ -85,22 +97,6 @@ /obj/effect/decal/cleanable/plastic, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"cM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "scav_shutters" - }, -/turf/open/floor/plating/airless, -/area/ship/engineering) "dh" = ( /obj/structure/cable{ icon_state = "1-2" @@ -110,40 +106,58 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"dT" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/white, -/area/ship/medical) -"dV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 +"dB" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 28 }, -/obj/machinery/door/airlock/engineering, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) -"dW" = ( -/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/item/tank/internals/plasmaman/full, +/obj/item/tank/internals/plasmaman/full, +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "2-4" }, -/obj/machinery/door/poddoor{ - id = "scav_door"; - name = "Dusty Blast Door" +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"dD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "scavbay" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/plating, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech, /area/ship/cargo) +"dT" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/ship/medical) "eh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 }, /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) +"et" = ( +/obj/structure/closet/crate/engineering{ + anchored = 1 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/decal_painter, +/obj/item/storage/belt, +/obj/item/storage/belt, +/obj/item/pipe_dispenser, +/obj/machinery/light/small/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/ship/engineering) "eO" = ( /obj/structure/cable{ icon_state = "1-2" @@ -167,22 +181,6 @@ "fS" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) -"gc" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "scav_shutters" - }, -/turf/open/floor/plating/airless, -/area/ship/engineering) "gi" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, @@ -209,32 +207,40 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) -"gQ" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) -"hv" = ( -/obj/structure/chair/office/light{ +"gE" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25 +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = -28 +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "scav_shutters" }, -/obj/effect/turf_decal/corner/opaque/pink/border{ - dir = 1 +/turf/open/floor/plating/airless, +/area/ship/engineering) +"gN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/structure/window/reinforced{ +/obj/machinery/power/shieldwallgen/atmos/roundstart{ dir = 1; - pixel_y = 2 + id = "scavbay" }, -/turf/open/floor/mineral/titanium/white, -/area/ship/medical) +/obj/machinery/door/poddoor{ + dir = 4; + id = "scav_door"; + name = "Dusty Blast Door" + }, +/turf/open/floor/plating, +/area/ship/cargo) "hG" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) @@ -305,25 +311,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"jZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 25; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) "kg" = ( /obj/effect/turf_decal/corner/opaque/grey/border{ dir = 1 @@ -358,16 +345,53 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"kE" = ( +"kO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor{ + dir = 4; + id = "scav_door"; + name = "Dusty Blast Door" + }, /turf/open/floor/plating, /area/ship/cargo) -"ls" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/carpet/nanoweave, -/area/ship/cargo) +"lO" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 16; + pixel_y = -19 + }, +/obj/effect/turf_decal/corner/opaque/pink/border{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/item/radio/intercom/wideband/directional/south, +/turf/open/floor/mineral/titanium/white, +/area/ship/medical) +"mj" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/mineral/plastitanium, +/area/ship/engineering) "ml" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -412,24 +436,6 @@ }, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"nl" = ( -/obj/machinery/computer/rdconsole{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/turf_decal/corner/opaque/pink/border{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/mineral/titanium/white, -/area/ship/medical) "nw" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) @@ -458,19 +464,6 @@ }, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"ob" = ( -/obj/structure/closet/emcloset/wall{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/item/tank/internals/plasmaman/full, -/obj/item/tank/internals/plasmaman/full, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "on" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -478,21 +471,22 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/bridge) +"oF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/engineering) "oK" = ( /obj/structure/chair/sofa/left{ dir = 4 }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"oV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/poddoor{ - id = "scav_door"; - name = "Dusty Blast Door" - }, -/turf/open/floor/plating, -/area/ship/cargo) "oY" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/medical) @@ -508,6 +502,17 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) +"pp" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/radio/intercom/wideband/table{ + dir = 1 + }, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "ps" = ( /obj/structure/window/reinforced/survival_pod, /obj/structure/window/reinforced/survival_pod{ @@ -522,6 +527,21 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/cargo) +"pU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/closet/firecloset/wall{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/turf_decal/number/three{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/cargo) "qg" = ( /turf/open/floor/mineral/plastitanium, /area/ship/engineering) @@ -532,16 +552,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"qq" = ( -/obj/structure/table/optable, -/obj/machinery/light/small, -/obj/machinery/airalarm/directional/south, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/mineral/titanium/white, -/area/ship/medical) "qv" = ( /obj/structure/cable{ icon_state = "1-2" @@ -561,6 +571,17 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"qM" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "qN" = ( /obj/structure/window/reinforced{ dir = 1; @@ -578,6 +599,18 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) +"ra" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/hardline_small/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/cargo) "rb" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/suit/space/syndicate/orange{ @@ -595,40 +628,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"rh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"rA" = ( -/obj/structure/closet/crate/engineering{ - anchored = 1 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/item/decal_painter, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/pipe_dispenser, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) -"rU" = ( -/obj/structure/table/reinforced, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/radio/intercom/wideband, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "tg" = ( /obj/structure/cable{ icon_state = "1-2" @@ -650,24 +649,6 @@ /obj/item/spacecash/bundle/c1, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"tr" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "scav_shutters" - }, -/turf/open/floor/plating/airless, -/area/ship/engineering) "tO" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/donkpockets, @@ -678,20 +659,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"tW" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "ut" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -719,24 +686,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"uO" = ( -/obj/structure/closet/crate/engineering/electrical{ - anchored = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) "uW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -749,42 +698,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"vv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/orange, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/item/lightreplacer, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/box/lights/bulbs, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 8 - }, -/obj/structure/closet/crate{ - anchored = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"vL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1 - }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/engineering) "wq" = ( /obj/machinery/power/terminal{ dir = 8 @@ -797,9 +710,31 @@ /obj/item/stack/sheet/mineral/plasma/five, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) +"wQ" = ( +/obj/structure/closet/crate/science{ + anchored = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/gun/energy/e_gun/old, +/obj/item/gun/energy/e_gun/old, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "xG" = ( /turf/open/floor/plasteel/tech, /area/ship/cargo) +"xV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/engineering) "yn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -843,19 +778,31 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) -"zA" = ( -/obj/machinery/light/small{ - dir = 1 +"zN" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ship/engineering) +"Ai" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, -/obj/effect/decal/cleanable/plastic, -/obj/machinery/door/window/survival_pod{ - dir = 4 +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/carpet/nanoweave, -/area/ship/cargo) +/obj/machinery/door/window{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "scav_shutters" + }, +/turf/open/floor/plating/airless, +/area/ship/engineering) "An" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/turf_decal/corner/opaque/pink/bordercorner{ @@ -896,15 +843,6 @@ }, /turf/closed/wall/mineral/plastitanium/interior, /area/ship/engineering) -"BE" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/industrial/outline/blue, -/obj/machinery/newscaster{ - pixel_x = -32; - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "BG" = ( /obj/machinery/power/terminal{ dir = 8 @@ -919,6 +857,29 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) +"BS" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/decal/cleanable/plastic, +/obj/machinery/door/window/survival_pod{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/cargo) +"CG" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 26 + }, +/obj/structure/curtain/bounty{ + open = 0 + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/cargo) "Ds" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -929,6 +890,16 @@ /obj/structure/tank_dispenser/oxygen, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) +"Dw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor{ + dir = 4; + id = "scav_door"; + name = "Dusty Blast Door" + }, +/turf/open/floor/plating, +/area/ship/cargo) "DU" = ( /obj/structure/cable{ icon_state = "1-2" @@ -939,18 +910,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"En" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 26 - }, -/obj/structure/curtain/bounty{ - open = 0 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/cargo) "Ez" = ( /obj/structure/chair/sofa/left{ dir = 8 @@ -993,35 +952,6 @@ }, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"Fc" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/gum/nicotine, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/gum/nicotine, -/obj/item/storage/box/gum/nicotine, -/obj/item/gun/energy/laser/hitscanpistol, -/obj/machinery/button/door{ - id = "scav_shutters"; - name = "Shutter Control"; - pixel_x = -7; - pixel_y = 26 - }, -/obj/machinery/button/door{ - id = "scav_door"; - name = "Blast Control"; - pixel_x = 7; - pixel_y = 26 - }, -/obj/machinery/button/shieldwallgen{ - name = "Bay Air Shield"; - pixel_y = 36; - pixel_x = -8; - id = "scavbay" - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "Fq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -1061,6 +991,14 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"FN" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "scav_shutters" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) "FO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -1097,12 +1035,7 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Hq" = ( -/obj/machinery/autolathe/hacked, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"Iz" = ( +"HO" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -1112,9 +1045,17 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small, +/obj/machinery/firealarm/directional/south, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) +"In" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/number/zero{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/cargo) "IE" = ( /obj/effect/turf_decal/corner/opaque/pink/border{ dir = 1 @@ -1136,6 +1077,28 @@ "Jt" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical) +"Jx" = ( +/obj/machinery/light_switch{ + pixel_x = 13; + pixel_y = 21 + }, +/obj/item/borg/sight/hud/sec, +/obj/item/storage/backpack/duffelbag, +/obj/machinery/airalarm/directional/west, +/obj/item/stock_parts/cell/gun/mini{ + chargerate = 10; + desc = "A rechargeable electrochemical power cell. this one looks awefully bloated"; + maxcharge = 6250; + name = "bloated miniature weapon power cell"; + w_class = 3 + }, +/obj/item/cane, +/obj/structure/closet/wall/blue{ + pixel_y = 32 + }, +/obj/item/spacecash/bundle/c500, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "Km" = ( /obj/structure/cable{ icon_state = "1-4" @@ -1167,6 +1130,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) +"LK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/hardline_small/right{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/cargo) "Mv" = ( /obj/structure/window/reinforced, /obj/machinery/computer/helm{ @@ -1175,73 +1147,83 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"MG" = ( -/obj/machinery/light_switch{ - pixel_x = 13; - pixel_y = 33 - }, -/obj/item/borg/sight/hud/sec, -/obj/item/storage/backpack/duffelbag, -/obj/machinery/airalarm/directional/west, -/obj/item/spacecash/bundle/c500, -/obj/item/stock_parts/cell/gun/mini{ - chargerate = 10; - desc = "A rechargeable electrochemical power cell. this one looks awefully bloated"; - maxcharge = 6250; - name = "bloated miniature weapon power cell"; - w_class = 3 - }, -/obj/item/cane, -/obj/structure/closet/wall/blue{ - pixel_y = 32 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"MH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/smes/shuttle/precharged{ +"MM" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "scav_shutters"; dir = 4 }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"MP" = ( +/obj/structure/closet/crate/engineering/electrical{ + anchored = 1 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "scav_shutters" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plating/airless, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/mineral/plastitanium, /area/ship/engineering) +"No" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/hardline_small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/cargo) "NI" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) -"OM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 +"Ou" = ( +/obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/obj/item/reagent_containers/glass/bottle/vial/small/preloaded/dexalin{ + pixel_x = -12; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/vial/small/preloaded/kelotane{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/vial/small/preloaded/bicaridine{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/vial/tiny{ + pixel_x = -12; + pixel_y = -7 + }, +/obj/item/reagent_containers/glass/bottle/vial/tiny{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/reagent_containers/glass/bottle/vial/tiny{ + pixel_x = -2; + pixel_y = -7 + }, +/obj/item/hypospray/mkii{ + pixel_x = 7; + pixel_y = 3 }, +/turf/open/floor/mineral/titanium/white, +/area/ship/medical) +"Qa" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/number/five{ + dir = 8 }, /turf/open/floor/plating, /area/ship/cargo) -"Pu" = ( -/obj/structure/window/reinforced, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/modular_computer/console/preset/command{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "Qd" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plasteel/tech, @@ -1261,6 +1243,12 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"QO" = ( +/obj/machinery/autolathe/hacked, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "QY" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 4; @@ -1271,6 +1259,21 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering) +"QZ" = ( +/obj/machinery/computer/rdconsole{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/pink/border{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/small/directional/south, +/turf/open/floor/mineral/titanium/white, +/area/ship/medical) "Rc" = ( /turf/template_noop, /area/template_noop) @@ -1282,6 +1285,16 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/layer4, /turf/open/floor/plating/airless, /area/ship/engineering) +"RD" = ( +/obj/structure/table/optable, +/obj/machinery/airalarm/directional/south, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/mineral/titanium/white, +/area/ship/medical) "Sd" = ( /obj/item/clothing/suit/space/hardsuit/combatmedic{ allowed = list(/obj/item/gun,/obj/item/circular_saw,/obj/item/tank/internals,/obj/item/storage/box/pillbottles,/obj/item/storage/firstaid,/obj/item/stack/medical/gauze,/obj/item/stack/medical/suture,/obj/item/stack/medical/mesh,/obj/item/storage/bag/chemistry); @@ -1310,18 +1323,21 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Tk" = ( -/obj/machinery/firealarm{ - dir = 1 - }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/cargo) "TD" = ( /obj/machinery/computer/operating{ dir = 1 }, /turf/open/floor/mineral/titanium/white, /area/ship/medical) +"TM" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "Uj" = ( /obj/machinery/door/window/southright, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -1336,14 +1352,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"Un" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "scav_door"; - name = "Dusty Blast Door" - }, -/turf/open/floor/plating, -/area/ship/cargo) "Uy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -1359,22 +1367,33 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering) -"Vl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "0-8" +"Vy" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/gum/nicotine, +/obj/item/storage/box/gum/nicotine, +/obj/item/storage/box/gum/nicotine, +/obj/item/gun/energy/laser/hitscanpistol, +/obj/machinery/button/door{ + id = "scav_shutters"; + name = "Shutter Control"; + pixel_x = -7; + pixel_y = 21 }, -/obj/machinery/door/poddoor{ +/obj/machinery/button/door{ id = "scav_door"; - name = "Dusty Blast Door" + name = "Blast Control"; + pixel_x = 7; + pixel_y = 20 }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ +/obj/machinery/button/shieldwallgen{ id = "scavbay"; - dir = 1 + name = "Bay Air Shield"; + pixel_x = -17; + pixel_y = 19 }, -/turf/open/floor/plating, -/area/ship/cargo) +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "VI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -1404,56 +1423,32 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Xn" = ( -/obj/structure/table, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/light/small, -/obj/item/reagent_containers/glass/bottle/vial/small/preloaded/dexalin{ - pixel_x = -12; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/vial/small/preloaded/kelotane{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/vial/small/preloaded/bicaridine{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/vial/tiny{ - pixel_x = -12; - pixel_y = -7 - }, -/obj/item/reagent_containers/glass/bottle/vial/tiny{ - pixel_x = -7; - pixel_y = -7 +"Wt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/item/reagent_containers/glass/bottle/vial/tiny{ - pixel_x = -2; - pixel_y = -7 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/item/hypospray/mkii{ - pixel_x = 7; - pixel_y = 3 +/obj/effect/turf_decal/industrial/outline/orange, +/obj/item/lightreplacer, +/obj/item/storage/box/lights/bulbs, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = 8 }, -/turf/open/floor/mineral/titanium/white, -/area/ship/medical) -"XK" = ( -/obj/structure/closet/crate/science{ +/obj/structure/closet/crate{ anchored = 1 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/gun/energy/e_gun/old, -/obj/item/gun/energy/e_gun/old, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"Ya" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/landmark/observer_start, +/turf/open/floor/carpet/nanoweave, +/area/ship/cargo) "Yn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -1472,11 +1467,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"YY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/cargo) "Zv" = ( /obj/item/clothing/suit/space/syndicate/black{ armor = list("melee"=5,"bullet"=10,"laser"=10,"energy"=10,"bomb"=30,"bio"=30,"rad"=30,"fire"=30,"acid"=85); @@ -1528,6 +1518,31 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"ZI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "scav_shutters" + }, +/turf/open/floor/plating/airless, +/area/ship/engineering) +"ZN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/industrial/outline/blue, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "ZQ" = ( /obj/item/storage/toolbox/emergency, /obj/effect/turf_decal/industrial/outline/orange, @@ -1563,11 +1578,11 @@ Rc Rc Rc ut -MH -cM +ZI +bu QY -MH -gc +ZI +gE ut Rc Rc @@ -1583,7 +1598,7 @@ BG nS pi pi -tr +Ai eh Uz "} @@ -1598,32 +1613,32 @@ eO qv ag Km -Iz -vL +HO +xV hG "} (5,1,1) = {" Rc Rc Jj -En +CG hZ yn Ds -uO -rA -jZ +MP +et +mj zq -gQ +zN hG "} (6,1,1) = {" Rc Rc Jj -ls +Ya aN -dV +oF FX Jd KX @@ -1636,13 +1651,13 @@ hG Rc VS fS -zA +BS ps bL -BE -vv +ZN +Wt ZQ -XK +wQ qN Fy hG @@ -1650,7 +1665,7 @@ hG (8,1,1) = {" VS nw -Pu +TM kg xG xG @@ -1664,7 +1679,7 @@ oY "} (9,1,1) = {" VS -MG +Jx KK ko fm @@ -1674,12 +1689,12 @@ ju Uy mV ER -Xn +Ou oY "} (10,1,1) = {" VS -rU +pp Uj dh tg @@ -1694,7 +1709,7 @@ oY "} (11,1,1) = {" VS -Fc +Vy uv iP xG @@ -1718,13 +1733,13 @@ jA xG Sd IE -qq +RD Jt oY "} (13,1,1) = {" -aQ -on +MM +FN Mv QG xG @@ -1739,15 +1754,15 @@ Rc "} (14,1,1) = {" Rc -aQ +MM nw -Hq +QO SC qL Yn xG rb -hv +lO Jt oY Rc @@ -1756,13 +1771,13 @@ Rc Rc Rc fp -tW +qM DU Hm uW cu Zv -nl +QZ oY Rc Rc @@ -1771,13 +1786,13 @@ Rc Rc Rc fp -ob +dB ml cs FO iw -rh -Tk +dD +fS oY Rc Rc @@ -1786,12 +1801,12 @@ Rc Rc Rc fp -OM -YY -kE -YY -YY -aX +ra +No +LK +Qa +In +pU fp Rc Rc @@ -1801,12 +1816,12 @@ Rc Rc Rc fp -dW -oV -Un -oV -oV -Vl +ct +Dw +kO +Dw +Dw +gN fp Rc Rc diff --git a/_maps/shuttles/shiptest/independent_schmiedeberg.dmm b/_maps/shuttles/shiptest/independent_schmiedeberg.dmm index 224d258d595c..5db3ba7c564c 100644 --- a/_maps/shuttles/shiptest/independent_schmiedeberg.dmm +++ b/_maps/shuttles/shiptest/independent_schmiedeberg.dmm @@ -9,6 +9,14 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/cargo) +"ay" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/medical) "az" = ( /obj/structure/catwalk/over, /obj/structure/cable{ @@ -25,15 +33,18 @@ }, /turf/open/floor/plating, /area/ship/security) -"aB" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" +"aD" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 9 }, -/obj/structure/catwalk/over, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/machinery/light/directional/east, +/obj/structure/rack, +/obj/item/reagent_containers/glass/beaker/plastic, +/obj/item/reagent_containers/glass/beaker/plastic, +/obj/item/reagent_containers/glass/beaker/meta, +/obj/item/reagent_containers/glass/beaker/meta, +/turf/open/floor/circuit, +/area/ship/medical) "aE" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood/corner{ @@ -51,21 +62,25 @@ }, /turf/open/floor/concrete/tiles, /area/ship/crew/hydroponics) -"aK" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 +"aO" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/kitchen/knife, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = 10 }, -/obj/machinery/door/window/eastleft, -/obj/structure/cable{ - icon_state = "0-8" +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 11 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmabridge" +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/structure/window/plasma/reinforced/spawner, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "aQ" = ( /obj/structure/table/glass, /obj/machinery/smartfridge/disks, @@ -93,6 +108,34 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew) +"bl" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood/walnut, +/area/ship/crew/toilet) +"bm" = ( +/obj/effect/turf_decal/siding/thinplating/light{ + dir = 6 + }, +/obj/machinery/light/directional/south, +/obj/item/trash/can, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/trash/candy, +/obj/item/trash/popcorn, +/obj/item/trash/syndi_cakes, +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/cargo) "bq" = ( /obj/structure/window/reinforced/fulltile/shuttle, /obj/structure/grille, @@ -117,21 +160,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"bz" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -10; - pixel_y = 5 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/west, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/concrete/slab_4, -/area/ship/crew/canteen) "bD" = ( /obj/structure/rack, /obj/structure/window/reinforced/spawner/west, @@ -155,7 +183,7 @@ dir = 1; id = "pharmairlock"; name = "airlock access"; - pixel_y = -28 + pixel_y = -24 }, /obj/item/clothing/gloves/color/yellow, /obj/item/storage/box/lights/bulbs, @@ -180,11 +208,6 @@ /obj/effect/turf_decal/corner/opaque/blue/three_quarters, /turf/open/floor/plasteel/white, /area/ship/cargo) -"bP" = ( -/obj/effect/turf_decal/steeldecal/steel_decals6, -/obj/effect/turf_decal/steeldecal/steel_decals_central1, -/turf/open/floor/plasteel/tech/grid, -/area/ship/external) "bX" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 6 @@ -209,7 +232,7 @@ }, /turf/open/floor/concrete/slab_3, /area/ship/crew/hydroponics) -"cn" = ( +"cp" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -217,20 +240,22 @@ /obj/item/stack/sheet/mineral/uranium{ amount = 15 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"cH" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/recharger, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmboothlock" +"cr" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/security) +/obj/structure/table_frame, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/old{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/circuit, +/area/ship/medical) "cN" = ( /obj/structure/cable{ icon_state = "1-2" @@ -278,55 +303,21 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"dz" = ( -/obj/machinery/door/airlock{ - id_tag = "pharmdoorlock" - }, -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, +"dF" = ( /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/poddoor/shutters/preopen{ - id = "pharmlobby" - }, -/obj/effect/turf_decal/trimline/opaque/green/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/green/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/hydroponics) -"dE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/window/reinforced/survival_pod/spawner/west, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 + dir = 5 }, -/obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/newscaster{ - pixel_y = 32 +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 8 }, -/turf/open/floor/wood/walnut, -/area/ship/crew) +/area/ship/crew/canteen) "dU" = ( /obj/machinery/vending/wallmed{ pixel_y = 32 @@ -426,10 +417,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"fa" = ( -/obj/effect/turf_decal/dept/medical, -/turf/open/floor/engine/hull, -/area/ship/external) "fb" = ( /obj/effect/decal/cleanable/food/egg_smudge, /obj/structure/cable{ @@ -499,6 +486,13 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) +"fS" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet/blue, +/area/ship/crew) "fY" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 10 @@ -527,27 +521,6 @@ /obj/item/reagent_containers/dropper, /turf/open/floor/carpet/nanoweave/beige, /area/ship/medical) -"gc" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/item/gps{ - gpstag = "PHARM1" - }, -/obj/machinery/photocopier/faxmachine/longrange, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/door{ - dir = 4; - id = "pharmbridge"; - name = "Bridge Lockdown"; - pixel_x = -25; - pixel_y = -7 - }, -/turf/open/floor/carpet/blue, -/area/ship/bridge) "gl" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/siding/thinplating/dark, @@ -556,19 +529,21 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"gx" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 1 +"gt" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/obj/structure/table_frame, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/old{ - pixel_x = 8; - pixel_y = 11 +/obj/machinery/door/window/eastleft, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/light, -/turf/open/floor/circuit, -/area/ship/medical) +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmabridge" + }, +/turf/open/floor/plating, +/area/ship/security) "gz" = ( /obj/structure/curtain/cloth{ pixel_y = 32 @@ -582,20 +557,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/wood/walnut, /area/ship/crew/toilet) -"gB" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 7 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/curtain/cloth{ - pixel_y = -32 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/canteen) "gO" = ( /obj/structure/table/wood/reinforced, /obj/item/paper_bin{ @@ -613,24 +574,6 @@ }, /turf/open/floor/light, /area/ship/crew/canteen) -"gQ" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmboothlock" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, -/turf/open/floor/wood/walnut, -/area/ship/security) "gT" = ( /obj/structure/window/reinforced/fulltile/shuttle, /obj/structure/grille, @@ -652,45 +595,66 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/walnut, /area/ship/crew/hydroponics) -"hu" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 +"hp" = ( +/obj/structure/table/glass, +/obj/item/lighter{ + pixel_x = -8 }, -/obj/structure/closet/crate/hydroponics, -/obj/item/seeds/ambrosia, -/obj/item/seeds/glowshroom, -/obj/item/seeds/random, -/obj/item/seeds/cabbage, -/obj/item/seeds/aloe, -/obj/item/seeds/coffee, -/obj/item/seeds/corn, -/turf/open/floor/wood/walnut, -/area/ship/crew/hydroponics) -"il" = ( -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/siding/thinplating/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/cargo) +"ht" = ( +/obj/machinery/jukebox, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/blue/border{ dir = 1 }, -/turf/open/floor/wood/walnut, +/turf/open/floor/plasteel/white, /area/ship/cargo) -"is" = ( -/obj/machinery/smartfridge/food, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/medical) -"it" = ( +"hw" = ( +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/siding/wood{ - dir = 4 + dir = 10 }, -/obj/effect/turf_decal/siding/wood/corner, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 +/turf/open/floor/wood/walnut, +/area/ship/cargo) +"hN" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/recharger, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmboothlock" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 +/turf/open/floor/plasteel/dark, +/area/ship/security) +"hX" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 }, -/turf/open/floor/concrete/slab_1, -/area/ship/crew/canteen) +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/plumbing/input, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/medical) +"il" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/walnut, +/area/ship/cargo) +"is" = ( +/obj/machinery/smartfridge/food, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/medical) "iJ" = ( /obj/structure/closet/secure_closet/hydroponics{ name = "herbalist's equipment"; @@ -717,35 +681,6 @@ /obj/item/cultivator, /turf/open/floor/wood/walnut, /area/ship/crew/hydroponics) -"iL" = ( -/obj/machinery/button/door{ - dir = 4; - id = "pharmboothlock"; - name = "Lockdown: Booth"; - pixel_x = -24; - pixel_y = 11 - }, -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 4; - id = "pharmdoorlock"; - name = "Anti-Tresspassing Bolts"; - normaldoorcontrol = 1; - pixel_x = -24; - specialfunctions = 4 - }, -/obj/machinery/button/door{ - dir = 4; - id = "pharmlobby"; - name = "Lockdown: Lobby"; - pixel_x = -24; - pixel_y = -11 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/black, -/area/ship/security) "iN" = ( /obj/machinery/suit_storage_unit/inherit, /obj/item/clothing/mask/breath/medical, @@ -769,20 +704,17 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/blue, /area/ship/bridge) -"jd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +"iX" = ( +/obj/structure/chair/comfy/black{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/siding/thinplating/light{ + dir = 10 }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/ship/security) +/obj/machinery/firealarm/directional/south, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/cargo) "jg" = ( /obj/structure/railing{ dir = 8; @@ -804,60 +736,58 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"jH" = ( -/obj/structure/table, -/obj/item/storage/bag/tray, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/kitchen/knife, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = 10 +"jQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3; - pixel_y = 11 +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"ka" = ( +/obj/machinery/computer/cargo/express{ + dir = 1 }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"kc" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -10; + pixel_y = 5 + }, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/wood/walnut, +/turf/open/floor/concrete/slab_4, /area/ship/crew/canteen) "kf" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/concrete/tiles, /area/ship/crew/hydroponics) -"kh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmbridge" - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) "kp" = ( /obj/structure/marker_beacon, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/hydroponics) +"kt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/ambrosia, +/obj/item/seeds/glowshroom, +/obj/item/seeds/random, +/obj/item/seeds/cabbage, +/obj/item/seeds/aloe, +/obj/item/seeds/coffee, +/obj/item/seeds/corn, +/turf/open/floor/wood/walnut, +/area/ship/crew/hydroponics) "kC" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/decal/cleanable/dirt/dust, @@ -866,28 +796,6 @@ }, /turf/open/floor/concrete/tiles, /area/ship/crew/hydroponics) -"kE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/departments/chemistry{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -33 - }, -/turf/open/floor/mineral/titanium/white, -/area/ship/crew/canteen) "kF" = ( /obj/effect/decal/cleanable/glass, /obj/effect/turf_decal/siding/wood{ @@ -901,16 +809,6 @@ /obj/machinery/microwave, /turf/open/floor/wood/walnut, /area/ship/crew/canteen) -"kM" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew) "kV" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/effect/turf_decal/siding/white, @@ -922,17 +820,6 @@ }, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"ls" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/closet/crate/wooden, -/obj/item/reagent_containers/glass/bucket, -/obj/item/pushbroom, -/obj/item/cultivator/rake, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/hydroponics) "ly" = ( /obj/structure/chair/comfy/beige, /obj/effect/turf_decal/siding/thinplating/light{ @@ -946,6 +833,22 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/cargo) +"lB" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/machinery/door/window/eastleft, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced/spawner, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmabridge" + }, +/turf/open/floor/plating, +/area/ship/engineering) "lE" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -958,6 +861,15 @@ "lW" = ( /turf/open/floor/concrete/slab_3, /area/ship/crew/canteen) +"md" = ( +/obj/structure/window/reinforced/fulltile/shuttle, +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmwindows" + }, +/turf/open/floor/plating, +/area/ship/bridge) "mq" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -970,6 +882,24 @@ }, /turf/open/floor/carpet/blue, /area/ship/bridge) +"mu" = ( +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/security) "mv" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/bridge) @@ -989,12 +919,10 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"mO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/cargo) -"mT" = ( -/obj/machinery/door/airlock/medical, +"mC" = ( +/obj/machinery/door/airlock/medical{ + dir = 4 + }, /obj/effect/turf_decal/siding/white{ dir = 1 }, @@ -1022,6 +950,36 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew) +"mH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/wood/walnut, +/area/ship/crew/toilet) +"mO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/cargo) +"ng" = ( +/obj/structure/fermenting_barrel, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "nl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/concrete/slab_1, @@ -1045,13 +1003,14 @@ }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/bridge) -"nB" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central4, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 9 +"nz" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/turf/open/floor/engine/hull, -/area/ship/external) +/obj/machinery/vending/hydronutrients, +/turf/open/floor/wood/walnut, +/area/ship/crew/hydroponics) "nK" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -1081,10 +1040,42 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/mineral/titanium/white, /area/ship/medical) +"nO" = ( +/obj/structure/rack, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/paper/crumpled, +/obj/item/seeds/cannabis, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "oa" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete/tiles, /area/ship/crew/hydroponics) +"oc" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew/hydroponics) +"om" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/machinery/door/window/eastleft, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmabridge" + }, +/turf/open/floor/plating, +/area/ship/engineering) "oK" = ( /obj/structure/window/reinforced/fulltile/shuttle, /obj/structure/grille, @@ -1093,6 +1084,21 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) +"oT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"oW" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "oX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/corner/opaque/blue/three_quarters{ @@ -1100,6 +1106,12 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) +"pd" = ( +/obj/effect/turf_decal/steeldecal/steel_decals6, +/obj/effect/turf_decal/steeldecal/steel_decals_central2, +/obj/effect/turf_decal/number/three, +/turf/open/floor/plasteel/tech/grid, +/area/ship/external) "pl" = ( /obj/structure/sign/departments/chemistry/pharmacy, /turf/closed/wall/mineral/titanium/nodiagonal, @@ -1132,6 +1144,26 @@ /obj/effect/spawner/lootdrop/maintenance/four, /turf/open/floor/mineral/titanium, /area/ship/cargo) +"qj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/walnut, +/area/ship/crew) "qB" = ( /obj/effect/turf_decal/dept/medical{ dir = 1 @@ -1160,36 +1192,25 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/canteen) -"qZ" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"rd" = ( -/obj/machinery/power/terminal{ - dir = 8 +"qV" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/departments/chemistry{ + pixel_y = 29; + pixel_x = -27 }, +/obj/effect/decal/cleanable/oil, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "2-4" }, -/obj/structure/catwalk/over, -/obj/machinery/firealarm{ - pixel_x = 5; - pixel_y = 28 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/obj/machinery/button/door{ - id = "schmeidengine"; - name = "Engine Shutters"; - pixel_x = -10; - pixel_y = 26 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/mineral/titanium/white, +/area/ship/crew/canteen) "rj" = ( /obj/structure/catwalk/over, /obj/structure/cable{ @@ -1228,28 +1249,19 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"rB" = ( -/obj/effect/turf_decal/siding/blue{ +"rC" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/crate/secure/loot, +/obj/item/plunger/reinforced, +/obj/effect/turf_decal/box/white, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/filter{ - pixel_x = -8 - }, -/obj/item/reagent_containers/glass/filter{ - pixel_x = 1 - }, -/obj/item/reagent_containers/glass/filter{ - pixel_x = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/structure/sign/poster/official/moth/meth{ - pixel_y = -32 - }, -/turf/open/floor/circuit, -/area/ship/medical) +/obj/item/seeds/random, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "rE" = ( /obj/item/broken_bottle, /obj/effect/decal/cleanable/glass, @@ -1312,16 +1324,38 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/ship/engineering) -"sU" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/siding/wood{ - dir = 4 +"sB" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 26 }, -/obj/machinery/light/small{ +/obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/walnut, -/area/ship/crew/hydroponics) +/area/ship/crew) +"tj" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/filter{ + pixel_x = -8 + }, +/obj/item/reagent_containers/glass/filter{ + pixel_x = 1 + }, +/obj/item/reagent_containers/glass/filter{ + pixel_x = 10 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/sign/poster/official/moth/meth{ + pixel_y = -32 + }, +/turf/open/floor/circuit, +/area/ship/medical) "tm" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood/corner{ @@ -1351,18 +1385,44 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/medical) -"tA" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/small{ +"tB" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/effect/turf_decal/box/white, -/obj/structure/closet/emcloset/wall{ - dir = 1; - pixel_y = -32 +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) +"tG" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, /turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/area/ship/crew/canteen) "tK" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plasteel/stairs/old, @@ -1375,24 +1435,22 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"ua" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 +"uB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/chair, +/obj/item/chair{ + pixel_y = 5 }, -/mob/living/simple_animal/pet/penguin/baby{ - desc = "The Head Pharmacist's beloved dwarf penguin. Exposure to chemical contaminats has prevented it from fully maturing.."; - name = "Nootes"; - unique_pet = 1 +/obj/item/chair{ + pixel_y = 10 }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/machinery/button/door{ - id = "pharmwindows"; - name = "window shutters"; - pixel_y = -23 +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/turf/open/floor/carpet/blue, -/area/ship/bridge) +/obj/effect/turf_decal/box/white, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "va" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1405,39 +1463,12 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/canteen) -"vb" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -9; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/rag, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/canteen) "vm" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"vn" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "schmeidengine" - }, -/turf/open/floor/plating, -/area/ship/security) "vt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1446,6 +1477,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/stairs, /area/ship/crew/canteen) +"vL" = ( +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/greenglow/filled, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/ship/medical) "vM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1481,11 +1524,30 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"wD" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, +"wz" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/mob/living/simple_animal/pet/penguin/baby{ + desc = "The Head Pharmacist's beloved dwarf penguin. Exposure to chemical contaminats has prevented it from fully maturing.."; + name = "Nootes"; + unique_pet = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/button/door{ + id = "pharmwindows"; + name = "window shutters"; + pixel_y = -23; + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/ship/bridge) +"wD" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, /turf/open/floor/wood/walnut, /area/ship/crew/hydroponics) "wG" = ( @@ -1504,6 +1566,43 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/concrete/slab_1, /area/ship/crew/canteen) +"wW" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/concrete/tiles, +/area/ship/crew/hydroponics) +"xc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/blue, +/area/ship/crew) +"xg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window/reinforced/survival_pod/spawner/west, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/walnut, +/area/ship/crew) "xi" = ( /obj/item/chair/stool/bar, /obj/effect/decal/cleanable/blood/old, @@ -1512,20 +1611,24 @@ }, /turf/open/floor/wood/walnut, /area/ship/cargo) -"xl" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 9 +"xn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -13 + }, +/obj/structure/chair/stool, +/obj/structure/mirror{ + pixel_x = -25 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/obj/machinery/light{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/structure/rack, -/obj/item/reagent_containers/glass/beaker/plastic, -/obj/item/reagent_containers/glass/beaker/plastic, -/obj/item/reagent_containers/glass/beaker/meta, -/obj/item/reagent_containers/glass/beaker/meta, -/turf/open/floor/circuit, -/area/ship/medical) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/walnut, +/area/ship/crew/toilet) "xp" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/thinplating/corner{ @@ -1533,77 +1636,75 @@ }, /turf/open/floor/carpet/blue, /area/ship/bridge) -"xs" = ( +"xr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/concrete/tiles, +/area/ship/crew/hydroponics) +"xJ" = ( +/turf/template_noop, +/area/template_noop) +"xR" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4; + id_tag = "pharmdoorlock" + }, /obj/structure/cable{ icon_state = "4-8" }, +/obj/structure/catwalk/over/plated_catwalk, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/stairs{ - dir = 8 + dir = 4 }, -/area/ship/crew/canteen) -"xD" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/power/smes/shuttle/precharged{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/door/window/eastleft, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, /obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmabridge" + dir = 4; + id = "pharmlobby" }, -/obj/structure/window/plasma/reinforced/spawner/north, /turf/open/floor/plating, -/area/ship/engineering) -"xJ" = ( -/turf/template_noop, -/area/template_noop) -"yb" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/area/ship/security) +"xT" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/carpet/blue, -/area/ship/bridge) -"yj" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/concrete/slab_1, -/area/ship/crew/canteen) -"yn" = ( -/obj/machinery/door/airlock/grunge, /obj/effect/turf_decal/siding/white{ dir = 1 }, /obj/effect/turf_decal/siding/white, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/airlock/maintenance{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 + dir = 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/tech/techmaint, /area/ship/crew/canteen) +"yj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/concrete/slab_1, +/area/ship/crew/canteen) "yt" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1622,6 +1723,14 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) +"yv" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood/walnut, +/area/ship/crew/hydroponics) "yB" = ( /obj/machinery/vending/cola, /obj/effect/turf_decal/corner/opaque/blue/three_quarters{ @@ -1632,8 +1741,8 @@ "zq" = ( /turf/open/floor/carpet/nanoweave/beige, /area/ship/cargo) -"zs" = ( -/obj/machinery/power/apc/auto_name/west, +"zI" = ( +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -1642,47 +1751,48 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"zz" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/obj/structure/chair/stool, -/obj/structure/mirror{ - pixel_x = -25 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +"zT" = ( +/obj/machinery/power/shuttle/engine/electric{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/toilet) -"zO" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-4" }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/door/poddoor{ + dir = 4; + id = "schmeidengine" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/plating, +/area/ship/security) +"zW" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/door/window/brigdoor{ dir = 4 }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/walnut, -/area/ship/crew) +/obj/machinery/button/door{ + id = "pharmentrance"; + name = "Main Entrance"; + pixel_x = -5; + pixel_y = 38 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmboothlock" + }, +/obj/machinery/button/shieldwallgen{ + id = "holopharm"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/security) "Ab" = ( /obj/structure/chair/stool/bar, /obj/effect/turf_decal/siding/wood{ @@ -1690,6 +1800,23 @@ }, /turf/open/floor/wood/walnut, /area/ship/cargo) +"As" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/button/door{ + id = "schmeidengine"; + name = "Engine Shutters"; + pixel_x = -13; + pixel_y = 24 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) "At" = ( /obj/structure/table/glass, /obj/machinery/plantgenes{ @@ -1713,6 +1840,15 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/engineering) +"AA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/radio/intercom/directional/west, +/obj/item/storage/pill_bottle/floorpill/full, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen) "AJ" = ( /obj/structure/window/reinforced/fulltile/shuttle, /obj/structure/grille, @@ -1739,18 +1875,6 @@ /obj/effect/decal/cleanable/food/tomato_smudge, /turf/open/floor/wood/walnut, /area/ship/crew/hydroponics) -"Bb" = ( -/obj/structure/rack, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -23 - }, -/obj/item/storage/pill_bottle/floorpill/full, -/turf/open/floor/wood/walnut, -/area/ship/crew/canteen) "Bg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/concrete/slab_4, @@ -1838,6 +1962,25 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/hydroponics) +"CK" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/gps{ + gpstag = "PHARM1" + }, +/obj/machinery/photocopier/faxmachine/longrange, +/obj/machinery/button/door{ + dir = 4; + id = "pharmbridge"; + name = "Bridge Lockdown"; + pixel_x = -25; + pixel_y = -7 + }, +/turf/open/floor/carpet/blue, +/area/ship/bridge) "CV" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1875,17 +2018,29 @@ }, /turf/open/floor/plasteel/patterned/ridged, /area/ship/medical) -"Dp" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/crew/toilet) -"Du" = ( -/obj/machinery/jukebox, -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/blue/border{ - dir = 1 +"Df" = ( +/obj/structure/rack, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/kitchen/knife/combat/survival, +/obj/item/kitchen/knife/combat/survival, +/obj/structure/sign/poster/retro/lasergun_new{ + pixel_x = -32 }, -/turf/open/floor/plasteel/white, -/area/ship/cargo) +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/machinery/light/small/directional/west, +/obj/item/radio, +/obj/item/radio, +/obj/machinery/firealarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood/walnut, +/area/ship/security) +"Dp" = ( +/turf/closed/wall/mineral/titanium, +/area/ship/crew/toilet) "DL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/door/firedoor/border_only, @@ -1957,20 +2112,16 @@ /obj/effect/turf_decal/corner/opaque/blue/three_quarters, /turf/open/floor/plasteel/white, /area/ship/cargo) -"Ff" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/machinery/door/window/eastleft, -/obj/structure/cable{ - icon_state = "0-8" +"Fl" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmabridge" +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 }, -/turf/open/floor/plating, -/area/ship/security) +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet/blue, +/area/ship/bridge) "Fz" = ( /turf/closed/wall/mineral/titanium, /area/ship/security) @@ -1998,6 +2149,39 @@ }, /turf/open/floor/plasteel/patterned/ridged, /area/ship/crew/toilet) +"Ga" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central4, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/turf_decal/kfp_small/left, +/turf/open/floor/engine/hull, +/area/ship/external) +"GY" = ( +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/suit/space/orange, +/obj/item/clothing/head/helmet/space/orange, +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/obj/structure/closet/wall/white{ + name = "E.V.A"; + pixel_y = 28 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/gps/mining{ + gpstag = "PHARM2" + }, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/security) "He" = ( /obj/machinery/chem_heater, /obj/effect/turf_decal/siding/thinplating{ @@ -2012,18 +2196,19 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"Hz" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 26 +"Hy" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 7 }, /obj/effect/turf_decal/siding/wood{ - dir = 8 + dir = 1 + }, +/obj/structure/curtain/cloth{ + pixel_y = -32 }, /turf/open/floor/wood/walnut, -/area/ship/crew) +/area/ship/crew/canteen) "HB" = ( /turf/open/floor/carpet/blue, /area/ship/crew) @@ -2049,20 +2234,14 @@ }, /turf/open/floor/carpet/blue, /area/ship/bridge) -"Ig" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/item/radio/intercom/wideband{ - pixel_y = 28 +"Iz" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"Iw" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/wood/walnut, -/area/ship/crew/canteen) +/turf/template_noop, +/area/template_noop) "IE" = ( /obj/structure/cable{ icon_state = "1-4" @@ -2122,88 +2301,6 @@ }, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"Jf" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/medical, -/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/medical) -"Jm" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 30 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/toilet) -"Jo" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/wood/walnut, -/area/ship/crew/toilet) -"JB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/wood/walnut, -/area/ship/cargo) -"JF" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/concrete/tiles, -/area/ship/crew/hydroponics) "JS" = ( /obj/effect/decal/cleanable/food/plant_smudge, /obj/effect/decal/cleanable/dirt/dust, @@ -2228,33 +2325,6 @@ }, /turf/open/floor/wood/walnut, /area/ship/cargo) -"Ke" = ( -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow/filled, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/ship/medical) -"Km" = ( -/obj/effect/turf_decal/siding/thinplating/light{ - dir = 6 - }, -/obj/machinery/light, -/obj/item/trash/can, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/trash/candy, -/obj/item/trash/popcorn, -/obj/item/trash/syndi_cakes, -/obj/structure/closet/crate/bin, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/cargo) "KK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair/sofa/left{ @@ -2274,6 +2344,34 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/canteen) +"KS" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/medical) "KU" = ( /obj/effect/turf_decal/steeldecal/steel_decals6, /turf/open/floor/engine/hull, @@ -2288,6 +2386,16 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"Ld" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/box/white, +/obj/structure/closet/emcloset/wall{ + dir = 1; + pixel_y = -32 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Ln" = ( /obj/effect/turf_decal/siding/thinplating/light{ dir = 4 @@ -2314,6 +2422,16 @@ "LJ" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/toilet) +"LK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/effect/turf_decal/box/white, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "LS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ @@ -2335,16 +2453,6 @@ /obj/structure/bedsheetbin, /turf/open/floor/carpet/blue, /area/ship/crew) -"Me" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/carpet/blue, -/area/ship/bridge) "Mf" = ( /obj/structure/cable{ icon_state = "1-8" @@ -2354,48 +2462,15 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"Mz" = ( -/obj/machinery/door/window/eastright{ - dir = 1 - }, -/obj/structure/closet/secure_closet/wall{ - dir = 8; - icon_state = "solgov_wall"; - name = "Chief Pharmacist's Locker"; - pixel_x = 32; - req_access_txt = "40" - }, -/obj/item/storage/bag/medical, -/obj/item/autosurgeon/cmo, -/obj/item/storage/belt/medical/webbing, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 - }, -/obj/item/storage/box/hypospray/CMO, -/obj/item/clothing/suit/longcoat/chemist, -/obj/item/clothing/head/beret/chem, -/obj/item/clothing/neck/cloak/cmo, -/obj/item/cartridge/cmo, -/obj/item/healthanalyzer/advanced, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/assembly/flash/handheld, -/obj/item/door_remote/chief_medical_officer, -/obj/item/pet_carrier, -/obj/item/areaeditor/shuttle, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/reagent_containers/glass/bottle/vial/large, -/obj/item/reagent_containers/glass/bottle/vial/large, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"MG" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/machinery/light/small{ +"My" = ( +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/turf/open/floor/carpet/blue, -/area/ship/crew) +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/concrete/slab_3, +/area/ship/crew/hydroponics) "MP" = ( /obj/structure/closet/secure_closet/freezer/wall{ pixel_y = 32 @@ -2439,36 +2514,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/cargo) -"MS" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "pharmentrance"; - name = "Main Entrance"; - pixel_x = -5; - pixel_y = 38 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmboothlock" - }, -/obj/item/radio/intercom{ - pixel_y = 23 - }, -/obj/machinery/button/shieldwallgen{ - id = "holopharm"; - pixel_x = 6; - pixel_y = 36 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "MT" = ( /obj/structure/marker_beacon, /obj/effect/turf_decal/steeldecal, @@ -2494,6 +2539,18 @@ dir = 8 }, /area/ship/cargo) +"Na" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/concrete/slab_1, +/area/ship/crew/canteen) "Ne" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2506,16 +2563,6 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/cargo) -"Ni" = ( -/obj/machinery/computer/cargo/express{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "Nk" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/siding/wood/end{ @@ -2527,51 +2574,15 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/cargo) -"Nz" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/plumbing/input, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/medical) -"NC" = ( -/obj/effect/turf_decal/steeldecal/steel_decals9, -/turf/open/floor/plasteel/tech/grid, -/area/ship/external) -"NE" = ( -/obj/item/tank/internals/emergency_oxygen/double, -/obj/item/tank/internals/emergency_oxygen/double, -/obj/item/tank/internals/emergency_oxygen/double, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/suit/space/orange, -/obj/item/clothing/head/helmet/space/orange, -/obj/item/pickaxe/mini, -/obj/item/pickaxe/mini, -/obj/structure/closet/wall/white{ - name = "E.V.A"; - pixel_y = 32 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/gps/mining{ - gpstag = "PHARM2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/security) +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/cargo) +"NC" = ( +/obj/effect/turf_decal/steeldecal/steel_decals9, +/turf/open/floor/plasteel/tech/grid, +/area/ship/external) "NF" = ( /obj/effect/decal/cleanable/ash, /obj/effect/decal/cleanable/dirt/dust, @@ -2592,7 +2603,37 @@ }, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"NO" = ( +"NK" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet/blue, +/area/ship/bridge) +"NV" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Oe" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew/hydroponics) +"On" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, @@ -2618,62 +2659,18 @@ /obj/item/clothing/shoes/sneakers/orange, /obj/item/clothing/shoes/sneakers/orange, /obj/item/clothing/shoes/sneakers/orange, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/carpet/blue, /area/ship/crew) -"NV" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"NY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/canteen) -"Oe" = ( +"Or" = ( /obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/concrete/tiles, -/area/ship/crew/hydroponics) -"Og" = ( -/obj/structure/fermenting_barrel, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, +/obj/structure/closet/crate/wooden, +/obj/item/reagent_containers/glass/bucket, +/obj/item/pushbroom, +/obj/item/cultivator/rake, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood/walnut, -/area/ship/crew/canteen) +/area/ship/crew/hydroponics) "Ov" = ( /obj/effect/turf_decal/corner/opaque/blue/border, /turf/open/floor/plasteel/white, @@ -2721,24 +2718,6 @@ }, /turf/open/floor/carpet/blue, /area/ship/crew) -"Pg" = ( -/obj/structure/closet/crate/secure/loot, -/obj/item/plunger/reinforced, -/obj/effect/turf_decal/box/white, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/item/seeds/random, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"Pi" = ( -/obj/effect/turf_decal/steeldecal/steel_decals6, -/obj/effect/turf_decal/steeldecal/steel_decals_central2, -/turf/open/floor/plasteel/tech/grid, -/area/ship/external) "Pj" = ( /obj/effect/turf_decal/arrows/white, /obj/machinery/power/shieldwallgen/atmos{ @@ -2752,27 +2731,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Pq" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/security) "Pt" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2812,31 +2770,6 @@ }, /turf/open/floor/concrete/slab_1, /area/ship/crew/canteen) -"Qb" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "pharmdoorlock" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over/plated_catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmlobby" - }, -/turf/open/floor/plating, -/area/ship/security) "Qi" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/siding/wood, @@ -2845,15 +2778,26 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew) -"Qq" = ( -/obj/structure/rack, -/obj/effect/turf_decal/siding/wood{ +"Qs" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/walnut, +/area/ship/crew/hydroponics) +"Qz" = ( +/obj/machinery/power/shuttle/engine/electric{ dir = 4 }, -/obj/item/paper/crumpled, -/obj/item/seeds/cannabis, -/turf/open/floor/wood/walnut, -/area/ship/crew/canteen) +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "schmeidengine" + }, +/turf/open/floor/plating, +/area/ship/engineering) "QH" = ( /obj/structure/curtain/cloth{ pixel_y = -32 @@ -2881,26 +2825,37 @@ /obj/structure/window/reinforced/fulltile/shuttle, /obj/structure/grille, /obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmairlock" + id = "pharmairlock"; + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) -"RJ" = ( -/obj/effect/turf_decal/siding/thinplating{ +"RC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/plumbing/pill_press{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/firealarm{ +/obj/machinery/door/poddoor/shutters/preopen{ dir = 4; - pixel_x = -28 + id = "pharmbridge" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/machinery/door/airlock/command/glass{ + dir = 4; + name = "Bridge" }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/medical) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) "RM" = ( /turf/closed/wall/mineral/titanium, /area/ship/medical) @@ -2923,78 +2878,48 @@ }, /turf/open/floor/concrete/slab_1, /area/ship/crew/canteen) -"RZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/carpet/blue, -/area/ship/crew) -"Sd" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood/corner, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"Sy" = ( +/obj/machinery/door/airlock{ + id_tag = "pharmdoorlock"; dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/concrete/tiles, -/area/ship/crew/hydroponics) -"Sl" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 }, -/obj/structure/chair/comfy/shuttle, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"Sz" = ( -/obj/structure/table/glass, -/obj/item/lighter{ - pixel_x = -8 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/effect/turf_decal/siding/thinplating/light{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmlobby" }, -/obj/machinery/light/small{ +/obj/effect/turf_decal/trimline/opaque/green/warning{ dir = 4 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/cargo) -"SC" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood/walnut, +/obj/effect/turf_decal/trimline/opaque/green/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/hydroponics) "SF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/carpet/nanoweave/beige, /area/ship/cargo) -"SV" = ( +"Td" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/effect/turf_decal/box/white, -/obj/machinery/light{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, +/obj/effect/decal/cleanable/oil/slippery, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) "Te" = ( @@ -3014,6 +2939,7 @@ /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/carpet/blue, /area/ship/crew) "Ug" = ( @@ -3023,6 +2949,14 @@ /obj/machinery/vending/boozeomat, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/canteen) +"Um" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/obj/structure/chair/comfy/shuttle, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "UD" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew) @@ -3048,15 +2982,6 @@ /obj/effect/turf_decal/siding/wood/end, /turf/open/floor/wood/walnut, /area/ship/crew/hydroponics) -"Vc" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/concrete/tiles, -/area/ship/crew/hydroponics) "Vd" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo) @@ -3089,58 +3014,21 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/hydroponics) -"Vu" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/hydroponics) -"VO" = ( -/obj/structure/rack, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/kitchen/knife/combat/survival, -/obj/item/kitchen/knife/combat/survival, -/obj/structure/sign/poster/retro/lasergun_new{ - pixel_x = -32 - }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/radio, -/obj/item/radio, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/wood/walnut, -/area/ship/security) -"VW" = ( +"Vn" = ( +/obj/effect/turf_decal/steeldecal/steel_decals6, +/obj/effect/turf_decal/steeldecal/steel_decals_central1, +/obj/effect/turf_decal/number/five, +/turf/open/floor/plasteel/tech/grid, +/area/ship/external) +"VM" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/item/chair, -/obj/item/chair{ - pixel_y = 5 - }, -/obj/item/chair{ - pixel_y = 10 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/turf_decal/box/white, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/concrete/tiles, +/area/ship/crew/hydroponics) "VY" = ( /obj/structure/rack, /obj/structure/window/reinforced/spawner/east, @@ -3158,51 +3046,9 @@ "Wg" = ( /turf/open/floor/concrete/slab_2, /area/ship/crew/canteen) -"Wi" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/light{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/cargo) -"Wp" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/concrete/tiles, -/area/ship/crew/hydroponics) "Wv" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering) -"Wx" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/concrete/slab_3, -/area/ship/crew/hydroponics) "Wy" = ( /obj/structure/window/reinforced/fulltile/shuttle, /obj/structure/grille, @@ -3254,6 +3100,11 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/canteen) +"Xc" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "Xh" = ( /obj/structure/sign/poster/contraband/hacking_guide{ pixel_y = -32 @@ -3352,18 +3203,6 @@ }, /turf/open/floor/mineral/titanium/white, /area/ship/medical) -"Yj" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "schmeidengine" - }, -/turf/open/floor/plating, -/area/ship/engineering) "Yk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -3382,6 +3221,10 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"Yn" = ( +/obj/effect/turf_decal/number/zero, +/turf/open/floor/engine/hull, +/area/ship/external) "Yp" = ( /obj/machinery/vending/cigarette/beach, /obj/effect/turf_decal/siding/thinplating/light{ @@ -3392,6 +3235,15 @@ "Yr" = ( /turf/open/floor/concrete/tiles, /area/ship/crew/hydroponics) +"Yt" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/catwalk/over, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering) "Yw" = ( /obj/structure/window/reinforced/fulltile/shuttle, /obj/structure/grille, @@ -3456,6 +3308,35 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"Zf" = ( +/obj/machinery/button/door{ + dir = 4; + id = "pharmboothlock"; + name = "Lockdown: Booth"; + pixel_x = -24; + pixel_y = 11 + }, +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 4; + id = "pharmdoorlock"; + name = "Anti-Tresspassing Bolts"; + normaldoorcontrol = 1; + pixel_x = -24; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + dir = 4; + id = "pharmlobby"; + name = "Lockdown: Lobby"; + pixel_x = -24; + pixel_y = -11 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/black, +/area/ship/security) "Zt" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3498,20 +3379,39 @@ dir = 8 }, /area/ship/crew/hydroponics) +"ZO" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmboothlock" + }, +/turf/open/floor/wood/walnut, +/area/ship/security) "ZP" = ( /obj/machinery/smartfridge/chemistry/preloaded, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/medical) -"ZS" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 +"ZQ" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ship/security) "ZU" = ( /obj/docking_port/mobile{ callTime = 250; @@ -3524,19 +3424,53 @@ /obj/effect/turf_decal/arrows/white, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"ZX" = ( +/obj/machinery/door/window/eastright{ + dir = 1 + }, +/obj/structure/closet/secure_closet/wall{ + dir = 8; + icon_state = "solgov_wall"; + name = "Chief Pharmacist's Locker"; + pixel_x = 32; + req_access_txt = "40" + }, +/obj/item/storage/bag/medical, +/obj/item/autosurgeon/cmo, +/obj/item/storage/belt/medical/webbing, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/obj/item/storage/box/hypospray/CMO, +/obj/item/clothing/suit/longcoat/chemist, +/obj/item/clothing/head/beret/chem, +/obj/item/clothing/neck/cloak/cmo, +/obj/item/cartridge/cmo, +/obj/item/healthanalyzer/advanced, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/assembly/flash/handheld, +/obj/item/door_remote/chief_medical_officer, +/obj/item/pet_carrier, +/obj/item/areaeditor/shuttle, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/reagent_containers/glass/bottle/vial/large, +/obj/item/reagent_containers/glass/bottle/vial/large, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) (1,1,1) = {" xJ xJ xJ +xJ Fz su YV -vn +zT Wv -Yj +Qz Wv -Yj +Qz Wv Wv fz @@ -3547,16 +3481,17 @@ xJ (2,1,1) = {" xJ xJ +xJ Fz OO OO Yk -Ff +gt Wv -aK +lB sw -xD -tA +om +Ld Wv Wv Rg @@ -3566,13 +3501,14 @@ xJ (3,1,1) = {" xJ xJ +xJ OO -VO +Df OO -Pq +mu np Wv -rd +As Zc mx ZA @@ -3584,10 +3520,11 @@ xJ "} (4,1,1) = {" xJ +xJ Fz OO Xv -gQ +ZO BT az Bp @@ -3603,14 +3540,15 @@ xJ "} (5,1,1) = {" xJ +xJ gT -iL +Zf Cb OO YR -jd +ZQ OO -qZ +oW NV bu Xy @@ -3621,44 +3559,47 @@ tR xJ "} (6,1,1) = {" +xJ rU Vd -MS -cH +zW +hN OO -NE +GY rH jC OK -ZS +Td wh -SV -VW +LK +uB Wv Zt Wv fz "} (7,1,1) = {" +xJ LC Yp Ln -Km +bm OO OO -Qb +xR OO -cn +cp gl -aB +Yt Wv Wv Wv -NY +xT YU YU "} (8,1,1) = {" +xJ Yc fu MR @@ -3669,15 +3610,16 @@ yt Vd Wv eY -Pg +rC Wv -jH -bz +aO +kc Pt EV YU "} (9,1,1) = {" +Iz ZU wG Hx @@ -3685,7 +3627,7 @@ Ov au zq Ne -Du +ht YU YU YU @@ -3697,6 +3639,7 @@ KO oK "} (10,1,1) = {" +xJ Pj Mf fP @@ -3707,19 +3650,20 @@ rE xi pY RQ -Bb -Qq +AA +nO kL PM fb -gB +Hy oK "} (11,1,1) = {" +xJ pl ly -Sz -Wi +hp +iX Vd bD Ne @@ -3731,10 +3675,11 @@ Wg yj CD va -Og +ng YU "} (12,1,1) = {" +xJ Vd Vd Vd @@ -3747,51 +3692,54 @@ PG yj qU fq -vb +tB WY -xs +dF YU YU "} (13,1,1) = {" +xJ FA Vd yB Wz -zs +zI bL XS il PG vM -Iw +jQ YU YU Ug -yn +tG YU -bP +Vn "} (14,1,1) = {" +xJ qB Wy -JB +hw SF mO Te Ny YD gO -it +Na Vh YU -kE +qV vt CV oK -fa +Yn "} (15,1,1) = {" +xJ NC Vd Vd @@ -3804,40 +3752,42 @@ YU YU YU HE -Jf +KS jg HE HE -Pi +pd "} (16,1,1) = {" xJ +xJ KU XR XR XR -dz +Sy XR XR HE -RJ -Ke -Nz +ay +vL +hX rX CX HE -nB +Ga xJ "} (17,1,1) = {" xJ +xJ kp XR -sU +nz XR ZF XR -hu +kt HE dU jG @@ -3851,11 +3801,12 @@ xJ (18,1,1) = {" xJ xJ +xJ Yx ca -Vc +VM JS -JF +oc kC ZP MV @@ -3870,6 +3821,7 @@ xJ (19,1,1) = {" xJ xJ +xJ Yx aQ oa @@ -3889,6 +3841,7 @@ xJ (20,1,1) = {" xJ xJ +xJ XR At Yr @@ -3900,7 +3853,7 @@ nK XH bX kV -gx +cr HE xJ xJ @@ -3908,6 +3861,7 @@ xJ (21,1,1) = {" xJ xJ +xJ pB XR AU @@ -3928,16 +3882,17 @@ xJ xJ xJ xJ +xJ XR -ls +Or oa Vi -Sd +wW HE He IW -xl -rB +aD +tj HE xJ xJ @@ -3947,14 +3902,15 @@ xJ xJ xJ xJ +xJ XR hg Yr kf -Wp +xr UD UD -mT +mC UD UD UD @@ -3966,15 +3922,16 @@ xJ xJ xJ xJ +xJ Yw hg nl wD iJ UD -NO +On eC -kM +oT TM ha xJ @@ -3985,10 +3942,11 @@ xJ xJ xJ xJ +xJ XR -SC -Wx -Vu +Qs +My +yv UD UD Md @@ -4004,12 +3962,13 @@ xJ xJ xJ xJ +xJ pB LJ LJ LJ LJ -dE +xg bj vS Xh @@ -4024,14 +3983,15 @@ xJ xJ xJ xJ +xJ LJ -Jm -zz +bl +xn LJ -zO +qj OV HB -RZ +xc UD xJ xJ @@ -4043,12 +4003,13 @@ xJ xJ xJ xJ +xJ QO gz -Jo +mH MQ BY -MG +fS KK QH ha @@ -4062,14 +4023,15 @@ xJ xJ xJ xJ +xJ LJ FB LJ LJ -kh +RC mv mv -Hz +sB UD xJ xJ @@ -4081,12 +4043,13 @@ xJ xJ xJ xJ +xJ Dp LJ LJ -gc +CK HK -ua +wz mv mv jB @@ -4101,8 +4064,9 @@ xJ xJ xJ xJ +xJ bq -Sl +Um AR mq iS @@ -4120,12 +4084,13 @@ xJ xJ xJ xJ +xJ bq Ra xp UT aT -Mz +ZX bq xJ xJ @@ -4139,11 +4104,12 @@ xJ xJ xJ xJ +xJ IT mv -yb +NK eu -Me +Fl mv IT xJ @@ -4159,10 +4125,11 @@ xJ xJ xJ xJ +xJ IT -Ig +Xc Vf -Ni +ka IT xJ xJ @@ -4178,6 +4145,7 @@ xJ xJ xJ xJ +xJ IT bq nw @@ -4198,9 +4166,10 @@ xJ xJ xJ xJ -bq -bq -bq +xJ +md +md +md xJ xJ xJ diff --git a/_maps/shuttles/shiptest/independent_shepherd.dmm b/_maps/shuttles/shiptest/independent_shepherd.dmm index aad171251528..78ddbfcee909 100644 --- a/_maps/shuttles/shiptest/independent_shepherd.dmm +++ b/_maps/shuttles/shiptest/independent_shepherd.dmm @@ -1,4 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/ship/hallway/starboard) "ai" = ( /obj/item/clothing/suit/hooded/chaplain_hoodie, /obj/item/clothing/suit/hooded/chaplain_hoodie, @@ -32,6 +39,15 @@ "am" = ( /turf/closed/wall/r_wall, /area/ship/crew/hydroponics) +"aq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/ship/crew/library) "at" = ( /obj/item/paper/natural{ icon_state = "paper_words"; @@ -42,6 +58,27 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) +"av" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"ax" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"az" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/item/flashlight/lantern, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "aI" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -49,6 +86,20 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/ship/crew/library) +"aK" = ( +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/ebony, +/area/ship/crew/canteen) "aM" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -59,24 +110,6 @@ /obj/structure/window/reinforced/spawner/east, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"aS" = ( -/obj/structure/catwalk, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/ship/engineering/atmospherics) -"aV" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/ship/crew/library) "bb" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -87,6 +120,15 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/bridge) +"bh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/bridge) "bi" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -126,6 +168,24 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/atmospherics) +"bQ" = ( +/turf/open/floor/plating/ship/water, +/area/ship/crew/hydroponics) +"bS" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood/ebony, +/area/ship/crew/dorm/dormtwo) "bW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -161,15 +221,20 @@ }, /turf/open/floor/wood, /area/ship/crew/library) -"ct" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_window"; - name = "Window Shutters" +"cr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 8 }, -/obj/structure/curtain/cloth/fancy, -/turf/open/floor/plating, -/area/ship/crew/library) +/obj/structure/railing/corner/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "cu" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -199,6 +264,22 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) +"cB" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Dormitories"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "cE" = ( /turf/closed/wall/r_wall, /area/ship/hallway/port) @@ -220,30 +301,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) -"cM" = ( -/obj/effect/turf_decal/weather/dirt{ - dir = 8 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"cO" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/hydroponics/soil, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) -"cV" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/hallway/fore) "cW" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/carpet/red_gold, @@ -270,6 +327,13 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/bridge) +"cZ" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/wood, +/area/ship/medical/morgue) "da" = ( /obj/structure/cable{ icon_state = "1-2" @@ -285,10 +349,22 @@ }, /turf/open/floor/wood, /area/ship/hallway/fore) -"db" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/canteen) +"de" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ship/hallway/starboard) "dg" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -296,19 +372,24 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/ship/crew/canteen) -"du" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/plating/grass/jungle/actuallydark, +"dm" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) -"dz" = ( +"ds" = ( /obj/effect/turf_decal/siding/wood/corner{ color = "#332521"; - dir = 4 + dir = 8 }, -/obj/effect/turf_decal/siding/wood{ +/obj/structure/railing/corner/wood{ dir = 8 }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "dM" = ( /turf/closed/wall, @@ -321,6 +402,23 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering/atmospherics) +"dT" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ship/hallway/port) "dX" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/wood, @@ -330,6 +428,10 @@ /obj/effect/turf_decal/corner/opaque/lightgrey/mono, /turf/open/floor/engine/air, /area/ship/engineering/atmospherics) +"eb" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "ed" = ( /obj/structure/table/wood, /obj/machinery/plantgenes{ @@ -353,6 +455,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) +"eh" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "ei" = ( /obj/structure/chair/pew{ dir = 8 @@ -373,111 +479,39 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"ej" = ( -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 4 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +"ek" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/cow, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) -"el" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 1 - }, +"eo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/libraryscanner, /obj/effect/turf_decal/siding/wood{ - color = "#332521" - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521" - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 1 - }, -/obj/machinery/door/airlock/grunge{ - name = "Chaplain's Quarters" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/chapel/office) -"em" = ( -/obj/item/flashlight/lantern, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) -"ew" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) -"eB" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ship/crew/library) +"eA" = ( +/obj/machinery/button/shieldwallgen{ + id = "shepherd_shields"; + pixel_x = 4; + pixel_y = -10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/machinery/button/door{ + id = "chapel_recdoor"; + name = "Blast Door Control"; + pixel_x = -5; + pixel_y = -8 }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/ship/hallway/port) +/turf/closed/wall/r_wall, +/area/ship/crew/canteen) "eC" = ( /obj/machinery/power/smes/engineering, /obj/structure/cable, /turf/open/floor/plating, /area/ship/engineering/electrical) -"eI" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 10 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/ebony, -/area/ship/hallway/starboard) "eK" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -510,19 +544,6 @@ "eM" = ( /turf/closed/wall, /area/ship/crew/dorm/dormtwo) -"eN" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 5 - }, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/wood/ebony, -/area/ship/bridge) "eT" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -545,6 +566,14 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) +"eW" = ( +/obj/machinery/door/window/northright, +/obj/structure/curtain/cloth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/crew/chapel/office) "eZ" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -552,26 +581,9 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/bridge) -"fe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 8 - }, -/obj/structure/railing/corner/wood{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"fk" = ( -/obj/machinery/hydroponics/soil, -/obj/structure/railing/corner/wood{ - dir = 8 - }, -/turf/open/floor/plating/grass/jungle/actuallydark, +"fb" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/open/floor/plating/ship/water, /area/ship/crew/hydroponics) "fl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -593,13 +605,6 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/bridge) -"fn" = ( -/obj/item/flashlight/lantern, -/obj/effect/turf_decal/weather/dirt{ - dir = 10 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) "fx" = ( /obj/structure/window/reinforced/spawner/north, /obj/machinery/cryopod{ @@ -657,10 +662,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"fJ" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/open/water/jungle/actuallydark, -/area/ship/crew/hydroponics) "fN" = ( /obj/item/table_bell/brass{ pixel_y = 4 @@ -671,16 +672,13 @@ }, /turf/open/floor/wood, /area/ship/crew/chapel) -"fO" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 10 - }, -/obj/machinery/light, -/turf/open/floor/wood/ebony, -/area/ship/crew/chapel) +"fP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/canteen) "fS" = ( /obj/machinery/space_heater, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ship/engineering/electrical) "fW" = ( @@ -694,32 +692,64 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/starboard) -"fY" = ( +"gf" = ( +/obj/machinery/suit_storage_unit/inherit, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/suit/space, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/canteen) +"gj" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ - dir = 8 + color = "#332521"; + dir = 9 + }, +/obj/structure/railing/wood{ + dir = 9 }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/flashlight/lantern, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) -"gd" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/closet/crate/wooden, -/turf/open/floor/plating/grass/jungle/actuallydark, +"gn" = ( +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521" + }, +/obj/structure/railing/corner/wood{ + dir = 2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) -"go" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 +"gp" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"gr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner/wood{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "0-4" +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) +"gD" = ( +/obj/structure/chair/wood, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/canteen) +"gI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 4 }, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/window/reinforced/spawner/east, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"gv" = ( -/obj/structure/railing/corner/wood, -/turf/open/water/jungle/actuallydark, -/area/ship/crew/hydroponics) +/area/ship/bridge) "gJ" = ( /obj/machinery/mass_driver{ dir = 8; @@ -751,6 +781,49 @@ }, /turf/open/floor/wood, /area/ship/crew/library) +"gY" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + color = "#332521" + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521" + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 1 + }, +/obj/machinery/door/airlock/grunge{ + name = "Chaplain's Quarters" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood/ebony, +/area/ship/crew/chapel/office) "ha" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -811,21 +884,17 @@ dir = 8 }, /area/ship/crew/canteen) -"hj" = ( -/obj/structure/table/wood, -/obj/item/candle/infinite, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) -"hm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +"hn" = ( +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "hs" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/window/reinforced/spawner/west, @@ -869,10 +938,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/wood, /area/ship/hallway/fore) -"hF" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "hL" = ( /obj/structure/sink/kitchen{ dispensedreagent = /datum/reagent/water/holywater; @@ -904,13 +969,19 @@ dir = 4 }, /area/ship/crew/chapel) -"hV" = ( -/obj/structure/chair/wood{ - dir = 4 +"hZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/ship/bridge) "if" = ( /obj/structure/cable{ icon_state = "2-8" @@ -928,10 +999,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"iv" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) "iD" = ( /obj/structure/cable{ icon_state = "1-8" @@ -968,9 +1035,6 @@ /obj/effect/turf_decal/siding/wood/corner{ color = "#332521" }, -/obj/structure/mineral_door/wood{ - name = "Garden Storeroom" - }, /obj/effect/turf_decal/siding/wood{ color = "#332521" }, @@ -980,6 +1044,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) "iH" = ( @@ -994,28 +1061,6 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) -"iJ" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"iS" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/storage/bag/ore, -/obj/item/mining_scanner, -/obj/item/flashlight/lantern, -/obj/item/pickaxe/rusted, -/obj/item/clothing/head/hardhat/mining, -/obj/item/gps, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stack/marker_beacon/ten, -/turf/open/floor/wood, -/area/ship/crew/canteen) "iT" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1037,6 +1082,26 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/starboard) +"iZ" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + dir = 1; + id = "chapel_window"; + name = "Window Shutter Control"; + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/lighter, +/obj/item/storage/fancy/candle_box{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/crew/chapel/office) "jf" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -1046,11 +1111,6 @@ }, /turf/open/floor/wood, /area/ship/crew/chapel) -"ji" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/item/flashlight/lantern, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "jj" = ( /obj/structure/railing/wood{ dir = 8 @@ -1064,6 +1124,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) +"jk" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/canteen) "jl" = ( /obj/structure/railing{ dir = 4 @@ -1076,12 +1140,31 @@ /obj/structure/fluff/hedge, /turf/open/floor/carpet/red_gold, /area/ship/bridge) -"jn" = ( -/obj/structure/railing/corner/wood{ - dir = 8 +"jo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/ship/hallway/fore) +"jw" = ( +/obj/effect/turf_decal/borderfloorblack, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) +"jz" = ( /obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/grass/jungle/actuallydark, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "jA" = ( /obj/effect/turf_decal/siding/wood{ @@ -1093,17 +1176,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/carpet/red, -/area/ship/crew/library) -"jC" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521" - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/chapel) +/area/ship/crew/library) "jL" = ( /obj/structure/railing/wood{ dir = 8 @@ -1123,10 +1196,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"kb" = ( -/obj/structure/railing/wood, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "kc" = ( /turf/closed/wall/r_wall, /area/ship/hallway/starboard) @@ -1137,24 +1206,10 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"kj" = ( -/obj/structure/railing/wood, -/turf/open/water/jungle/actuallydark, -/area/ship/crew/hydroponics) "kp" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/ship/hallway/starboard) -"ks" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521" - }, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/chapel) "kw" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/gun/ballistic/shotgun/doublebarrel, @@ -1164,10 +1219,10 @@ /obj/item/storage/box/beanbag, /turf/open/floor/carpet/nanoweave/blue, /area/ship/crew/chapel/office) -"kz" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/grass/jungle/actuallydark, +"kx" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "kC" = ( /turf/closed/wall/r_wall, @@ -1176,9 +1231,10 @@ /obj/structure/fluff/divine/nexus, /turf/open/floor/carpet/nanoweave/blue, /area/ship/crew/chapel/office) -"kK" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/plating/grass/jungle/actuallydark, +"kH" = ( +/obj/structure/destructible/tribal_torch, +/obj/structure/railing/wood, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "kR" = ( /obj/machinery/power/shieldwallgen/atmos/roundstart{ @@ -1246,10 +1302,9 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"lk" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/plating/grass/jungle/actuallydark, +"lh" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "ll" = ( /obj/effect/turf_decal/siding/wood{ @@ -1279,33 +1334,14 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/dorm/dormtwo) -"lx" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"lA" = ( -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 4 - }, -/obj/structure/railing/corner/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"lI" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "1-2" +"lu" = ( +/obj/machinery/computer/pod{ + dir = 2; + id = "chapel_massdriver" }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/wood, -/area/ship/crew/canteen) +/area/ship/medical/morgue) "lM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -1315,12 +1351,23 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"lQ" = ( -/obj/machinery/door/poddoor{ - id = "chapel_massdriver" +"lO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 4 }, /turf/open/floor/plating, -/area/ship/medical/morgue) +/area/ship/crew/chapel/office) +"lS" = ( +/obj/effect/turf_decal/borderfloorblack, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "lT" = ( /obj/structure/curtain, /obj/machinery/shower{ @@ -1331,10 +1378,6 @@ /obj/item/soap/deluxe, /turf/open/floor/plasteel/white, /area/ship/crew/toilet) -"lY" = ( -/obj/structure/railing/corner/wood, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) "lZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -1397,6 +1440,21 @@ /obj/machinery/door/window/northright, /turf/open/floor/plasteel, /area/ship/engineering/electrical) +"mx" = ( +/obj/machinery/newscaster/directional/north{ + pixel_y = 30 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ship/bridge) "mB" = ( /turf/closed/wall, /area/ship/crew/dorm) @@ -1409,6 +1467,22 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"mP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/ship/hallway/starboard) "mR" = ( /obj/effect/turf_decal/siding{ dir = 8 @@ -1426,19 +1500,12 @@ }, /turf/open/floor/wood/ebony, /area/ship/bridge) -"mV" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 5 - }, -/obj/structure/railing/wood{ - dir = 5 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 +"ne" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/chair/wood{ + dir = 4 }, -/obj/item/flashlight/lantern, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "nf" = ( /obj/effect/turf_decal/spline/fancy/wood{ @@ -1446,27 +1513,10 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"nB" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/wood{ - name = "Bridge" - }, -/turf/open/floor/wood, -/area/ship/bridge) +"nx" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "nF" = ( /obj/item/poster/random_official, /obj/item/paper_bin/bundlenatural, @@ -1484,18 +1534,6 @@ }, /turf/open/floor/wood, /area/ship/crew/library) -"nI" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/railing/corner/wood, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"nJ" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "nM" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -1507,6 +1545,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/port) +"nP" = ( +/obj/structure/railing, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/ship/bridge) "nQ" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -1539,19 +1584,6 @@ /obj/structure/window/reinforced/spawner/east, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"oe" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/head/beekeeper_head, -/obj/item/melee/flyswatter, -/obj/item/clothing/head/beekeeper_head, -/obj/item/melee/flyswatter, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "oh" = ( /obj/structure/table/wood, /obj/item/storage/bag/plants, @@ -1564,7 +1596,7 @@ /obj/structure/closet/wall{ dir = 4; name = "supply closet"; - pixel_x = -30 + pixel_x = -28 }, /obj/item/reagent_containers/food/drinks/bottle/holywater, /obj/effect/turf_decal/siding/wood{ @@ -1591,6 +1623,16 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel/office) +"oq" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/wood/ebony, +/area/ship/crew/chapel) "ow" = ( /obj/structure/railing/corner/wood{ dir = 2 @@ -1625,29 +1667,28 @@ }, /turf/open/floor/wood, /area/ship/hallway/fore) -"oJ" = ( +"oG" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; - dir = 9 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/wood/ebony, -/area/ship/bridge) -"oK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/corner/wood{ - dir = 8 + dir = 10 }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/red, +/area/ship/crew/library) "oL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/crew/hydroponics) +"oO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 4 + }, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/ship/crew/canteen) "oP" = ( /obj/structure/railing/wood, /obj/effect/turf_decal/siding/wood{ @@ -1668,24 +1709,48 @@ }, /turf/open/floor/carpet/black, /area/ship/crew/dorm) +"oW" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/ship/bridge) +"oX" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"oY" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"oZ" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "pc" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible, /obj/machinery/meter/atmos/distro_loop, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"pi" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, -/turf/open/floor/wood/ebony, -/area/ship/crew/canteen) "pj" = ( /turf/open/floor/plasteel/stairs/medium{ dir = 1 }, /area/ship/crew/hydroponics) +"pl" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "pw" = ( /obj/effect/turf_decal/siding/wood/corner{ color = "#332521"; @@ -1719,13 +1784,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/fore) -"pD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) "pE" = ( /turf/closed/wall, /area/ship/crew/library) @@ -1744,20 +1802,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"pH" = ( -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 8 - }, -/obj/structure/railing/corner/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) "pO" = ( /turf/closed/wall, /area/ship/crew/canteen) @@ -1790,6 +1834,10 @@ /obj/item/radio, /turf/open/floor/pod/dark, /area/ship/crew/dorm) +"pY" = ( +/obj/structure/flora/rock/jungle, +/turf/open/floor/plating/ship/water, +/area/ship/crew/hydroponics) "pZ" = ( /obj/structure/railing/wood{ dir = 8 @@ -1800,18 +1848,13 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/hydroponics) -"qi" = ( -/obj/machinery/button/shieldwallgen{ - id = "shepherd_shields"; - pixel_x = 4 - }, -/obj/machinery/button/door{ - id = "chapel_recdoor"; - name = "Blast Door Control"; - pixel_x = -8 +"qj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/northleft{ + req_one_access_txt = list("12","22","37") }, -/turf/closed/wall/r_wall, -/area/ship/crew/canteen) +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "qr" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -1827,16 +1870,6 @@ dir = 1 }, /area/ship/hallway/fore) -"qB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) "qC" = ( /obj/structure/bookcase/random/religion, /obj/effect/decal/cleanable/dirt/dust, @@ -1864,11 +1897,18 @@ }, /obj/machinery/light_switch{ dir = 8; - pixel_x = 28; + pixel_x = 21; pixel_y = 3 }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel/office) +"qG" = ( +/obj/machinery/door/poddoor{ + id = "chapel_massdriver"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/medical/morgue) "qI" = ( /obj/machinery/atmospherics/pipe/layer_manifold/visible{ dir = 4 @@ -1897,6 +1937,13 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel/office) +"qM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "qU" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -1931,18 +1978,33 @@ /obj/item/candle/infinite, /turf/open/floor/wood, /area/ship/crew/chapel) -"rl" = ( -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/canteen) "rm" = ( -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/three_course_meal, -/obj/effect/turf_decal/corner_techfloor_grid/diagonal, -/obj/machinery/light/small{ - dir = 8 +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 4 }, -/turf/open/floor/pod/dark, -/area/ship/crew/dorm) +/turf/open/floor/plating, +/area/ship/crew/dorm/dormtwo) +"rn" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"rv" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/poddoor{ + id = "shepherd_right_thrusters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) "rw" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -1951,35 +2013,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/ebony, /area/ship/crew/hydroponics) -"rB" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) -"rH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) "rI" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/carpet/red_gold, /area/ship/crew/chapel) -"rM" = ( -/obj/machinery/power/smes/shuttle/precharged{ +"rJ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; dir = 4 }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/poddoor{ - id = "shepherd_right_thrusters" +/obj/structure/railing/corner/wood{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "rR" = ( /obj/structure/railing/wood{ dir = 8 @@ -1989,11 +2039,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"rS" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/light/small, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) "rX" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -2035,6 +2080,12 @@ }, /turf/open/floor/wood/ebony, /area/ship/bridge) +"sl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "so" = ( /obj/structure/railing/wood{ dir = 8 @@ -2050,8 +2101,19 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/crew/chapel) -"sz" = ( -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +"sr" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 10 + }, +/obj/structure/railing/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/item/flashlight/lantern, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "sA" = ( /obj/effect/turf_decal/siding/wood{ @@ -2064,16 +2126,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/starboard) -"sC" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/machinery/hydroponics/soil, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "sH" = ( /obj/structure/closet/wall{ dir = 1; name = "glass storage"; - pixel_y = -30 + pixel_y = -28 }, /obj/item/reagent_containers/food/drinks/modglass/large, /obj/item/reagent_containers/food/drinks/modglass/large, @@ -2123,17 +2180,11 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) -"sK" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plating, -/area/ship/engineering/electrical) +"sL" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ship/hallway/starboard) "sY" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521" @@ -2190,24 +2241,6 @@ }, /turf/open/floor/wood, /area/ship/crew/hydroponics) -"ts" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/canteen) "tt" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -2239,22 +2272,16 @@ /obj/structure/grille, /turf/open/floor/plating/airless, /area/ship/engineering/atmospherics) -"tE" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/chapel) "tF" = ( /obj/structure/railing/wood, /turf/open/floor/plasteel/stairs/right{ dir = 8 }, /area/ship/crew/canteen) +"tL" = ( +/obj/structure/destructible/tribal_torch, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "tM" = ( /obj/effect/turf_decal/spline/fancy/wood{ dir = 4 @@ -2296,16 +2323,6 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"uz" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) "uA" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/siding/wood{ @@ -2327,12 +2344,6 @@ }, /turf/open/floor/wood/ebony, /area/ship/hallway/starboard) -"uL" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "uS" = ( /obj/structure/cable/yellow{ icon_state = "0-4" @@ -2340,16 +2351,14 @@ /obj/machinery/power/port_gen/pacman, /turf/open/floor/plating, /area/ship/engineering/electrical) +"uW" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/canteen) "uY" = ( /turf/open/floor/wood/ebony, /area/ship/crew/canteen) -"vg" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/wood, -/area/ship/crew/hydroponics) "vi" = ( /obj/structure/railing{ dir = 4 @@ -2361,6 +2370,10 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/bridge) +"vn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "vu" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -2395,26 +2408,23 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/library) -"vy" = ( +"vx" = ( +/obj/structure/chair/sofa{ + dir = 2; + icon_state = "sofacorner" + }, +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 5 + }, +/obj/item/toy/plush/hornet/gay, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/wood, -/area/ship/medical/morgue) -"vC" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/canteen) -"vE" = ( -/obj/machinery/door/window/northright, -/obj/structure/curtain/cloth, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/chapel/office) +/turf/open/floor/carpet/black, +/area/ship/crew/dorm/dormtwo) "vF" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2425,17 +2435,12 @@ dir = 1 }, /area/ship/hallway/fore) -"vN" = ( -/obj/structure/railing/wood, -/obj/effect/turf_decal/siding/wood{ - color = "#332521" - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 8 +"vQ" = ( +/obj/structure/chair/wood{ + dir = 1 }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/canteen) "vX" = ( /obj/structure/cable{ icon_state = "2-8" @@ -2446,10 +2451,29 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/ship/engineering/electrical) -"wb" = ( -/obj/structure/flora/tree/chapel, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) +"wa" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 6 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/button/door{ + dir = 8; + id = "chapel_window"; + name = "Window Shutter Control"; + pixel_x = -4; + pixel_y = -4 + }, +/obj/machinery/button/door{ + dir = 8; + id = "chapel_recdoor"; + name = "Blast Door Control"; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/wood/ebony, +/area/ship/bridge) "wc" = ( /obj/structure/chair/pew/left{ dir = 8 @@ -2464,29 +2488,6 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"wd" = ( -/turf/open/water/jungle/actuallydark, -/area/ship/crew/hydroponics) -"we" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/wood, -/area/ship/bridge) -"wh" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "wm" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -2510,31 +2511,31 @@ /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/ship/hallway/starboard) -"wx" = ( -/obj/machinery/computer/pod{ - dir = 2; - id = "chapel_massdriver" +"ww" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/firealarm{ - pixel_y = 26 +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/wood, -/area/ship/medical/morgue) +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"wy" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "wz" = ( /obj/machinery/vending/snack/random, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/ship/hallway/starboard) -"wK" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +"wH" = ( +/obj/structure/railing/corner/wood{ + dir = 8 }, -/turf/open/floor/wood, -/area/ship/hallway/port) +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/canteen) "wQ" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -2546,10 +2547,6 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"wR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) "wS" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -2558,23 +2555,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/wood, /area/ship/hallway/port) -"wV" = ( -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/closet/wall{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/corner_techfloor_grid/diagonal, -/obj/item/flashlight/lantern, -/obj/item/flashlight/lantern, -/obj/item/flashlight/lantern, -/obj/item/flashlight/lantern, -/obj/item/flashlight/lantern, -/turf/open/floor/pod/dark, -/area/ship/crew/dorm) "wW" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -2634,18 +2614,14 @@ /obj/item/clothing/under/rank/civilian/chaplain/skirt, /turf/open/floor/pod/dark, /area/ship/crew/dorm) -"xh" = ( -/obj/machinery/mineral/ore_redemption, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/canteen) +"xi" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) "xj" = ( /turf/template_noop, /area/template_noop) -"xn" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "xr" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -2657,11 +2633,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/port) -"xu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) +"xs" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/three_course_meal, +/obj/effect/turf_decal/corner_techfloor_grid/diagonal, +/obj/machinery/light/small/directional/west, +/turf/open/floor/pod/dark, +/area/ship/crew/dorm) "xv" = ( /obj/structure/railing/wood{ dir = 8 @@ -2693,22 +2671,6 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"xL" = ( -/obj/structure/table/wood, -/obj/item/areaeditor/shuttle, -/obj/item/nullrod, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/chapel/office) "xP" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -2718,24 +2680,6 @@ }, /turf/open/floor/wood, /area/ship/medical/morgue) -"xU" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/starboard) "yg" = ( /obj/structure/table/wood/fancy, /obj/effect/spawner/lootdrop/three_course_meal, @@ -2753,18 +2697,45 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/crew/chapel) -"yk" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 +"yj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 }, -/obj/effect/turf_decal/siding/wood/corner{ +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"yl" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/crew/chapel/office) +"ym" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/light/small{ +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/machinery/door/airlock/wood{ + name = "Bridge"; + dir = 8 + }, /turf/open/floor/wood, -/area/ship/crew/dorm) +/area/ship/bridge) +"yn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "yp" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2782,13 +2753,9 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"yz" = ( -/obj/structure/table/wood, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) -"yG" = ( +"yr" = ( /obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass/jungle/actuallydark, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "yO" = ( /obj/machinery/door/firedoor/border_only, @@ -2863,13 +2830,10 @@ }, /turf/open/floor/wood/ebony, /area/ship/hallway/starboard) -"zy" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/plating/grass/jungle/actuallydark, +"zG" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "zH" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -2881,10 +2845,6 @@ }, /turf/open/floor/wood, /area/ship/crew/library) -"zJ" = ( -/obj/effect/turf_decal/weather/dirt, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/canteen) "zL" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2915,6 +2875,22 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) +"zX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/crew/dorm/dormtwo) +"Ae" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/electrical) "Aj" = ( /obj/effect/turf_decal/spline/fancy/wood, /turf/open/floor/wood/ebony, @@ -2933,21 +2909,11 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/bridge) -"Av" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/chapel) "AA" = ( /obj/structure/closet/wall{ dir = 1; name = "glass storage"; - pixel_y = -30 + pixel_y = -28 }, /obj/item/reagent_containers/food/drinks/drinkingglass, /obj/item/reagent_containers/food/drinks/drinkingglass, @@ -2984,6 +2950,10 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) +"AP" = ( +/obj/structure/railing/wood, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "AS" = ( /obj/structure/railing/wood{ dir = 8 @@ -2991,27 +2961,16 @@ /obj/structure/railing/wood, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"AY" = ( +"AT" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 9 - }, -/obj/structure/railing/wood{ - dir = 9 - }, -/obj/effect/turf_decal/siding/wood/corner, -/obj/item/flashlight/lantern, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"AZ" = ( +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/canteen) +"AW" = ( /obj/effect/turf_decal/weather/dirt{ dir = 9 }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +/obj/machinery/light/directional/north, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "Bd" = ( /obj/effect/turf_decal/siding/wood{ @@ -3045,6 +3004,18 @@ }, /turf/open/floor/wood, /area/ship/crew/chapel) +"BC" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/ebony, +/area/ship/crew/canteen) "BE" = ( /obj/structure/chair/wood{ dir = 1 @@ -3077,19 +3048,16 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"BO" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 10 - }, -/obj/structure/railing/wood{ - dir = 10 +"BT" = ( +/obj/structure/railing/corner/wood{ + dir = 1 }, /obj/effect/turf_decal/siding/wood/corner{ - dir = 4 + color = "#332521"; + dir = 1 }, -/obj/item/flashlight/lantern, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "Ca" = ( /obj/effect/decal/cleanable/dirt, @@ -3103,73 +3071,52 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/hydroponics) -"Cg" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - dir = 1; - id = "chapel_window"; - name = "Window Shutter Control"; - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/lighter, -/obj/item/storage/fancy/candle_box{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 8; - pixel_y = 2 +"Cf" = ( +/obj/structure/chair/wood{ + dir = 4 }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/chapel/office) +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "Cj" = ( /obj/structure/chair/wood{ dir = 1 }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/crew/chapel/office) -"Ck" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/chapel/office) -"Cw" = ( -/obj/effect/turf_decal/siding/wood{ +"Cq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; dir = 4 }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/ship/hallway/fore) -"Cz" = ( +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/ship/crew/library) +"Cs" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/dorm/dormtwo) -"CE" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/stairs{ - dir = 8 +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) +"Cu" = ( +/obj/item/flashlight/lantern, +/obj/effect/turf_decal/weather/dirt{ + dir = 10 }, -/area/ship/bridge) +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) +"Cx" = ( +/obj/machinery/mineral/ore_redemption, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/canteen) +"CL" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) "CM" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3260,34 +3207,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"CW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/northleft{ - req_one_access_txt = list("12","22","37") - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"CY" = ( -/obj/structure/catwalk, -/obj/docking_port/mobile{ - can_move_docking_ports = 1; - dir = 2; - dwidth = 12; - height = 17; - launch_status = 0; - name = "chapel ship"; - port_direction = 8; - preferred_direction = 4; - width = 28 - }, -/turf/open/floor/plating, -/area/ship/crew/canteen) -"CZ" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "Df" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -3299,49 +3218,23 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/fore) -"Dn" = ( -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 1 - }, -/obj/effect/turf_decal/weather/dirt{ - dir = 4 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"Dp" = ( -/obj/effect/turf_decal/siding/wood{ +"Do" = ( +/obj/machinery/power/shuttle/engine/electric{ dir = 4 }, -/turf/open/floor/wood, -/area/ship/hallway/fore) -"Dq" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 6 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 4; - pixel_y = 1 - }, -/obj/machinery/button/door{ - dir = 8; - id = "chapel_window"; - name = "Window Shutter Control"; - pixel_x = -4; - pixel_y = -4 +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/button/door{ - dir = 8; - id = "chapel_recdoor"; - name = "Blast Door Control"; - pixel_x = -4; - pixel_y = 8 +/obj/structure/window/reinforced/spawner/north, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Dp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/turf/open/floor/wood/ebony, -/area/ship/bridge) +/turf/open/floor/wood, +/area/ship/hallway/fore) "Dt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -3369,32 +3262,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"DD" = ( -/obj/structure/chair/sofa{ - dir = 2; - icon_state = "sofacorner" - }, -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 5 - }, -/obj/item/toy/plush/hornet/gay, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm/dormtwo) -"DF" = ( -/obj/structure/table/wood/fancy, -/obj/item/candle/infinite{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/flashlight/lantern, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "DI" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -3413,6 +3280,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/crew/dorm) +"DT" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "DW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -3437,6 +3308,22 @@ /obj/machinery/computer/cargo/express, /turf/open/floor/wood/ebony, /area/ship/bridge) +"Eb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "Ei" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -3472,6 +3359,11 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) +"Eo" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "Et" = ( /turf/closed/wall, /area/ship/crew/chapel/office) @@ -3489,36 +3381,19 @@ }, /turf/open/floor/wood, /area/ship/hallway/port) -"Ev" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/libraryscanner, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/library) -"Ew" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/hallway/starboard) -"ED" = ( -/obj/structure/railing/corner/wood{ - dir = 1 +"Ez" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"EE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "EO" = ( /obj/structure/sink/kitchen{ @@ -3550,18 +3425,21 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"Fa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/corner/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 1 +"Fk" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/directional/east, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/grape, +/obj/item/seeds/watermelon, +/obj/item/seeds/apple, +/obj/item/seeds/random, +/obj/item/seeds/wheat, +/turf/open/floor/wood, +/area/ship/hallway/fore) "Fq" = ( /obj/structure/railing/corner/wood{ dir = 1 @@ -3580,41 +3458,46 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"Fu" = ( +"Fx" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 6 - }, -/obj/structure/railing/wood{ - dir = 6 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/item/flashlight/lantern, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) -"FB" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/canteen) -"FJ" = ( -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521" +"FF" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/obj/structure/railing/corner/wood{ - dir = 2 +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/poddoor{ + id = "shepherd_left_thrusters"; + dir = 4 }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "FL" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/ship/hallway/starboard) +"FM" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"FQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/wood, +/area/ship/hallway/port) "FW" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 8 @@ -3639,6 +3522,13 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/wood, /area/ship/crew/dorm) +"Gc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/ship/hallway/starboard) "Ge" = ( /obj/structure/railing/corner/wood, /obj/effect/turf_decal/siding/wood{ @@ -3688,11 +3578,6 @@ "Gr" = ( /turf/closed/wall, /area/ship/bridge) -"Gx" = ( -/obj/structure/destructible/tribal_torch, -/obj/structure/railing/wood, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "Gy" = ( /obj/structure/curtain/bounty, /obj/effect/turf_decal/siding/wood{ @@ -3728,11 +3613,25 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/fore) -"GN" = ( +"GZ" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 9 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/ebony, +/area/ship/crew/chapel) +"Hb" = ( +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521" + }, /obj/structure/railing/corner/wood{ dir = 2 }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "Hc" = ( /obj/structure/catwalk, @@ -3745,6 +3644,11 @@ "Hk" = ( /turf/closed/wall, /area/ship/engineering/electrical) +"Ho" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/flora/junglebush, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "Hp" = ( /obj/effect/turf_decal/siding{ dir = 8 @@ -3757,37 +3661,6 @@ }, /turf/open/floor/wood, /area/ship/bridge) -"Hx" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/bridge) -"HE" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/drinks/modglass/large{ - list_reagents = list(/datum/reagent/consumable/ethanol/trappist=50); - name = "Trappist"; - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/modglass/large{ - list_reagents = list(/datum/reagent/consumable/ethanol/trappist=50); - name = "Trappist"; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "HF" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -3798,11 +3671,15 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) -"HM" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/flora/junglebush, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) +"HI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/crew/chapel) "HN" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/siding/wood{ @@ -3821,6 +3698,11 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"HP" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/closet/crate/wooden, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "HQ" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -3835,11 +3717,6 @@ }, /turf/open/floor/wood, /area/ship/crew/library) -"HT" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "Ia" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -3849,7 +3726,7 @@ "Id" = ( /obj/structure/railing/wood, /obj/machinery/light_switch{ - pixel_y = 26 + pixel_y = 21 }, /turf/open/floor/plasteel/stairs{ dir = 4 @@ -3875,6 +3752,27 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/ship/engineering/electrical) +"Iw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"Ix" = ( +/obj/machinery/computer/cryopod/directional/south, +/obj/structure/closet/wall{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/turf_decal/corner_techfloor_grid/diagonal, +/obj/item/flashlight/lantern, +/obj/item/flashlight/lantern, +/obj/item/flashlight/lantern, +/obj/item/flashlight/lantern, +/obj/item/flashlight/lantern, +/turf/open/floor/pod/dark, +/area/ship/crew/dorm) "IF" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3887,6 +3785,17 @@ }, /turf/open/floor/wood, /area/ship/hallway/port) +"IK" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/wood/ebony, +/area/ship/bridge) "IQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/photocopier, @@ -3927,14 +3836,23 @@ dir = 8 }, /area/ship/crew/canteen) -"Jd" = ( -/obj/effect/turf_decal/borderfloorblack, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" +"Jc" = ( +/obj/structure/sink/greyscale{ + pixel_y = 20 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"Jf" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "Jg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/wood, @@ -3944,11 +3862,7 @@ /obj/effect/turf_decal/siding/wood/corner{ color = "#332521" }, -/turf/open/floor/wood/ebony, -/area/ship/crew/hydroponics) -"Jj" = ( -/obj/structure/flora/rock/jungle, -/turf/open/water/jungle/actuallydark, +/turf/open/floor/wood/ebony, /area/ship/crew/hydroponics) "Jk" = ( /obj/structure/cable{ @@ -3972,15 +3886,11 @@ }, /turf/open/floor/grass/fairy, /area/ship/crew/hydroponics) -"Ju" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +"Jv" = ( +/obj/structure/flora/tree/chapel, +/obj/effect/landmark/observer_start, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "JG" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ @@ -4006,15 +3916,18 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"JN" = ( -/obj/effect/decal/cleanable/dirt/dust, +"JL" = ( +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"JO" = ( +/obj/structure/table/reinforced, /obj/effect/turf_decal/siding/wood{ - dir = 6 + color = "#332521"; + dir = 5 }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/wood, -/area/ship/crew/library) +/obj/item/radio/intercom/wideband/directional/east, +/turf/open/floor/wood/ebony, +/area/ship/bridge) "JV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -4033,6 +3946,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/ship/crew/hydroponics) +"Kg" = ( +/obj/structure/railing/wood, +/obj/effect/turf_decal/siding/wood{ + color = "#332521" + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 8 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "Kn" = ( /obj/structure/chair/pew/left{ dir = 1 @@ -4043,6 +3967,14 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) +"Ku" = ( +/obj/machinery/door/airlock{ + name = "Restroom"; + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) "Kv" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -4081,49 +4013,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/wood, /area/ship/crew/canteen) -"KE" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521" - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 1 - }, -/obj/machinery/door/airlock/grunge{ - name = "Discussion Chamber" - }, -/obj/effect/turf_decal/siding/wood{ - color = "#332521" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/dorm/dormtwo) "KF" = ( /obj/structure/table/wood, /obj/machinery/computer/bookmanagement{ @@ -4137,7 +4026,7 @@ }, /obj/machinery/light_switch{ pixel_x = 5; - pixel_y = 28 + pixel_y = 24 }, /turf/open/floor/wood, /area/ship/crew/library) @@ -4202,22 +4091,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) -"KU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "KW" = ( /obj/structure/cable{ icon_state = "2-4" @@ -4230,10 +4103,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/fore) -"KZ" = ( -/obj/structure/flora/junglebush/b, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "Lf" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood/corner{ @@ -4244,10 +4113,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"Lg" = ( -/obj/structure/chair/wood, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/canteen) "Lh" = ( /obj/structure/railing/corner/wood, /obj/effect/turf_decal/siding/wood{ @@ -4275,6 +4140,10 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"Lx" = ( +/obj/structure/railing/corner/wood, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "LD" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -4291,6 +4160,16 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/library) +"LG" = ( +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "LH" = ( /obj/structure/railing{ dir = 4 @@ -4335,37 +4214,21 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ship/engineering/electrical) -"LV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/weather/dirt{ - dir = 1 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"Mb" = ( -/obj/structure/railing/corner/wood{ - dir = 8 - }, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) -"Mf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/ship/crew/library) "Mh" = ( /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) +"Mj" = ( +/obj/structure/table/wood/fancy, +/obj/item/candle/infinite{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/flashlight/lantern, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "Mm" = ( /obj/effect/turf_decal/siding/wood/corner{ color = "#332521"; @@ -4393,45 +4256,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/ship/crew/library) -"Mq" = ( +"Ms" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; dir = 9 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood/ebony, /area/ship/hallway/port) -"Mw" = ( -/obj/structure/table/wood/fancy, -/obj/item/candle/infinite{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/snacks/cheesewedge{ - pixel_x = 1; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/snacks/cheesewedge{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/modglass/large{ - list_reagents = list(/datum/reagent/consumable/ethanol/trappist=50); - name = "Trappist"; - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/canteen) -"MB" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) "MC" = ( /obj/structure/railing/corner/wood{ dir = 4 @@ -4449,6 +4281,10 @@ dir = 4 }, /area/ship/crew/hydroponics) +"MI" = ( +/obj/structure/railing/corner/wood, +/turf/open/floor/plating/ship/water, +/area/ship/crew/hydroponics) "MK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -4462,12 +4298,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/port) -"MO" = ( -/obj/structure/railing/corner/wood{ - dir = 8 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/canteen) "MQ" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -4477,6 +4307,18 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) +"MS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "MV" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -4484,16 +4326,40 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/hydroponics) -"Ne" = ( -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521"; - dir = 1 +"Nc" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/railing/wood, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"Nd" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"Nh" = ( +/obj/structure/catwalk, +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + dir = 2; + dwidth = 12; + height = 17; + launch_status = 0; + name = "chapel ship"; + port_direction = 8; + preferred_direction = 4; + width = 28 }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Ni" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) +/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) "Nm" = ( /obj/machinery/atmospherics/components/unary/portables_connector{ dir = 8 @@ -4501,16 +4367,6 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"No" = ( -/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"Nr" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "ND" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4519,17 +4375,12 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/ship/crew/canteen) -"NI" = ( -/obj/effect/turf_decal/borderfloorblack, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 +"NH" = ( +/obj/structure/chair/wood{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "NM" = ( /obj/effect/turf_decal/siding/wood{ color = "#332521"; @@ -4542,6 +4393,10 @@ }, /turf/open/floor/grass/fairy, /area/ship/crew/hydroponics) +"NN" = ( +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "NO" = ( /turf/open/floor/wood, /area/ship/crew/canteen) @@ -4568,18 +4423,76 @@ }, /turf/open/floor/grass/fairy, /area/ship/crew/hydroponics) -"Ov" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 +"NZ" = ( +/obj/structure/flora/ausbushes, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"Ob" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"Oe" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"Or" = ( +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/storage/bag/ore, +/obj/item/mining_scanner, +/obj/item/flashlight/lantern, +/obj/item/pickaxe/rusted, +/obj/item/clothing/head/hardhat/mining, +/obj/item/gps, +/obj/machinery/light/directional/east, +/obj/item/stack/marker_beacon/ten, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"OD" = ( +/obj/structure/table/wood/fancy, +/obj/item/candle/infinite{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/snacks/cheesewedge{ + pixel_x = 1; + pixel_y = 12 }, -/obj/machinery/light/small{ - dir = 4 +/obj/item/reagent_containers/food/snacks/cheesewedge{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/wood, -/area/ship/hallway/starboard) +/obj/item/reagent_containers/food/drinks/modglass/large{ + list_reagents = list(/datum/reagent/consumable/ethanol/trappist=50); + name = "Trappist"; + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/canteen) "OM" = ( /turf/closed/wall, /area/ship/crew/toilet) +"OO" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/mortar, +/obj/item/pestle, +/obj/machinery/light/small/directional/north, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/turf/open/floor/wood/ebony, +/area/ship/crew/canteen) "OP" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -4591,10 +4504,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/carpet/red_gold, /area/ship/hallway/starboard) -"OW" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/plating/grass/jungle/actuallydark, +"OS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "OX" = ( /obj/structure/cable{ @@ -4604,6 +4516,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/fore) +"OZ" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/drinks/modglass/large{ + list_reagents = list(/datum/reagent/consumable/ethanol/trappist=50); + name = "Trappist"; + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/modglass/large{ + list_reagents = list(/datum/reagent/consumable/ethanol/trappist=50); + name = "Trappist"; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "Pe" = ( /obj/structure/chair/sofa/left{ dir = 8 @@ -4624,54 +4552,23 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/carpet/black, /area/ship/crew/dorm/dormtwo) -"Pi" = ( -/obj/machinery/suit_storage_unit/inherit, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space, -/obj/item/clothing/suit/space, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/canteen) "Pq" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/carpet/red_gold, /area/ship/hallway/starboard) -"Pr" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) -"Pu" = ( -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "Pv" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"PC" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/ship/hallway/port) +"Pw" = ( +/obj/structure/table/wood, +/obj/item/candle/infinite, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "PD" = ( /obj/structure/chair/sofa{ dir = 4; @@ -4697,21 +4594,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"PF" = ( -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 1 +"PG" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/mortar, -/obj/item/pestle, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/turf/open/floor/wood/ebony, +/turf/open/floor/wood, /area/ship/crew/canteen) "PJ" = ( /obj/machinery/power/terminal{ @@ -4725,19 +4616,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"PK" = ( -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/structure/table/wood/fancy, -/obj/effect/turf_decal/siding/wood{ - color = "#332521"; - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/wood/ebony, -/area/ship/crew/canteen) "PM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/siding/wood{ @@ -4768,6 +4646,13 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) +"PT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "PU" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -4783,10 +4668,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"Qa" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "Qb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4840,6 +4721,20 @@ }, /turf/open/floor/grass/fairy, /area/ship/crew/hydroponics) +"Qn" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 5 + }, +/obj/structure/railing/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/flashlight/lantern, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "Qo" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8 @@ -4887,12 +4782,14 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) -"QD" = ( -/obj/structure/chair/wood{ - dir = 4 +"QC" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521" }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/ebony, +/area/ship/crew/canteen) "QE" = ( /obj/structure/fermenting_barrel, /obj/item/reagent_containers/food/snacks/grown/wheat, @@ -4942,6 +4839,10 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) +"QO" = ( +/obj/structure/table/wood, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "QW" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -4997,11 +4898,14 @@ }, /turf/open/floor/wood/ebony, /area/ship/bridge) -"Rs" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/light, -/turf/open/floor/wood, -/area/ship/hallway/starboard) +"Rv" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/ebony, +/area/ship/crew/chapel) "RB" = ( /obj/effect/turf_decal/siding/wood/end, /turf/open/floor/wood, @@ -5050,6 +4954,10 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) +"RN" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "RQ" = ( /obj/effect/turf_decal/siding{ dir = 8 @@ -5059,6 +4967,15 @@ }, /turf/open/floor/wood, /area/ship/bridge) +"RT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/crew/chapel) "Sa" = ( /obj/structure/window/reinforced/spawner/west, /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ @@ -5091,6 +5008,50 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) +"Sh" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521" + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 1 + }, +/obj/machinery/door/airlock/grunge{ + name = "Discussion Chamber"; + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + color = "#332521" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood/ebony, +/area/ship/crew/dorm/dormtwo) "Sl" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -5112,44 +5073,31 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"Sn" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) +"So" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 10 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/ebony, +/area/ship/crew/chapel) "Sr" = ( /turf/open/floor/engine/hull, /area/ship/crew/canteen) -"Su" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/weather/dirt{ - dir = 4 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"Sz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate/hydroponics, -/obj/item/seeds/grape, -/obj/item/seeds/watermelon, -/obj/item/seeds/apple, -/obj/item/seeds/random, -/obj/item/seeds/wheat, -/turf/open/floor/wood, -/area/ship/hallway/fore) -"SD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/corner/wood{ - dir = 8 +"Ss" = ( +/obj/structure/table/wood, +/obj/item/areaeditor/shuttle, +/obj/item/nullrod, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/crew/chapel/office) "SE" = ( /obj/machinery/cryopod{ dir = 4 @@ -5180,13 +5128,21 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/crew/chapel) -"SP" = ( -/obj/structure/cable{ - icon_state = "4-8" +"SQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 6 }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/obj/structure/railing/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/item/flashlight/lantern, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "SS" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -5220,21 +5176,27 @@ }, /turf/open/floor/wood, /area/ship/crew/library) -"Tj" = ( -/obj/effect/turf_decal/weather/dirt, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +"Tc" = ( +/obj/structure/railing/wood, +/turf/open/floor/plating/ship/water, +/area/ship/crew/hydroponics) +"Te" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/canteen) +"Tf" = ( +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/canteen) +"Tl" = ( +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) -"Tr" = ( -/obj/structure/sink/greyscale{ - pixel_y = 20 - }, -/obj/structure/mirror{ - pixel_y = 28 +"Ts" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner/wood{ + dir = 8 }, -/obj/effect/turf_decal/corner/opaque/bottlegreen/diagonal, -/obj/machinery/light/small, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "Tw" = ( /obj/structure/railing/wood{ dir = 8 @@ -5245,15 +5207,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/hydroponics) -"TC" = ( -/obj/structure/railing, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/ship/bridge) "TD" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/structure/cable{ @@ -5268,6 +5221,11 @@ /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/port) +"TO" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/railing/corner/wood, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "TU" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -5278,34 +5236,11 @@ }, /turf/open/floor/wood, /area/ship/hallway/starboard) -"TV" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/canteen) -"TW" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 26 +"TX" = ( +/obj/structure/railing/corner/wood{ + dir = 8 }, -/turf/open/floor/wood, -/area/ship/hallway/starboard) -"TZ" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/cow, -/turf/open/floor/plating/grass/jungle/actuallydark, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "Ub" = ( /obj/effect/turf_decal/siding/wood{ @@ -5332,6 +5267,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/fore) +"Uj" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "Uo" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -5342,6 +5283,19 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"Uq" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521"; + dir = 10 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/ebony, +/area/ship/hallway/starboard) +"Ur" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "Uu" = ( /obj/structure/closet/emcloset/wall{ pixel_y = 32 @@ -5367,9 +5321,6 @@ }, /turf/open/floor/wood, /area/ship/hallway/port) -"UA" = ( -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "UC" = ( /obj/effect/turf_decal/industrial/loading{ dir = 8 @@ -5391,13 +5342,26 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/dorm/dormtwo) -"UH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" +"UM" = ( +/obj/effect/turf_decal/siding/wood{ + color = "#332521" + }, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood/ebony, +/area/ship/crew/chapel) +"UO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_window"; + name = "Window Shutters"; + dir = 4 }, -/obj/machinery/light, /turf/open/floor/plating, -/area/ship/engineering/electrical) +/area/ship/crew/library) "UP" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood/corner{ @@ -5425,18 +5389,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/starboard) -"Va" = ( -/obj/effect/turf_decal/weather/dirt{ - dir = 1 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, -/area/ship/crew/hydroponics) -"Vf" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/chair/wood{ - dir = 4 +"UW" = ( +/obj/structure/railing/corner/wood{ + dir = 2 }, -/turf/open/floor/plating/grass/jungle/actuallydark, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "Vh" = ( /obj/effect/decal/cleanable/dirt, @@ -5467,17 +5424,9 @@ }, /turf/open/floor/wood, /area/ship/crew/library) -"Vj" = ( -/obj/effect/turf_decal/siding/wood/corner{ - color = "#332521" - }, -/obj/structure/railing/corner/wood{ - dir = 2 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plating/dirt/jungle/dark/actuallydark, +"Vm" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/hydroponics) "Vo" = ( /obj/machinery/bookbinder, @@ -5496,6 +5445,16 @@ "VG" = ( /turf/closed/wall/r_wall, /area/ship/crew/toilet) +"VK" = ( +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 1 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "VN" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 @@ -5559,6 +5518,16 @@ }, /turf/open/floor/carpet/black, /area/ship/crew/dorm/dormtwo) +"Wl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + color = "#332521"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/ship/dirt/dark, +/area/ship/crew/hydroponics) "Wm" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -5571,10 +5540,6 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/crew/chapel) -"Wn" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "Wp" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -5601,12 +5566,46 @@ /obj/item/reagent_containers/food/snacks/honeybar, /turf/open/floor/wood, /area/ship/crew/chapel) +"Wx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"Wz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/wood, +/area/ship/hallway/fore) "WB" = ( /obj/machinery/atmospherics/pipe/layer_manifold/visible{ dir = 4 }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"WE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/wood, +/area/ship/crew/library) +"WH" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "WJ" = ( /turf/open/floor/plasteel/stairs/medium{ dir = 4 @@ -5666,29 +5665,25 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) +"Xn" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/head/beekeeper_head, +/obj/item/melee/flyswatter, +/obj/item/clothing/head/beekeeper_head, +/obj/item/melee/flyswatter, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/reagent_containers/syringe, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "Xp" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ dir = 1 }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Xv" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/poddoor{ - id = "shepherd_left_thrusters" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Xw" = ( -/obj/structure/flora/ausbushes, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) "Xz" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -5750,16 +5745,6 @@ }, /turf/open/floor/grass/fairy, /area/ship/crew/hydroponics) -"Yd" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plating, -/area/ship/engineering/electrical) "Yg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/siding/wood{ @@ -5795,10 +5780,24 @@ /obj/structure/catwalk, /turf/open/floor/plating, /area/ship/crew/canteen) -"YC" = ( -/obj/structure/destructible/tribal_torch, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) +"YD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ship/hallway/port) "YK" = ( /turf/closed/wall/r_wall, /area/ship/engineering/electrical) @@ -5838,14 +5837,16 @@ }, /obj/machinery/light_switch{ dir = 8; - pixel_x = 28; - pixel_y = -3 + pixel_x = 23; + pixel_y = -8 }, /turf/open/floor/wood/ebony, /area/ship/crew/dorm/dormtwo) -"YY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/grass/jungle/actuallydark, +"Za" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/hydroponics) "Zd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -5860,15 +5861,28 @@ }, /turf/open/floor/wood/ebony, /area/ship/bridge) -"Zq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_window"; - name = "Window Shutters" +"Zh" = ( +/obj/structure/catwalk, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 6 }, -/obj/structure/curtain/cloth/fancy, -/turf/open/floor/plating, -/area/ship/crew/canteen) +/turf/open/floor/plating/airless, +/area/ship/engineering/atmospherics) +"Zk" = ( +/obj/structure/railing/corner/wood{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) +"Zl" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/railing/corner/wood{ + dir = 8 + }, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "Zs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -5883,6 +5897,10 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/crew/chapel) +"Zz" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass/ship/jungle, +/area/ship/crew/hydroponics) "ZG" = ( /turf/closed/wall/r_wall, /area/ship/crew/canteen) @@ -5916,11 +5934,6 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/chapel) -"ZV" = ( -/obj/machinery/hydroponics/soil, -/obj/structure/railing/wood, -/turf/open/floor/plating/grass/jungle/actuallydark, -/area/ship/crew/hydroponics) (1,1,1) = {" xj @@ -5940,11 +5953,11 @@ xj xj xj xj +HI bt bt bt -bt -bt +HI xj xj xj @@ -5979,13 +5992,13 @@ xj xj xj xj -bt +HI bt fN Wv sc bt -bt +HI xj xj xj @@ -6018,7 +6031,7 @@ xj xj xj xj -bt +RT bt lZ MQ @@ -6026,7 +6039,7 @@ Sd EX jf bt -bt +HI xj xj xj @@ -6135,21 +6148,21 @@ xj xj xj xj -YA -YA +lO +lO tU uj -tE +GZ jL SL so cX xv -fO +So uj kC -Zs -Zs +rm +zX xj xj xj @@ -6173,8 +6186,8 @@ xj xj xj xj -YA -YA +lO +lO YA kw kE @@ -6190,8 +6203,8 @@ hv PD VX Zs -Zs -Zs +rm +rm xj xj xj @@ -6212,12 +6225,12 @@ xj xj xj xj -YA +lO YA oo Ym Cj -Cg +iZ hv yq Wt @@ -6225,14 +6238,14 @@ rI yh cW ux -jC +oq hv Wg yg UE bi Zs -Zs +rm xj xj xj @@ -6255,21 +6268,21 @@ xj YA qL qE -vE -Ck -xL +eW +yl +Ss hv -Av +Rv cd Kv Wm Zx hb -ks +UM hv -DD +vx Pe -Cz +bS YU ln Zs @@ -6286,14 +6299,14 @@ xj xj xj Uf -go +Do aM aM Uf xj tU tU -el +gY Et Et Et @@ -6311,14 +6324,14 @@ eM eM eM eM -KE +Sh kC kC xj YK -Yd -Yd -sK +Oe +Oe +ax YK xj "} @@ -6326,9 +6339,9 @@ xj xj xj Uf -Xv -Xv -Xv +FF +FF +FF Uf xj cE @@ -6338,7 +6351,7 @@ Ux Ux Ux rX -Mq +Ms pw ha td @@ -6346,7 +6359,7 @@ Ei LL Pq uD -eI +Uq Pv nQ JG @@ -6356,9 +6369,9 @@ TU kc xj YK -rM -rM -rM +rv +rv +rv YK xj "} @@ -6408,12 +6421,12 @@ DC tQ iH iH -SP +qM Uf xj cE -wK -eB +FQ +dT ug ug nY @@ -6431,7 +6444,7 @@ Mh Mh xF xF -xU +de FL kc xj @@ -6439,7 +6452,7 @@ YK if eC bx -UH +Ae YK "} (14,1,1) = {" @@ -6450,7 +6463,7 @@ Xp br QH Uf -lQ +qG cE qU CR @@ -6459,19 +6472,19 @@ NV FY KJ Ak -oe -Mb -wR +Xn +TX +OS bj -oK -wh -wh -wh -wh -wh -em +gr +lh +lh +lh +lh +lh +gp xF -TW +mP FL kc xj @@ -6500,30 +6513,30 @@ NX XH XY hs -CW -wR -wR -Wn -UA -nJ -Vf -uL -hV -UA +qj +OS +OS +Vm +JL +ne +jz +Cf +oY +JL xF PU FL kc kc YK -qB +ww uS uS zP YK "} (16,1,1) = {" -aS +Zh KS Uo SX @@ -6539,17 +6552,17 @@ eT NM Ql Jt -gd -nI -wR +HP +TO +OS bj -lY -UA -rB -hj -yz -rB -OW +Lx +JL +av +Pw +QO +av +pl xF vu UV @@ -6570,33 +6583,33 @@ VN iH lM dM -vy +cZ xP Qh -PC +YD ug -ji -HM -Pu -Pr -Dn -Gx +az +Ho +NN +Nd +VK +kH CP qX -vN -YC -CZ -CZ -zy -CZ -Wn +Kg +tL +NH +NH +oX +NH +Vm xF RL CU kp -Ov +Gc mw -hm +Iw Ip fS Ky @@ -6610,26 +6623,26 @@ Rf Ig Qb dM -wx +lu DI MK Eu -Wn -UA -Wn -Nr -UA -wd -kj +Vm +JL +Vm +rn +JL +bQ +Tc Qr bj XL -wd -sC -wh -wh -wh -UA +bQ +Eo +lh +lh +lh +JL xF xF Xz @@ -6648,36 +6661,36 @@ Uf Uf bM WB -KU +Eb dM dM Uu iT -UA -UA -Nr -UA -HT -wd -wd -AY -Ne -pD -pH -BO -wd -kK -HT -UA -UA -kb +JL +JL +rn +JL +Ur +bQ +bQ +gj +Wl +Cs +ds +sr +bQ +nx +Ur +JL +JL +AP wo Sl Lf eK -NI +lS fx -rm +xs SE Dy Dy @@ -6686,39 +6699,39 @@ Dy xj xj Uf -Ju +yj pc md GD dM IF -UA -OW -lk -wR -TZ +JL +pl +dm +OS +ek bj cJ SG -Fa -UA -UA -UA -fe +MS +JL +JL +JL +cr pZ -ED +BT qX -YY -wR -SD +vn +OS +Ts hM Fq FL mB -Jd +jw xg pW -wV +Ix Dy xj "} @@ -6726,36 +6739,36 @@ xj xj xj Uf -iJ +Ez jS QI ii PE DW -YY -xu -YY -wR +vn +Fx +vn +OS qX bj -wR +OS bj -iv -UA -wb -UA -lx +DT +JL +Jv +JL +Za qX -sz -wR -sz -rH -sz +Tl +OS +Tl +yn +Tl pj Rg -Rs +sL mB -ew +cB mB mB mB @@ -6772,25 +6785,25 @@ uq ti dM tp -YY -UA -Qa -UA -wR -sz +vn +JL +Ob +JL +OS +Tl ow XN -lA -UA -UA -UA -Vj +rJ +JL +JL +JL +gn XN MC -xu +Fx qX -UA -GN +JL +UW hw Vh FL @@ -6812,32 +6825,32 @@ yX Qv dM QZ -LV -QD -uL -Nr -sz -Sn -wd -wd -mV -dz -fY -FJ -Fu -wd -wh -UA -wh -UA -ZV +EE +oZ +Cf +rn +Tl +eb +bQ +bQ +Qn +LG +sl +Hb +SQ +bQ +lh +JL +lh +JL +Nc wo PP iW fz DL wY -rS +xi Dy Dy xj @@ -6851,26 +6864,26 @@ Qv Qv Qv dM -vg -Va -HE -DF -Nr -Tj -wd -wd -fJ -kj +FM +Uj +OZ +Mj +rn +wy +bQ +bQ +fb +Tc JV bj oP -Jj -Nr -wh -UA -wh -Sn -fk +pY +rn +lh +JL +lh +eb +Zl oL Xg zL @@ -6891,29 +6904,29 @@ Uf dM dM dM -AZ -wR -CZ -CZ -ej +AW +OS +NH +NH +hn MV -wd -Jj -wd -Gx +bQ +pY +bQ +kH Ca -sz +Tl Jg -YC -UA -cO -UA -wh -Wn -wh +tL +JL +kx +JL +lh +Vm +lh oL pG -Rs +sL mB Gy mB @@ -6928,34 +6941,34 @@ xj xj xj am -fJ -wd -gv -LV -lY -du -UA +fb +bQ +MI +EE +Lx +eh +JL HQ yT MV -wd -wd -jn -sz +bQ +bQ +Zk +Tl bj -Mb -UA -UA -wh -Sn -wh -UA -wh +TX +JL +JL +lh +eb +lh +JL +lh oL pG FL mB -yk +Wx ai Dy xj @@ -6968,28 +6981,28 @@ xj xj xj am -wd -Jj -kj +bQ +pY +Tc rw oP -fJ -wd -wd +fb +bQ +bQ HQ yT MV -cM -UA -UA -sz -wR -UA -UA -hF -UA -Nr -UA +Jf +JL +JL +Tl +OS +JL +JL +Zz +JL +rn +JL oL oL pG @@ -7008,34 +7021,34 @@ xj xj xj am -fn -fJ -kj +Cu +fb +Tc rw oP -wd -wd -wd -wd +bQ +bQ +bQ +bQ HQ -ej -Xw -UA -kz -wR -wR -KZ -UA -Nr -yG -Wn -UA +hn +NZ +JL +zG +OS +OS +RN +JL +rn +yr +Vm +JL oL JH YS Qj RH -No +CL lT VG xj @@ -7049,33 +7062,33 @@ xj xj am am -lk -kj +dm +Tc Qr tm -wd -wd -wd -UA -sz -sz -sz -UA -Nr -Su -UA -xn -Wn -UA -UA -UA +bQ +bQ +bQ +JL +Tl +Tl +Tl +JL +rn +PT +JL +WH +Vm +JL +JL +JL oL oL PU Rd FL OM -MB +Ku VG VG xj @@ -7089,18 +7102,18 @@ xj xj xj am -Nr -Mb -db -MO -Lg -Mw -TV -UA -Wn -wR -wR -UA +rn +TX +fP +wH +gD +OD +vQ +JL +Vm +OS +OS +JL EU Ke oL @@ -7115,7 +7128,7 @@ QW Rd wz OM -Tr +Jc VG xj xj @@ -7129,16 +7142,16 @@ xj xj xj ZG -FB -xh -rl -db -rl -db -vC -Nr -wR -sz +Te +Cx +Tf +fP +Tf +AT +uW +rn +OS +Tl KW qV OX @@ -7152,10 +7165,10 @@ Df oy hy Gq -Ew +ad uA OM -uz +Ni VG xj xj @@ -7170,15 +7183,15 @@ xj xj ZG ZG -Pi -rl -db -rl -rl -zJ +gf +Tf +fP +Tf +Tf +jk KW GF -Sz +Fk pB Ia rb @@ -7186,8 +7199,8 @@ ZQ wW If qx -cV -Cw +jo +Wz Dp Xd pE @@ -7219,20 +7232,20 @@ cw IW pO Gr -Lj -Lj +gI +gI Gr -nB +ym Gr -Lj -Lj +gI +gI Gr pE dX LD qC qC -aV +oG Vi zH cf @@ -7258,7 +7271,7 @@ QB cK sH pO -oJ +IK sk cY bb @@ -7274,7 +7287,7 @@ sa sa UD HR -Mf +aq cf xj xj @@ -7288,17 +7301,17 @@ xj xj xj xj -CY +Nh HF Xm xG -lI +PG ND -PK -ts +aK +BC AA pO -TC +nP Rm LH PM @@ -7306,7 +7319,7 @@ fl vi jl Zd -CE +oW pE dX hg @@ -7338,7 +7351,7 @@ pO pO iG pO -Hx +mx RQ Hp RQ @@ -7346,7 +7359,7 @@ mR RQ xd RQ -we +hZ pE dX vv @@ -7354,7 +7367,7 @@ HN HN jA Tb -JN +WE cf xj xj @@ -7370,15 +7383,15 @@ xj xj Sr ZG -qi -iS +eA +Or pO ed oh VR Mm ZG -Lj +gI Lj DY mU @@ -7386,7 +7399,7 @@ Qi Kc qr Lj -Lj +gI cf pE KF @@ -7413,22 +7426,22 @@ xj ZG ZG pO -PF +OO at uY -pi +QC ZG xj +gI Lj -Lj -eN +JO wn -Dq -Lj +wa Lj +gI xj cf -Ev +eo cn tn Mo @@ -7460,11 +7473,11 @@ QE ZG xj xj -Lj -Lj -Lj -Lj -Lj +bh +bh +bh +bh +bh xj xj cf @@ -7493,10 +7506,10 @@ xj xj xj ZG -Zq -Zq -Zq -Zq +oO +oO +oO +oO ZG xj xj @@ -7508,10 +7521,10 @@ xj xj xj cf -ct -ct -ct -ct +Cq +UO +UO +UO cf xj xj diff --git a/_maps/shuttles/shiptest/independent_shetland.dmm b/_maps/shuttles/shiptest/independent_shetland.dmm index d9627401d75a..d77ee86facd3 100644 --- a/_maps/shuttles/shiptest/independent_shetland.dmm +++ b/_maps/shuttles/shiptest/independent_shetland.dmm @@ -1,4 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "ac" = ( /obj/structure/cable{ icon_state = "1-2" @@ -24,6 +31,13 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"ag" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/table{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "al" = ( /obj/structure/cable{ icon_state = "1-2" @@ -35,6 +49,11 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/fore) +"an" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/carpet/blue, +/area/ship/bridge) "as" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, @@ -48,6 +67,14 @@ /obj/effect/landmark/start/lieutenant, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"aG" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) +"aJ" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/starboard) "aK" = ( /obj/structure/cable{ icon_state = "1-2" @@ -60,20 +87,35 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"aT" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ +"aQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/door/poddoor{ - id = "amogusthrusters" +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"aU" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + target_pressure = 500 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "aX" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 5 @@ -81,25 +123,6 @@ /obj/item/wrench, /turf/open/floor/plating, /area/ship/hallway/port) -"aY" = ( -/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"bd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/catwalk/over/plated_catwalk, -/turf/open/floor/plating, -/area/ship/hallway/starboard) "bf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -122,46 +145,52 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/starboard) -"bn" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 6 +"by" = ( +/obj/structure/railing, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"bE" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/port) +"bI" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/mirror{ - pixel_x = 25 +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"bJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"bF" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - target_pressure = 500 +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"bH" = ( -/obj/structure/cable{ - icon_state = "0-2" +/obj/effect/turf_decal/number/five{ + dir = 8 }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/corner/opaque/neutral/half, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) +/turf/open/floor/plating, +/area/ship/engineering/engine) "bL" = ( /turf/open/floor/plasteel/patterned, /area/ship/crew/toilet) -"bU" = ( -/obj/structure/mirror{ - pixel_y = 32 +"bM" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/ship/crew/dorm) +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "bW" = ( /obj/effect/turf_decal/atmos/oxygen, /turf/open/floor/engine/o2, @@ -188,15 +217,16 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/hallway/fore) -"cl" = ( -/obj/item/radio/intercom{ - pixel_y = 24 +"ck" = ( +/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ + dir = 1 }, -/obj/machinery/vending/security/wall{ - pixel_x = 25 +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 }, -/turf/open/floor/wood, -/area/ship/security) +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "co" = ( /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/port) @@ -206,16 +236,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew/dorm) -"cA" = ( -/obj/machinery/computer/helm{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/neutral/half{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "cL" = ( /obj/structure/cable{ icon_state = "1-2" @@ -234,43 +254,10 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/medical) -"cV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/computer/cryopod{ - pixel_y = 25 - }, -/obj/structure/dresser, -/turf/open/floor/wood, -/area/ship/crew/dorm) -"dd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/suit_storage_unit/independent/mining/eva, -/turf/open/floor/plasteel/tech/techmaint, +"cP" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/patterned, /area/ship/cargo) -"dh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering/engine) "dl" = ( /obj/structure/catwalk, /turf/open/floor/plating/airless, @@ -279,43 +266,22 @@ /obj/machinery/atmospherics/components/binary/valve/digital, /turf/open/floor/plating, /area/ship/hallway/starboard) +"dp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/hallway/starboard) "dr" = ( /turf/open/floor/wood, /area/ship/crew/dorm) -"dt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/neutral/half{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "dw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/ship/crew/dorm) -"dA" = ( -/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/public/glass{ - name = "Fore Hall" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"dC" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) "dE" = ( /obj/effect/turf_decal/corner/opaque/white/mono, /turf/open/floor/plasteel/mono/white, @@ -328,63 +294,25 @@ }, /turf/open/floor/wood, /area/ship/crew/dorm) -"dI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"dK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/port) -"dT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only{ +"dO" = ( +/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" - }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"dY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, /area/ship/hallway/fore) +"dV" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "ea" = ( /obj/machinery/holopad/emergency/command, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"ec" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm) "ee" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/airlock/public/glass{ @@ -400,29 +328,25 @@ /obj/machinery/ore_silo, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"eh" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + dir = 4; + id = "amoguswindows" + }, +/turf/open/floor/plating, +/area/ship/bridge) "ei" = ( /obj/machinery/power/port_gen/pacman/super, /obj/structure/cable/yellow, /obj/effect/turf_decal/industrial/hatch, /turf/open/floor/plating, /area/ship/engineering/engine) -"eo" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" - }, -/obj/machinery/door/poddoor{ - id = "amogusthrusters" - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) +"en" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "eq" = ( /obj/structure/cable{ icon_state = "1-4" @@ -450,36 +374,30 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"et" = ( -/obj/machinery/door/poddoor{ - id = "amoguswindows" - }, -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/crew/canteen) +"es" = ( +/obj/structure/table, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) "ev" = ( /turf/open/floor/plasteel/stairs, /area/ship/hallway/fore) -"eJ" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"eB" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) +"eE" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"eI" = ( +/obj/effect/turf_decal/miskilamo_big/one{ dir = 8 }, -/obj/machinery/door/airlock/public/glass{ - name = "Cargo Bay" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"eN" = ( -/obj/item/stack/sheet/mineral/plasma/fifty, -/obj/structure/closet/crate, -/obj/item/radio/intercom{ - pixel_y = 24 - }, /turf/open/floor/plating, /area/ship/engineering/engine) "eV" = ( @@ -496,6 +414,21 @@ dir = 1 }, /area/ship/cargo) +"eZ" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "amoguswindows" + }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"fa" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "fe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -507,20 +440,21 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) -"ff" = ( +"fg" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced/spawner/north, /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner/north, /obj/machinery/door/window/eastleft{ name = "Engine Access" }, /obj/machinery/door/poddoor{ + dir = 4; id = "amogusthrusters" }, /turf/open/floor/plating, -/area/ship/hallway/port) +/area/ship/hallway/starboard) "fh" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, @@ -556,20 +490,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/crew/toilet) -"fr" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/borderfloor, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/folder/white, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) "ft" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 @@ -599,19 +519,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/fore) -"fE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/structure/closet/crate/trashcart, -/obj/item/storage/bag/trash, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) "fF" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/yellow, @@ -629,33 +536,12 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/port) -"fK" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/closet/cabinet, -/obj/item/clothing/under/utility/skirt, -/obj/item/clothing/under/utility/skirt, -/obj/item/clothing/under/utility/skirt, -/obj/item/clothing/under/utility, -/obj/item/clothing/under/utility, -/obj/item/clothing/under/utility, -/turf/open/floor/wood, -/area/ship/crew/dorm) "fM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/layer2{ dir = 1 }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/starboard) -"fN" = ( -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) "fQ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -666,10 +552,42 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/hallway/fore) +"fT" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "amogusthrusters" + }, +/turf/open/floor/plating, +/area/ship/hallway/starboard) +"gj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "gA" = ( /obj/effect/turf_decal/corner/opaque/neutral/half, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"gC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/white/mono, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "gF" = ( /obj/structure/cable{ icon_state = "2-8" @@ -693,15 +611,11 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/toilet) -"gN" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) +"gK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "gT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/layer2, /turf/open/floor/plasteel/tech/techmaint, @@ -729,12 +643,23 @@ /obj/effect/turf_decal/corner/opaque/red/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"he" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 +"hb" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 }, -/turf/open/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, /area/ship/engineering/atmospherics) +"hd" = ( +/obj/machinery/computer/security, +/obj/machinery/light/small/directional/north, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white/half, +/turf/open/floor/plasteel/dark, +/area/ship/security) "hk" = ( /obj/machinery/advanced_airlock_controller{ pixel_x = 25 @@ -781,21 +706,11 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"hv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/obj/machinery/button/door{ - dir = 4; - id = "amogusthrusters"; - name = "Thruster Lockdown"; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/starboard) +"ht" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "hx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -812,46 +727,24 @@ /obj/machinery/atmospherics/components/binary/valve/digital, /turf/open/floor/plating, /area/ship/hallway/port) -"hW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +"hJ" = ( +/obj/structure/mirror{ + pixel_y = 23 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/catwalk/over, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"hM" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plating, -/area/ship/hallway/fore) -"ib" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ +/area/ship/hallway/port) +"hU" = ( +/obj/effect/turf_decal/miskilamo_big/four{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"ie" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) +/turf/open/floor/plating, +/area/ship/engineering/engine) "ik" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -862,15 +755,14 @@ /obj/item/toy/redbutton, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"im" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/number/five{ +"in" = ( +/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "ip" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 @@ -881,12 +773,10 @@ /obj/structure/catwalk, /turf/open/floor/plating, /area/ship/external) -"iu" = ( -/obj/machinery/light{ - dir = 4 - }, +"iw" = ( /obj/machinery/camera/autoname, /obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) "iM" = ( @@ -898,56 +788,11 @@ }, /turf/open/floor/plating, /area/ship/hallway/port) -"iO" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/corner/opaque/bottlegreen/full, -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/toy/plush/hornet/gay{ - pixel_x = 12; - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/ship/security) -"iP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/catwalk/over/plated_catwalk, -/turf/open/floor/plating, -/area/ship/hallway/fore) "iQ" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/ship/hallway/port) -"iS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -24 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) "iV" = ( /turf/closed/wall, /area/ship/engineering/atmospherics) @@ -965,16 +810,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/port) -"jf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) "jh" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/suit_storage_unit/independent/engineering, @@ -1040,50 +875,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/hallway/fore) -"jQ" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"jR" = ( -/obj/effect/turf_decal/corner/opaque/neutral/half{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"jV" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/east, -/obj/effect/turf_decal/corner/opaque/bottlegreen/full, -/turf/open/floor/plasteel, -/area/ship/security) -"jW" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "kh" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/firedoor/border_only{ @@ -1095,6 +886,25 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) +"kj" = ( +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"kl" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/railing, +/turf/open/floor/plating, +/area/ship/hallway/fore) "ko" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1108,6 +918,16 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/fore) +"kq" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) "ks" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -1149,15 +969,6 @@ "kD" = ( /turf/closed/wall, /area/ship/engineering/engine) -"kK" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/table, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) "kO" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/donkpockets, @@ -1187,23 +998,31 @@ /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plasteel, /area/ship/hallway/starboard) +"kS" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -24 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) "kV" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1 }, /turf/open/floor/plating/airless, /area/ship/external) -"lj" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 10 +"kY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 17 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +/obj/structure/dresser, +/turf/open/floor/wood, +/area/ship/crew/dorm) "lo" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/box, @@ -1212,12 +1031,12 @@ "lp" = ( /turf/closed/wall/r_wall, /area/ship/hallway/port) -"lt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) +"ls" = ( +/obj/machinery/washing_machine, +/obj/machinery/firealarm/directional/east, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) "lx" = ( /obj/effect/turf_decal/number/two{ dir = 8 @@ -1228,6 +1047,41 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/starboard) +"lD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/number/zero{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"lE" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Cargo Bay" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "lJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1246,6 +1100,16 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/engineering/electrical) +"lL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/obj/item/pipe_dispenser, +/obj/structure/closet/crate, +/obj/item/analyzer, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "lS" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/chair/plastic{ @@ -1254,6 +1118,13 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"lV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "lX" = ( /obj/item/reagent_containers/food/snacks/canned/beans{ pixel_x = -5; @@ -1306,6 +1177,18 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) +"me" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/catwalk/over, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plating, +/area/ship/hallway/fore) "mh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -1324,19 +1207,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"mr" = ( -/obj/machinery/door/poddoor{ - id = "amoguswindows" - }, -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/hallway/port) -"ms" = ( -/obj/structure/closet/crate, -/obj/item/analyzer, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) "mt" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1347,6 +1217,38 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/grimy, /area/ship/crew/dorm) +"mD" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Cargo Bay" + }, +/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/dark, +/area/ship/cargo) +"mE" = ( +/obj/machinery/button/door{ + id = "amogusdoors"; + name = "Blast Door Control"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "amoguswindows"; + name = "Window Lockdown"; + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/turf_decal/corner/opaque/neutral/half, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "mG" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 10 @@ -1356,6 +1258,14 @@ "mH" = ( /turf/closed/wall, /area/ship/engineering/electrical) +"mN" = ( +/obj/effect/turf_decal/corner/opaque/white{ + dir = 6 + }, +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "mP" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 @@ -1378,17 +1288,15 @@ "mW" = ( /turf/open/floor/plating, /area/ship/hallway/port) -"mY" = ( -/obj/structure/cable{ - icon_state = "0-9" +"ne" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/miskilamo_big/seven{ + dir = 8 }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) -"nh" = ( -/obj/structure/railing, /turf/open/floor/plating, -/area/ship/hallway/fore) +/area/ship/engineering/engine) "nj" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1408,11 +1316,37 @@ /obj/structure/railing, /turf/open/floor/carpet/blue, /area/ship/bridge) -"nK" = ( -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) +"nH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/filingcabinet, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood, +/area/ship/security) +"nL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/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/public/glass{ + dir = 4; + name = "Canteen" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "nO" = ( /turf/closed/wall/r_wall, /area/ship/cargo) @@ -1420,27 +1354,13 @@ /obj/effect/turf_decal/box, /turf/open/floor/plating, /area/ship/cargo) -"oa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, +"oj" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/hallway/fore) -"oj" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/cargo) "ol" = ( @@ -1456,6 +1376,31 @@ /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) +"oo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/button/door{ + dir = 4; + id = "amogusthrusters"; + name = "Thruster Lockdown"; + pixel_x = -24 + }, +/obj/item/radio/intercom/directional/south, +/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, +/area/ship/bridge) "oC" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1463,6 +1408,12 @@ /obj/effect/turf_decal/corner/opaque/red/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"oD" = ( +/obj/effect/turf_decal/miskilamo_big/two{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "oM" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1483,14 +1434,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"oR" = ( -/obj/machinery/door/poddoor{ - id = "amoguswindows" - }, -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/hallway/fore) "oS" = ( /obj/machinery/door/poddoor{ id = "amogusdoors"; @@ -1516,13 +1459,11 @@ "pa" = ( /turf/closed/wall, /area/ship/medical) -"pe" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/starboard) +"pn" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "po" = ( /obj/structure/cable{ icon_state = "8-10" @@ -1548,61 +1489,35 @@ /obj/machinery/photocopier/faxmachine, /turf/open/floor/plasteel, /area/ship/security) -"ps" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/obj/item/pipe_dispenser, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"pu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/ship/security) -"pw" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "pC" = ( /obj/machinery/atmospherics/components/unary/tank/toxins, /turf/open/floor/plating, /area/ship/hallway/port) -"pH" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 +"pO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/corner/opaque/neutral/half{ + dir = 1 }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"pL" = ( -/obj/machinery/light{ - dir = 4 +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/borderfloor, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 }, -/obj/structure/railing/corner{ - dir = 8 +/obj/structure/table/glass, +/obj/machinery/door/window/eastleft{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire, +/obj/item/defibrillator/loaded, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "qb" = ( /obj/machinery/button/door{ dir = 4; @@ -1626,12 +1541,6 @@ dir = 1 }, /area/ship/cargo) -"qc" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) "qe" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, @@ -1641,41 +1550,35 @@ /obj/effect/turf_decal/industrial/warning/fulltile, /turf/open/floor/plasteel/patterned/ridged, /area/ship/hallway/starboard) -"qj" = ( -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) -"qm" = ( -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) -"qt" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Cargo Bay" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only{ +"qi" = ( +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"qx" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced/spawner, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-8" + }, +/obj/machinery/door/window/eastright{ + name = "Engine Access" }, -/obj/machinery/airalarm/all_access{ +/obj/machinery/door/poddoor{ dir = 4; - pixel_x = -25 + id = "amogusthrusters" }, -/obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/starboard) +"qj" = ( +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) +"qs" = ( +/obj/structure/closet/crate, +/obj/item/analyzer, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) "qy" = ( /obj/structure/sink{ dir = 4; @@ -1704,6 +1607,20 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) +"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, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "qJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -1713,21 +1630,20 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/starboard) -"qO" = ( -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) -"qU" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 +"qN" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) +"qP" = ( +/obj/machinery/door/poddoor{ + id = "amoguswindows" }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, /turf/open/floor/plating, -/area/ship/engineering/engine) -"qX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/area/ship/crew/dorm) +"qQ" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -1736,14 +1652,35 @@ /obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"rd" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 8 +"qR" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 10 }, -/obj/effect/turf_decal/borderfloor{ +/obj/item/folder/red, +/obj/item/folder/blue, +/obj/item/folder, +/obj/item/pen/fountain, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/ship/security) +"qY" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/ship/hallway/port) +"re" = ( +/obj/effect/turf_decal/borderfloor, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 + }, +/obj/structure/sink{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/mono/white, /area/ship/medical) "rf" = ( @@ -1762,10 +1699,6 @@ /obj/effect/turf_decal/corner/opaque/red/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"rj" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "rm" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1782,12 +1715,6 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/starboard) -"rr" = ( -/obj/effect/turf_decal/number/five{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) "ru" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -1842,21 +1769,6 @@ /obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/mono/white, /area/ship/medical) -"rM" = ( -/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/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/catwalk/over/plated_catwalk, -/turf/open/floor/plating, -/area/ship/hallway/port) "rN" = ( /obj/structure/cable{ icon_state = "1-4" @@ -1877,27 +1789,13 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/hallway/fore) -"rQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/command{ - name = "Bridge" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ +"rP" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "rT" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1919,15 +1817,17 @@ /obj/effect/turf_decal/industrial/hatch, /turf/open/floor/plating, /area/ship/engineering/engine) -"rY" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel, -/area/ship/cargo) "sd" = ( -/obj/effect/turf_decal/corner/opaque/red/mono, +/obj/effect/turf_decal/corner/opaque/blue/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"se" = ( +/obj/structure/cable{ + icon_state = "5-9" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) "sj" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 9 @@ -1941,32 +1841,22 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/cargo) -"sk" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/button/door{ - dir = 4; - id = "amogusthrusters"; - name = "Thruster Lockdown"; - pixel_x = -24 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) -"sl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"so" = ( +"sl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output, +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) +"so" = ( /obj/structure/cable{ icon_state = "6-8" }, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) +"sp" = ( +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "sr" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -1976,25 +1866,23 @@ }, /turf/open/floor/plating/airless, /area/ship/hallway/starboard) -"su" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/obj/item/radio/intercom{ - pixel_y = 24 +"ss" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/wood, -/area/ship/security) -"sw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/firealarm{ +/obj/machinery/door/airlock/public/glass{ dir = 4; - pixel_x = -25 + name = "Starboard Hall" }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) +/turf/open/floor/plasteel/dark, +/area/ship/hallway/starboard) "sA" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/chair/plastic{ @@ -2003,6 +1891,13 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"sD" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "sH" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2024,86 +1919,118 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/engine) -"sZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ +"sK" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"tt" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/ship/engineering/atmospherics) +"sN" = ( +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 8 }, +/obj/effect/turf_decal/box, +/obj/machinery/medical_kiosk, /turf/open/floor/plasteel/dark, -/area/ship/hallway/starboard) -"tw" = ( -/obj/structure/bed, -/obj/effect/turf_decal/corner/opaque/white/half{ +/area/ship/medical) +"sQ" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/effect/turf_decal/borderfloor{ +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Canteen" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"sY" = ( +/obj/machinery/camera/autoname{ dir = 4 }, -/obj/item/bedsheet/medical, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"sZ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) -"tz" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/structure/curtain/bounty, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 +/turf/open/floor/plating, +/area/ship/hallway/port) +"tj" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastright{ + name = "Engine Access" }, -/turf/open/floor/wood, -/area/ship/crew/dorm) -"tD" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" +/obj/structure/window/reinforced/spawner, +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "amogusthrusters" }, /turf/open/floor/plating, /area/ship/hallway/port) -"tK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +"tn" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/corner/opaque/neutral/half, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"to" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "amoguswindows" }, /obj/structure/window/reinforced/fulltile, /obj/structure/grille, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"tW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 +/area/ship/bridge) +"tD" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "engine fuel pump" }, -/obj/machinery/light, /turf/open/floor/plating, -/area/ship/hallway/starboard) -"ud" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ - dir = 4 - }, +/area/ship/hallway/port) +"tI" = ( +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"uf" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hall" +/area/ship/hallway/fore) +"tP" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/starboard) +"tS" = ( +/obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"tZ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/neutral/half{ + dir = 1 }, +/obj/machinery/photocopier/faxmachine/longrange, +/obj/item/radio/intercom/directional/south, /turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/area/ship/bridge) "ui" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2118,6 +2045,13 @@ /obj/machinery/door/window/eastleft, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/port) +"uk" = ( +/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "ul" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2131,24 +2065,6 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"uv" = ( -/obj/structure/table/glass, -/obj/machinery/vending/wallmed{ - pixel_x = -25 - }, -/obj/machinery/door/window/eastright, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/obj/item/defibrillator/loaded, -/turf/open/floor/plasteel/dark, -/area/ship/medical) "uy" = ( /turf/closed/wall/r_wall, /area/ship/crew/dorm) @@ -2161,13 +2077,18 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plasteel, /area/ship/cargo) -"uL" = ( -/obj/effect/turf_decal/borderfloor, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 1 +"uD" = ( +/obj/machinery/door/poddoor{ + id = "amoguswindows" }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"uP" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/ship/cargo) "uS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2181,6 +2102,24 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) +"uZ" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "amogusthrusters" + }, +/turf/open/floor/plating, +/area/ship/hallway/port) "va" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2192,13 +2131,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/engine) -"vc" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/hallway/port) "vg" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -2209,30 +2141,6 @@ /obj/effect/turf_decal/industrial/warning/fulltile, /turf/open/floor/plasteel/patterned/ridged, /area/ship/hallway/port) -"vj" = ( -/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/public/glass{ - name = "Port Hall" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) -"vk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"vn" = ( -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "vo" = ( /obj/structure/closet/crate, /obj/item/radio, @@ -2256,6 +2164,15 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"vt" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ + dir = 1 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "vv" = ( /obj/structure/chair/office{ dir = 1 @@ -2282,18 +2199,6 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/medical) -"vF" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/opaque/neutral/half{ - dir = 1 - }, -/obj/machinery/photocopier/faxmachine/longrange, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "vI" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/chair/plastic{ @@ -2308,44 +2213,40 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/port) -"vP" = ( +"vL" = ( +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, -/area/ship/hallway/port) -"vQ" = ( -/obj/structure/cable{ - icon_state = "1-4" +/area/ship/hallway/starboard) +"vN" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"vW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/hallway/fore) -"vX" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ - dir = 1 +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engine Room" }, -/obj/machinery/recharger, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"vY" = ( -/obj/machinery/door/poddoor{ - id = "amoguswindows" +/area/ship/engineering/engine) +"vP" = ( +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) +"vW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 }, -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, +/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/crew/toilet) +/area/ship/hallway/fore) "wk" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2363,15 +2264,16 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/port) -"wo" = ( -/obj/item/radio/intercom{ - pixel_y = 24 +"wp" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ - dir = 1 +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge" }, /turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/area/ship/bridge) "wr" = ( /obj/structure/cable{ icon_state = "1-4" @@ -2384,6 +2286,11 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) +"wD" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "wH" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2409,10 +2316,27 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/patterned, /area/ship/crew/toilet) -"xc" = ( -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +"xi" = ( +/obj/item/stack/sheet/mineral/plasma/fifty, +/obj/structure/closet/crate, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"xm" = ( +/obj/effect/turf_decal/corner/opaque/white{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/iv_drip, +/obj/structure/mirror{ + pixel_x = -24 }, /turf/open/floor/plasteel/mono/white, /area/ship/medical) @@ -2425,6 +2349,13 @@ }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/bridge) +"xs" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood, +/area/ship/security) "xu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2457,43 +2388,10 @@ "xQ" = ( /turf/closed/wall/r_wall, /area/ship/bridge) -"xR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"xU" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/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 = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hall" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"xY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, +"ya" = ( +/obj/machinery/light/directional/west, /turf/open/floor/plating, -/area/ship/engineering/engine) +/area/ship/hallway/fore) "yk" = ( /turf/open/floor/plating, /area/ship/hallway/starboard) @@ -2517,6 +2415,21 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"yv" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced/spawner, +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "amogusthrusters" + }, +/turf/open/floor/plating, +/area/ship/hallway/starboard) "yx" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -2535,6 +2448,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"yL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/toy/plush/hornet/gay{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ship/security) "yM" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2574,23 +2499,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"zh" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/box/syringes{ - pixel_x = -8 - }, -/obj/item/storage/box/bodybags{ - pixel_x = 8; - pixel_y = 4 - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) "zm" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2598,57 +2506,20 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) -"zn" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 1; - node1_concentration = 0.21; - node2_concentration = 0.79 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "zt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, /turf/open/floor/plasteel/patterned, /area/ship/crew/toilet) -"zv" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 10 - }, -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"zA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Hall" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/starboard) +"zD" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"zF" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "zL" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2687,18 +2558,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) -"zT" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) "Ac" = ( /obj/structure/cable{ icon_state = "2-8" @@ -2717,34 +2576,34 @@ /obj/machinery/status_display/shuttle, /turf/closed/wall, /area/ship/engineering/engine) -"Aq" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/head/hardhat/mining, -/obj/item/clothing/head/hardhat/mining, -/obj/item/clothing/head/hardhat/mining, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"Ar" = ( -/obj/effect/turf_decal/corner/opaque/neutral/half{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/computer/cargo/express{ - dir = 8 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "Az" = ( /obj/machinery/status_display/shuttle, /turf/closed/wall, /area/ship/engineering/electrical) +"AC" = ( +/obj/machinery/door/poddoor{ + id = "amoguswindows" + }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"AD" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/miskilamo_big/six{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"AF" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/structure/curtain/bounty, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/ship/crew/dorm) "AG" = ( /obj/effect/turf_decal/corner/opaque/white{ dir = 10 @@ -2770,66 +2629,42 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"AR" = ( -/obj/item/kirbyplants/dead, -/obj/effect/turf_decal/corner/opaque/neutral/three_quarters, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/analyzer, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"AX" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ +"AP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Hall" +/obj/structure/catwalk/over, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"AU" = ( +/obj/machinery/vending/security/wall{ + pixel_x = 25 }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/starboard) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood, +/area/ship/security) "Bb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"Bg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) -"Bh" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner/north, +"Bm" = ( /obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" + icon_state = "1-4" }, -/obj/machinery/door/poddoor{ - id = "amogusthrusters" +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ + dir = 5 }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Bo" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) +"Bu" = ( +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/structure/chair/office/light{ + dir = 4 }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "Bx" = ( /obj/machinery/door/poddoor{ id = "ejected"; @@ -2851,26 +2686,31 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) -"BZ" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastright{ - name = "Engine Access" - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 +"BV" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/poddoor{ - id = "amogusthrusters" +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ + dir = 10 }, -/turf/open/floor/plating, -/area/ship/hallway/port) +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "Ca" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/mopbucket, /obj/item/mop, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"Cb" = ( +/obj/effect/turf_decal/borderfloor, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 + }, +/obj/structure/table/optable, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "Cc" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2897,6 +2737,21 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input, /turf/open/floor/engine/air, /area/ship/engineering/atmospherics) +"Cp" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "amogusthrusters" + }, +/turf/open/floor/plating, +/area/ship/hallway/port) "Cr" = ( /turf/closed/wall, /area/ship/bridge) @@ -2938,6 +2793,18 @@ /obj/effect/turf_decal/atmos/air, /turf/open/floor/engine/air, /area/ship/engineering/atmospherics) +"CM" = ( +/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/structure/catwalk/over/plated_catwalk, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/ship/hallway/port) "CS" = ( /obj/machinery/air_sensor/atmos/air_tank, /turf/open/floor/engine/air, @@ -2966,28 +2833,22 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/cargo) -"Do" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 +"Dn" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"Dp" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +/obj/machinery/button/door{ + dir = 4; + id = "amogusthrusters"; + name = "Thruster Lockdown"; + pixel_x = -24 }, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/starboard) "Du" = ( /turf/open/floor/plasteel, /area/ship/hallway/fore) -"Dw" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "Dy" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ @@ -2996,9 +2857,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/port) -"DA" = ( -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "DI" = ( /obj/structure/cable{ icon_state = "1-4" @@ -3017,66 +2875,45 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"DO" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, +"Ej" = ( +/turf/open/floor/plasteel, +/area/ship/hallway/starboard) +"El" = ( /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hall" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"DS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 + icon_state = "1-8" }, -/obj/machinery/light/small{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plating, -/area/ship/engineering/engine) -"Ej" = ( -/turf/open/floor/plasteel, -/area/ship/hallway/starboard) +/area/ship/hallway/fore) "Er" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ dir = 1 }, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) -"Ew" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 9 +"Ev" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"Ex" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +/obj/structure/catwalk/over/plated_catwalk, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/ship/hallway/starboard) "Ez" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3088,35 +2925,23 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/fore) -"EB" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, +"EE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/starboard) +"EG" = ( /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/structure/cable{ + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Cargo Bay" + dir = 10 }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"EE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/starboard) +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/electrical) "EL" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/structure/table, @@ -3132,6 +2957,35 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) +"EU" = ( +/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/public/glass{ + dir = 4; + name = "Fore Hall" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"EV" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) +"EW" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/carpet/blue, +/area/ship/bridge) "EY" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -3141,12 +2995,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"EZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "Fd" = ( /obj/machinery/door/poddoor{ id = "amogusdoors"; @@ -3173,6 +3021,19 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"Fr" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/port) +"Fs" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15; + dir = 2 + }, +/turf/template_noop, +/area/template_noop) "Ft" = ( /obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ dir = 1 @@ -3182,16 +3043,46 @@ }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/bridge) -"FG" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - dir = 8 +"Fv" = ( +/obj/machinery/door/poddoor{ + id = "amoguswindows" }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/crew/toilet) +"FD" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 10 + }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, -/area/ship/bridge) +/area/ship/crew/canteen) "FI" = ( /turf/closed/wall/r_wall, /area/ship/crew/toilet) +"FM" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Fore Hall" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "FP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -3205,20 +3096,37 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/fore) -"FX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/light/small{ - dir = 1 +"FR" = ( +/obj/effect/turf_decal/corner/opaque/neutral/half{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) -"Gb" = ( -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 6 +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/computer/crew{ + dir = 8; + icon_state = "computer-right" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"FV" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 4 + }, +/obj/structure/bed, +/obj/machinery/vending/wallmed{ + pixel_x = -25 }, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 4 + }, +/obj/item/bedsheet/medical, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +/area/ship/medical) "Gc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -3228,27 +3136,23 @@ "Gd" = ( /turf/open/floor/plating, /area/ship/hallway/fore) -"Ge" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/door/poddoor{ - id = "amoguswindows" - }, -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"Gg" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/starboard) "Gs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, /turf/open/floor/plating, /area/ship/hallway/fore) +"Gv" = ( +/obj/effect/turf_decal/corner/opaque/white/half, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/small/directional/north, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "GB" = ( /obj/effect/turf_decal/corner/opaque/white{ dir = 10 @@ -3268,28 +3172,37 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"GJ" = ( -/obj/structure/cable{ - icon_state = "0-2" +"GN" = ( +/obj/effect/turf_decal/borderfloor, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = 5; + pixel_y = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/item/reagent_containers/glass/bottle{ + list_reagents = list(/datum/reagent/medicine/thializid=30); + name = "thializid bottle" + }, +/obj/item/reagent_containers/syringe, +/obj/machinery/door/window/eastleft{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) +"GP" = ( +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/patterned, -/area/ship/cargo) +/area/ship/crew/toilet) "GS" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, /turf/open/floor/plating, /area/ship/hallway/starboard) -"GT" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "GV" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -3298,18 +3211,11 @@ /obj/effect/turf_decal/industrial/warning/fulltile, /turf/open/floor/plasteel/patterned/ridged, /area/ship/hallway/starboard) -"Hb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 10 - }, +"GY" = ( +/obj/machinery/camera/autoname, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) +/area/ship/hallway/port) "He" = ( /obj/structure/cable{ icon_state = "2-4" @@ -3322,12 +3228,49 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/starboard) -"Hh" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 +"Hj" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/atmos{ + dir = 4; + name = "Atmospherics" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"Hm" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/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 = 4 }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Fore Hall" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "Hn" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, @@ -3350,21 +3293,13 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering/electrical) -"HB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"HC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ +"HG" = ( +/obj/effect/turf_decal/corner/opaque/neutral/half{ dir = 1 }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "HH" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ @@ -3391,55 +3326,19 @@ /obj/effect/turf_decal/industrial/hatch, /turf/open/floor/plating, /area/ship/engineering/engine) -"HS" = ( -/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/public/glass{ - name = "Canteen" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"HU" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/structure/window/reinforced/spawner/north, +"HP" = ( /obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor{ - id = "amogusthrusters" + icon_state = "0-2" }, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, +/area/ship/engineering/engine) +"HV" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/suit_storage_unit/independent/engineering, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/mono/dark, /area/ship/hallway/starboard) -"HX" = ( -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"Ih" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "Io" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/firedoor/border_only{ @@ -3451,12 +3350,52 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/dorm) +"Ip" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 9 + }, +/obj/effect/turf_decal/corner/opaque/white, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "Ir" = ( /obj/structure/closet/crate, /obj/item/analyzer, /obj/effect/turf_decal/box, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"Iw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) +"Iz" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + dir = 4; + name = "Security Office" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) "IB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3466,14 +3405,9 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"IG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/obj/structure/railing, -/turf/open/floor/plating, -/area/ship/hallway/fore) +"ID" = ( +/turf/closed/wall, +/area/ship/external) "IK" = ( /obj/structure/closet/crate, /obj/item/storage/toolbox/mechanical, @@ -3496,15 +3430,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/port) -"IQ" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "IR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3515,26 +3440,14 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/engine) -"IU" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 8 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) -"Jc" = ( -/obj/machinery/door/poddoor{ - id = "amoguswindows" +"Jm" = ( +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/bridge) +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel, +/area/ship/security) "Jo" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3549,16 +3462,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/hallway/fore) -"JA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/corner/opaque/white/three_quarters{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) "JD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -3571,16 +3474,6 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/atmospherics) -"JF" = ( -/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "JJ" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3590,22 +3483,6 @@ }, /turf/open/floor/plating, /area/ship/hallway/starboard) -"JK" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - 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 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) "JM" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, @@ -3634,52 +3511,32 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel/dark, /area/ship/hallway/starboard) -"JV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) "JW" = ( -/obj/effect/turf_decal/corner/opaque/red/mono, /obj/effect/decal/cleanable/blood/drip, /mob/living/simple_animal/bot/cleanbot/medbay, +/obj/effect/turf_decal/corner/opaque/blue/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) "Ka" = ( -/obj/machinery/status_display/shuttle, -/turf/closed/wall, -/area/ship/crew/canteen) -"Kb" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = "amoguswindows"; dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/engine) -"Kg" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/borderfloor, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 1 +/turf/open/floor/plating, +/area/ship/hallway/fore) +"Kf" = ( +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) +"Kh" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/starboard) "Kl" = ( /obj/structure/cable, /obj/machinery/power/floodlight, @@ -3690,18 +3547,18 @@ /obj/structure/railing, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Ko" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/corner/opaque/neutral/half{ - dir = 4 +"Kp" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/catwalk/over, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/ship/hallway/fore) "Kq" = ( /obj/machinery/suit_storage_unit/cmo{ suit_type = /obj/item/clothing/suit/space/hardsuit/medical @@ -3713,12 +3570,42 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/medical) -"KC" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +"Kv" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) +"Ky" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 1; + node1_concentration = 0.21; + node2_concentration = 0.79 }, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) +"KG" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/closet/secure_closet/true_lieutenant, +/turf/open/floor/carpet/blue, +/area/ship/bridge) +"KN" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/closet/cabinet, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility, +/turf/open/floor/wood, +/area/ship/crew/dorm) "KS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3731,29 +3618,24 @@ "KT" = ( /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Lb" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/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 +"KZ" = ( +/obj/structure/railing/corner{ + dir = 8 }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Lh" = ( -/obj/effect/turf_decal/borderfloor, +/area/ship/hallway/fore) +"Lc" = ( /obj/effect/turf_decal/corner/opaque/white/half{ - dir = 1 + dir = 8 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 4 }, +/obj/machinery/light/directional/east, /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop{ - dir = 1 + dir = 8 }, /turf/open/floor/plasteel/mono/white, /area/ship/medical) @@ -3762,6 +3644,26 @@ dir = 8 }, /area/ship/bridge) +"Lp" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engine Room" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/engine) "Lr" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -3783,6 +3685,23 @@ /obj/structure/railing, /turf/open/floor/plating, /area/ship/hallway/fore) +"Lt" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"Lu" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plating, +/area/ship/engineering/electrical) "LB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -3793,6 +3712,21 @@ /obj/item/clothing/mask/gas/explorer, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) +"LC" = ( +/obj/effect/turf_decal/miskilamo_big/three{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"LL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor{ + dir = 4; + id = "amoguswindows" + }, +/turf/open/floor/plating, +/area/ship/bridge) "LO" = ( /turf/template_noop, /area/template_noop) @@ -3812,14 +3746,6 @@ }, /turf/open/floor/plating, /area/ship/hallway/starboard) -"Md" = ( -/obj/machinery/door/poddoor{ - id = "amoguswindows" - }, -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/crew/dorm) "Mg" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -3839,14 +3765,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) -"Mn" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/closet/secure_closet/true_lieutenant, -/turf/open/floor/carpet/blue, -/area/ship/bridge) "Mt" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ @@ -3879,37 +3797,39 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) -"Mx" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/starboard) "My" = ( /obj/structure/railing, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"MB" = ( -/obj/machinery/power/smes/shuttle/precharged{ +"MG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"MH" = ( +/obj/effect/turf_decal/corner/opaque/neutral/three_quarters, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"MJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner, -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/door/poddoor{ - id = "amogusthrusters" +/obj/machinery/door/airlock/atmos{ + dir = 4; + name = "Atmospherics" }, -/turf/open/floor/plating, -/area/ship/hallway/port) +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "MN" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -3927,37 +3847,6 @@ /obj/effect/turf_decal/corner/opaque/white/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) -"MV" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"MW" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "MX" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen/full, /obj/structure/closet/secure_closet/wall{ @@ -3973,6 +3862,13 @@ /obj/item/ammo_box/magazine/co9mm, /turf/open/floor/plasteel, /area/ship/security) +"Nb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "Nd" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -3982,6 +3878,25 @@ }, /turf/open/floor/plating/airless, /area/ship/hallway/port) +"Ne" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/hallway/port) +"Nf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "Nh" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -3997,16 +3912,23 @@ /obj/item/areaeditor/shuttle, /turf/open/floor/plating, /area/ship/engineering/electrical) -"Nl" = ( -/obj/effect/turf_decal/number/six{ - dir = 8 +"Nk" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/effect/landmark/start/station_engineer, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plating, -/area/ship/engineering/engine) +/area/ship/engineering/electrical) "Nv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel, /area/ship/hallway/port) +"Nw" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/ship/cargo) "Ny" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, @@ -4022,74 +3944,9 @@ /obj/effect/turf_decal/industrial/warning/fulltile, /turf/open/floor/plasteel/patterned/ridged, /area/ship/hallway/port) -"NA" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/security{ - name = "Security Office" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "NB" = ( /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"NH" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/eastleft, -/obj/item/reagent_containers/glass/bottle/formaldehyde{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle{ - list_reagents = list(/datum/reagent/medicine/thializid=30); - name = "thializid bottle" - }, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/item/storage/belt/medical, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"NM" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/engine) "NQ" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ @@ -4117,23 +3974,42 @@ }, /turf/open/floor/plating, /area/ship/engineering/electrical) -"NX" = ( -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "NY" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, -/obj/effect/turf_decal/industrial/hatch, +/obj/effect/turf_decal/industrial/hatch, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"NZ" = ( +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Oh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/miskilamo_big/eight{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/engineering/engine) -"NZ" = ( -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) +"Ok" = ( +/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Ot" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/corner/opaque/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/west, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "Ov" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 9 @@ -4145,45 +4021,49 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/medical) -"Ox" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "OD" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"OF" = ( -/obj/structure/cable{ - icon_state = "4-8" +"OE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/obj/item/radio/intercom{ - pixel_y = 24 +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/structure/closet/crate/trashcart, +/obj/item/storage/bag/trash, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) +"OG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/effect/landmark/start/station_engineer, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, -/area/ship/engineering/electrical) -"OH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ship/hallway/starboard) +/area/ship/engineering/atmospherics) "OI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, /turf/open/floor/plasteel/patterned, /area/ship/crew/toilet) +"OK" = ( +/obj/machinery/computer/atmos_control/tank/oxygen_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "OM" = ( /turf/closed/wall, /area/ship/crew/toilet) @@ -4194,18 +4074,6 @@ /obj/effect/turf_decal/industrial/warning/fulltile, /turf/open/floor/plasteel/patterned/ridged, /area/ship/hallway/starboard) -"Pb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/corner/opaque/neutral/half{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/effect/turf_decal/borderfloor, -/obj/effect/turf_decal/corner/opaque/white/half{ - dir = 1 - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) "Pd" = ( /obj/structure/cable{ icon_state = "1-8" @@ -4228,6 +4096,29 @@ dir = 1 }, /area/ship/hallway/fore) +"Po" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/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/public/glass{ + dir = 4; + name = "Port Hall" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) "Pp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -4244,45 +4135,74 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"PA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "PE" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/corner/opaque/neutral/half, /obj/effect/turf_decal/box, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"PF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating, +/area/ship/hallway/starboard) +"PH" = ( +/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/public/glass{ + dir = 4; + name = "Cargo Bay" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "PM" = ( /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/engine) -"PY" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white/half, -/obj/effect/turf_decal/borderfloor{ - dir = 1 +"PQ" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) +"PR" = ( +/obj/effect/turf_decal/miskilamo_big/five{ + dir = 8 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 +/turf/open/floor/plating, +/area/ship/engineering/engine) +"PT" = ( +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "Qb" = ( /turf/closed/wall/r_wall, /area/ship/engineering/engine) -"Qc" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/ship/hallway/fore) "Qf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -4292,6 +4212,11 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"Qg" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "Qk" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/firedoor/border_only{ @@ -4303,18 +4228,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"Qv" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 10 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +"Qq" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Qx" = ( /obj/machinery/power/terminal, /obj/structure/cable/yellow{ @@ -4332,34 +4249,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"QL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"QN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/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/public/glass{ - name = "Port Hall" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) "QP" = ( /obj/structure/cable{ icon_state = "4-10" @@ -4385,6 +4274,22 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/atmospherics) +"QY" = ( +/obj/machinery/computer/helm{ + dir = 8; + icon_state = "computer-middle" + }, +/obj/effect/turf_decal/corner/opaque/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"Rb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "Rg" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4392,25 +4297,29 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plating, /area/ship/engineering/engine) -"Rh" = ( +"Rl" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/catwalk/over/plated_catwalk, -/obj/item/radio/intercom{ - pixel_y = 24 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Canteen" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "Rq" = ( /obj/structure/closet/crate/engineering/electrical, /obj/item/clothing/gloves/color/yellow, @@ -4443,19 +4352,33 @@ /obj/effect/turf_decal/corner/opaque/neutral/half, /turf/open/floor/plasteel/dark, /area/ship/hallway/starboard) -"RS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 +"RR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/turf/open/floor/plasteel/patterned, +/obj/effect/turf_decal/box, +/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) "RY" = ( /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/hallway/fore) +"Sh" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Canteen" + }, +/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/dark, +/area/ship/crew/canteen) "Si" = ( /obj/machinery/sleeper, /obj/effect/turf_decal/corner/opaque/white/half, @@ -4474,9 +4397,23 @@ /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/obj/effect/landmark/start/head_of_personnel, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Sq" = ( +/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/public/glass{ + dir = 4; + name = "Port Hall" + }, /turf/open/floor/plasteel/dark, -/area/ship/bridge) +/area/ship/hallway/port) "Sr" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ dir = 1 @@ -4488,6 +4425,25 @@ /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) +"Su" = ( +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 8 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/folder/white, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) +"Sw" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "SB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4499,12 +4455,6 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/fore) -"SJ" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/suit_storage_unit/independent/engineering, -/turf/open/floor/plasteel/mono/dark, -/area/ship/hallway/starboard) "SN" = ( /obj/machinery/power/terminal{ dir = 8 @@ -4544,35 +4494,17 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"SY" = ( -/obj/machinery/button/door{ - id = "amogusdoors"; - name = "Blast Door Control"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "amoguswindows"; - name = "Window Lockdown"; - pixel_x = -5; - pixel_y = -5 - }, -/obj/effect/turf_decal/corner/opaque/neutral/half, -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Td" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm) "Te" = ( /turf/closed/wall, /area/ship/cargo) +"Tm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating, +/area/ship/hallway/starboard) "Tp" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4609,6 +4541,20 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/fore) +"Tw" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Fore Hall" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "Ty" = ( /obj/structure/cable{ icon_state = "4-5" @@ -4616,25 +4562,31 @@ /obj/effect/turf_decal/corner/opaque/bottlegreen/full, /turf/open/floor/plasteel, /area/ship/security) -"TC" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"Tz" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 6 }, -/obj/machinery/door/airlock/command{ - name = "Bridge" +/obj/effect/turf_decal/corner/opaque/white{ + dir = 1 }, +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"TF" = ( -/obj/structure/cable{ - icon_state = "0-4" +/area/ship/medical) +"TH" = ( +/obj/effect/turf_decal/corner/opaque/neutral/half{ + dir = 8 }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/computer/cargo/express{ + dir = 8; + icon_state = "computer-left" }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "TI" = ( /turf/closed/wall, /area/ship/hallway/port) @@ -4647,30 +4599,21 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"TP" = ( -/obj/machinery/light/small, -/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, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"TX" = ( -/obj/structure/cable{ - icon_state = "1-2" +"TW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/ship/security) +"TY" = ( +/obj/machinery/door/poddoor{ + id = "amoguswindows" }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/bridge) "TZ" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/atmospherics/pipe/simple/green/visible, @@ -4693,6 +4636,23 @@ }, /turf/open/floor/plating, /area/ship/hallway/starboard) +"Uc" = ( +/obj/structure/cable{ + icon_state = "0-9" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) +"Ue" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "Uf" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4716,6 +4676,13 @@ /obj/item/wrench/old, /turf/open/floor/plating, /area/ship/hallway/starboard) +"Ul" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/starboard) "Un" = ( /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, @@ -4737,22 +4704,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) -"Uw" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/folder/red, -/obj/item/folder/blue, -/obj/item/folder, -/obj/item/pen/fountain, -/turf/open/floor/wood, -/area/ship/security) "UC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4783,21 +4734,13 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/starboard) -"UT" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +"UX" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 }, +/obj/machinery/light/directional/south, /turf/open/floor/plating, -/area/ship/engineering/electrical) +/area/ship/hallway/starboard) "UZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -4810,35 +4753,49 @@ /obj/structure/railing, /turf/open/floor/plating, /area/ship/hallway/fore) -"Vk" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 +"Ve" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/door/poddoor{ + id = "amoguswindows" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/carpet/blue, -/area/ship/bridge) -"Vl" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/hallway/starboard) +"Vn" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/starboard) +"Vp" = ( +/obj/machinery/shower{ + pixel_y = 12 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) +"Vt" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/structure/catwalk/over/plated_catwalk, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Vp" = ( -/obj/machinery/shower{ - pixel_y = 12 +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/structure/curtain, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Cargo Bay" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Vv" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4846,13 +4803,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/engineering/electrical) -"Vz" = ( -/obj/structure/cable{ - icon_state = "0-2" +"VB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/starboard) "VC" = ( /obj/structure/toilet{ dir = 8 @@ -4860,6 +4817,17 @@ /obj/structure/curtain, /turf/open/floor/plasteel/patterned, /area/ship/crew/toilet) +"VF" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat/mining, +/obj/item/clothing/head/hardhat/mining, +/obj/item/clothing/head/hardhat/mining, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "VS" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ dir = 1 @@ -4893,9 +4861,32 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/catwalk/over/plated_catwalk, -/turf/open/floor/plating, -/area/ship/hallway/fore) +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"VY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Starboard Hall" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/starboard) "Wg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel, @@ -4907,6 +4898,14 @@ /obj/structure/railing, /turf/open/floor/carpet/blue, /area/ship/bridge) +"Wm" = ( +/obj/machinery/door/poddoor{ + id = "amoguswindows" + }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/hallway/port) "Wp" = ( /obj/effect/turf_decal/atmos/nitrogen, /turf/open/floor/engine/n2, @@ -4926,13 +4925,13 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/cargo) -"Wx" = ( -/obj/structure/cable{ - icon_state = "5-9" +"WA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "WD" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4946,41 +4945,54 @@ /obj/effect/turf_decal/corner/opaque/red/diagonal, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"WE" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "WK" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ dir = 1 }, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) -"WW" = ( -/obj/structure/cable{ - icon_state = "4-8" +"WT" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + dir = 4; + id = "amoguswindows" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/plating, +/area/ship/hallway/fore) +"WU" = ( +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced/spawner, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/door/window/eastright{ + name = "Engine Access" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/poddoor{ + dir = 4; + id = "amogusthrusters" }, -/obj/machinery/door/airlock/public/glass{ - name = "Cargo Bay" +/turf/open/floor/plating, +/area/ship/hallway/port) +"Xa" = ( +/obj/effect/turf_decal/borderfloor, +/obj/effect/turf_decal/corner/opaque/white/half{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"WX" = ( -/obj/machinery/camera/autoname, -/obj/machinery/firealarm{ - pixel_y = 25 +/obj/machinery/computer/operating{ + dir = 1 }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "Xb" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 @@ -5005,20 +5017,23 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/starboard) -"Xj" = ( -/obj/machinery/light/small, +"Xh" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/turf/open/floor/wood, -/area/ship/security) -"Xp" = ( -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/atmos{ + dir = 4; + name = "Atmospherics" }, -/obj/machinery/power/apc/auto_name/east, /turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/area/ship/engineering/atmospherics) "Xv" = ( /obj/structure/chair/office{ dir = 1 @@ -5029,19 +5044,13 @@ /obj/effect/landmark/start/detective, /turf/open/floor/wood, /area/ship/security) -"Xw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"XA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +"XC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/starboard) +/obj/effect/turf_decal/corner/opaque/bottlegreen/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/engineering/atmospherics) "XF" = ( /obj/effect/turf_decal/box, /turf/open/floor/plasteel/patterned/cargo_one, @@ -5062,6 +5071,13 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/engine) +"XH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/ship/engineering/atmospherics) "XJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plating, @@ -5076,16 +5092,20 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/turf_decal/corner/opaque/red/mono, +/obj/effect/turf_decal/corner/opaque/blue/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) "XX" = ( /turf/closed/wall/r_wall, /area/ship/crew/canteen) "XZ" = ( -/obj/machinery/status_display/shuttle, -/turf/closed/wall, -/area/ship/bridge) +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = "amoguswindows" + }, +/turf/open/floor/plating, +/area/ship/hallway/fore) "Ye" = ( /obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 4 @@ -5105,24 +5125,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/engineering/electrical) -"Yp" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/blue, -/area/ship/bridge) -"Yt" = ( -/obj/machinery/computer/security, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/white/half, -/turf/open/floor/plasteel/dark, -/area/ship/security) "Yu" = ( /turf/open/floor/plasteel/grimy, /area/ship/crew/dorm) @@ -5130,6 +5132,17 @@ /obj/structure/railing, /turf/open/floor/carpet/blue, /area/ship/bridge) +"Yy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Yz" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/engine) "YM" = ( /obj/structure/tank_dispenser, /turf/open/floor/plasteel/dark, @@ -5224,31 +5237,40 @@ /obj/effect/turf_decal/corner/opaque/bottlegreen/full, /turf/open/floor/plasteel, /area/ship/security) -"Zx" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" +"Zz" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/door/poddoor{ - id = "amogusthrusters" +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/corner/opaque/white{ + dir = 10 }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "ZB" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen/full, /turf/open/floor/plasteel, /area/ship/security) -"ZD" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +"ZE" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/neutral/three_quarters, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) +"ZH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen/full, +/turf/open/floor/plasteel/white, +/area/ship/engineering/atmospherics) "ZK" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5270,12 +5292,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/hallway/port) -"ZO" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) "ZR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -5324,6 +5340,7 @@ LO LO LO LO +LO "} (2,1,1) = {" LO @@ -5353,6 +5370,7 @@ LO LO LO LO +LO "} (3,1,1) = {" LO @@ -5382,6 +5400,7 @@ LO LO LO LO +LO "} (4,1,1) = {" LO @@ -5411,64 +5430,67 @@ dl LO LO LO +LO "} (5,1,1) = {" LO is dl -dl +ID Xb Xb Nd Nd Qb UH -UH -ZO -JV -JV -EY -xY -UH -Dp +PR +AD +ne +Oh +bJ +lD +lx +Qq Qb sr sr Cg Cg -dl +ID dl dl LO +LO "} (6,1,1) = {" LO is dl lp -ff -BZ -Bh -MB +Cp +tj +uZ +WU Qb UH +eI +oD +LC +hU +XM UH UH -lx -rr -im -Nl -UH UH Qb -HU -eo -Zx -aT +fT +qi +fg +yv zN dl dl LO +LO "} (7,1,1) = {" LO @@ -5481,13 +5503,13 @@ kv kv Qb kD -Vz +HP Rg DN Kl Pz Mg -UH +Yz kD Qb SN @@ -5498,35 +5520,37 @@ zN LO LO LO +LO "} (8,1,1) = {" LO LO LO lp -gN +qY sZ Ac iM -sk +oo kD kD -eN +xi IB UH Qf UH kD kD -hv +Dn JJ mU GS -tW +UX zN LO LO LO +LO "} (9,1,1) = {" LO @@ -5538,15 +5562,15 @@ YS aX iQ so -vP +PQ TI Xc IB RE Qf -qU +zD cc -pe +Ul Uf RD Cs @@ -5556,6 +5580,7 @@ zN LO LO LO +LO "} (10,1,1) = {" LO @@ -5567,15 +5592,15 @@ hC Ov vP vP -Wx +se TI kD -Kb +Lp An -NM +vN kD cc -Gg +aJ bm RD Ua @@ -5585,6 +5610,7 @@ zN LO LO LO +LO "} (11,1,1) = {" LO @@ -5600,7 +5626,7 @@ Wu ee PM sJ -DS +AP CZ IR rG @@ -5614,6 +5640,7 @@ zN LO LO LO +LO "} (12,1,1) = {" LO @@ -5628,7 +5655,7 @@ wk IP NQ va -dh +bI eq XG va @@ -5638,11 +5665,12 @@ lZ UO RD RD -SJ +HV zN LO LO LO +LO "} (13,1,1) = {" LO @@ -5654,16 +5682,16 @@ AL bj fI IM -mY +Uc QQ QQ QQ -NA +Iz QQ QQ QQ cc -Us +Tm uS EE JD @@ -5672,6 +5700,7 @@ zN dl dl LO +LO "} (14,1,1) = {" LO @@ -5682,25 +5711,26 @@ fh vP Wu Zk -kK +es TI QQ -su +xs Zr Zh -iO +yL pr -pu +nH cc Us xu -tt -RD +vL +Vn YM zN dl dl LO +LO "} (15,1,1) = {" LO @@ -5709,20 +5739,20 @@ dl lp lp lp -vc +hM Zk -ms +qs TI -Yt +hd vv ZB ui Ty ZB -Xj +TW cc -AX -zA +ss +VY cc cc cc @@ -5730,6 +5760,7 @@ zN dl dl LO +LO "} (16,1,1) = {" LO @@ -5738,27 +5769,28 @@ dl TI vJ lp -vj -QN +Sq +Po TI TI QQ -cl +AU MX po -jV +Jm Ur Xv QQ JU LV zm -qx +dp DI zN cc cc cc +LO "} (17,1,1) = {" TI @@ -5767,8 +5799,8 @@ TI TI uj lp -qm -Vl +bE +Ne pa pa pa @@ -5776,7 +5808,7 @@ QQ QQ QQ QQ -Uw +qR fm QQ RP @@ -5788,6 +5820,7 @@ OU lB fM GV +LO "} (18,1,1) = {" as @@ -5799,11 +5832,11 @@ vg qB KS Ow -Ew -NH -uv -zh -zv +Ip +FV +sN +xm +pa mH mH mH @@ -5811,17 +5844,18 @@ mH mH mH mH -bd +PF qJ qe -XA +VB hk GV +Fs "} (19,1,1) = {" Ny co -dK +Fr gZ iX yx @@ -5831,21 +5865,22 @@ cL ad rJ Uo -xc -Kg +gC +GN mH NV qD Pj YP -sw +Lu Hz Xg -OH +tP zN cc cc cc +LO "} (20,1,1) = {" TI @@ -5861,20 +5896,21 @@ vD MP XS jn -Pb +pO mH -TF +kq Qx Pj wr zQ lJ He -Mx +Kh zN dl dl LO +LO "} (21,1,1) = {" LO @@ -5882,28 +5918,29 @@ LO dl dl dl -mr +Wm Nv -rM +CM pa Kq sd JW sd -fr +re mH -UT +EG Yj Vv Tq Mw mH -Rh +Ev kQ -Ge +Ve kV dl LO +LO "} (22,1,1) = {" LO @@ -5912,19 +5949,19 @@ dl dl dl lp -WX -Vl +GY +Ne pa Si -dE +qj sd -nK -Lh +dE +Xa mH -OF +Nk QT kw -jf +MG Nh mH rm @@ -5933,6 +5970,7 @@ zN dl dl LO +LO "} (23,1,1) = {" LO @@ -5941,14 +5979,14 @@ LO dl dl XX -Ex -dT +Sh +nL pa -PY -qj -dE +Gv +sp dE -uL +Bu +Cb mH rw Rq @@ -5956,12 +5994,13 @@ mH mH mH mH -EB -eJ +lE +PH nO dl dl LO +LO "} (24,1,1) = {" LO @@ -5970,74 +6009,76 @@ LO XX XX XX -fN +wD zd pa pa -IU -rd -tw -bn +pa +Lc +Su +Tz mH Az mH mH eg Jw -pH +kj Cc Yh nO dl dl LO +LO "} (25,1,1) = {" LO LO LO -et +uD Qz Ui sA zd -aY -pa +in +fa pa pa pa pa Te -GJ -RS -TX +Sw +Yy +gj aK Zn oN jm -rY +Nw nO nO dl LO +LO "} (26,1,1) = {" LO LO LO -et +uD AG Ui er ha Ui -JA -Gb +Ui +mN Ph -Ko +Ot SX Te -NZ +cP nT lX VT @@ -6049,12 +6090,13 @@ qb oS LO LO +LO "} (27,1,1) = {" LO LO LO -et +uD GB Ui vr @@ -6078,12 +6120,13 @@ oV kt LO LO +LO "} (28,1,1) = {" LO LO LO -et +uD kO Ui vI @@ -6107,22 +6150,23 @@ oV kt LO LO +LO "} (29,1,1) = {" LO LO LO XX -lj +FD Ui EL zL lS Ui -Ui -Ka -xR -Do +Kv +Ph +XH +sK Te NZ hs @@ -6136,13 +6180,14 @@ gF Fd LO LO +LO "} (30,1,1) = {" LO LO LO XX -Qv +Zz oC yM rf @@ -6150,21 +6195,22 @@ Ui VU ol Ph -jQ -JK +Xh +MJ Te Te LB -dd -Aq +RR +VF NT rT -dC +uP vB eV Bx LO LO +LO "} (31,1,1) = {" uy @@ -6172,119 +6218,123 @@ uy uy uy bZ -iu +iw Ui WD -fE +OE Ca Ph Ph -QL -Dw -Hh +Iw +bM +eB Te Te Te Te -qt -WW +mD +Vt OM OM OM FI FI FI +LO "} (32,1,1) = {" uy -cV -ec -Td +kY +Lt +tS bZ bZ -HS -MV +sQ +Rl iV iV iV -AR -dI -lt -MW -qX +qN +lV +aa +ZE +OG Sr bW iV -Bb +Nf Ez OM Vp OM qy -iS +kS FI +LO "} (33,1,1) = {" -Md +qP dr dw Yu -fK +KN bZ Bb VX iV Ci -tK -Xw -zn -he -ud -jW +PA +Rb +Ky +XC +sD +Ue on VS iV -KC +zF ko OM -Bo -Bg +EV +GP bL bL -vY +Fv +LO "} (34,1,1) = {" -Md +qP dG ft hx mt HH ZW -iP +El iV CL -HC -DA -HB -rj -HX +qQ +Kf +Nb +pn +OK iV iV iV iV -FX +ht oM gJ wL xL OI zt -vY +Fv +LO "} (35,1,1) = {" uy -bU +hJ cr Yu Yu @@ -6293,41 +6343,42 @@ Wg SB iV CS -HC -DA -ps -Xw -MW -qX +qQ +Kf +lL +gK +ZE +OG Er Wp iV -qO +tI Tv fn Pd -qc +aG bL -zT +ls FI +LO "} (36,1,1) = {" uy uy SU SU -tz +AF bZ Du SV iV sl -qX -vk -bF -EZ -Ih -jW +OG +ZH +aU +WA +rP +Ue St WK iV @@ -6339,6 +6390,7 @@ OM VC FI FI +LO "} (37,1,1) = {" LO @@ -6347,56 +6399,58 @@ bZ bZ bZ bZ -uf -DO +Tw +FM iV iV iV -GT -vn -NX -IQ +dV +WE +hb +ck iV iV iV iV -dA -xU +EU +Hm OM OM OM OM FI LO +LO "} (38,1,1) = {" LO zO Gd Gd -dY -IG +ya +kl NB Tp iW fv -bH -Hb -vQ -QL -ie +tn +BV +Bm +Iw +Qg ym lo iV PE NB Ls -Qc -dY +eE +ya Gd vo zO LO +LO "} (39,1,1) = {" LO @@ -6407,17 +6461,17 @@ Jy Sm hq sH -pw +uk fv iV iV -ib -jQ +Hj +Xh iV iV iV iV -ZD +MH ze UZ Gd @@ -6426,6 +6480,7 @@ Gd Gd zO LO +LO "} (40,1,1) = {" LO @@ -6455,11 +6510,12 @@ Gs Gd zO LO +LO "} (41,1,1) = {" LO -oR -oR +AC +WT Gd Gd Pn @@ -6468,11 +6524,11 @@ fB al mh ac -oa +me rN jt ac -hW +Kp ac Mt al @@ -6481,36 +6537,38 @@ JR ev Gd Gd -oR -oR +Ka +AC +LO LO "} (42,1,1) = {" LO LO -oR -oR +AC +eZ Gd -nh +by NB ul -JF +dO xQ Cr Cr -rQ -XZ -TC +aQ +Cr +wp Cr Cr xQ -wo +Ok NB My Gd Gd -oR -oR +WT +XZ +LO LO LO "} @@ -6518,27 +6576,28 @@ LO LO LO LO -oR +XZ zO zO NB -Xp -dt +PT +HG xQ Hn Wi yr -Ox +sY Km -Vk -Yp +an +EW xQ gA -NB -pL +en +KZ zO zO -oR +XZ +LO LO LO LO @@ -6554,13 +6613,13 @@ zO zO zO xQ -Mn +KG nx yB ea YY Ho -Lb +oB xQ zO zO @@ -6571,6 +6630,7 @@ LO LO LO LO +LO "} (45,1,1) = {" LO @@ -6583,13 +6643,13 @@ dl dl dl xQ -vX +vt Yw Lk -FG +ag Cz Ho -TP +qE xQ dl dl @@ -6600,6 +6660,7 @@ LO LO LO LO +LO "} (46,1,1) = {" LO @@ -6612,13 +6673,13 @@ dl dl dl xQ -SY +mE aw KT qA KT Sn -vF +tZ xQ dl dl @@ -6629,6 +6690,7 @@ LO LO LO LO +LO "} (47,1,1) = {" LO @@ -6640,15 +6702,15 @@ LO LO dl dl -Jc -Jc +LL +TY Ft OD Lr OD xq -Jc -Jc +TY +LL dl dl LO @@ -6658,6 +6720,7 @@ LO LO LO LO +LO "} (48,1,1) = {" LO @@ -6670,13 +6733,14 @@ LO LO LO LO -Jc -Jc -Ar -cA -jR -Jc -Jc +to +TY +TH +QY +FR +TY +eh +LO LO LO LO @@ -6700,11 +6764,12 @@ LO LO LO LO -Jc -Jc -Jc -Jc -Jc +LL +LL +LL +LL +LL +LO LO LO LO diff --git a/_maps/shuttles/shiptest/independent_solar.dmm b/_maps/shuttles/shiptest/independent_solar.dmm index fd1fef5ea33e..8433eb04d50f 100644 --- a/_maps/shuttles/shiptest/independent_solar.dmm +++ b/_maps/shuttles/shiptest/independent_solar.dmm @@ -1,55 +1,36 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Cockpit" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +"ad" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"ab" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/ship/science) -"aJ" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Cockpit" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/turf/open/floor/plasteel, +/area/ship/engineering) +"ae" = ( +/obj/effect/turf_decal/number/two{ + dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ +/turf/open/floor/plating, +/area/ship/cargo) +"av" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"aE" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/purple, +/turf/open/floor/plasteel, +/area/ship/hallway) "aM" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod" @@ -71,6 +52,12 @@ }, /turf/open/floor/plasteel, /area/ship/hallway) +"aZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ship/engineering) "bc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -87,13 +74,29 @@ /obj/machinery/atmospherics/pipe/manifold/orange/visible, /turf/open/floor/plasteel/mono, /area/ship/engineering) -"bx" = ( -/obj/machinery/sleeper{ +"by" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/effect/turf_decal/corner/opaque/blue, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/white, /area/ship/medical) +"bz" = ( +/obj/effect/turf_decal/corner/opaque/purple, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/aug_manipulator, +/turf/open/floor/plasteel/white, +/area/ship/science) "bK" = ( /obj/effect/turf_decal/corner/opaque/purple, /obj/structure/cable{ @@ -101,21 +104,23 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) -"bS" = ( -/obj/structure/closet/firecloset/wall, -/turf/closed/wall, -/area/ship/science) -"bV" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +"bW" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "mining_window_shutter" }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/ship/bridge) +"cg" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/black, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/white, -/area/ship/security) +/area/ship/medical) "ci" = ( /obj/effect/turf_decal/industrial/warning, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -126,18 +131,6 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"cA" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "cC" = ( /obj/machinery/door/airlock/public/glass{ name = "Brig" @@ -166,19 +159,6 @@ }, /turf/closed/wall/r_wall, /area/ship/cargo) -"cV" = ( -/obj/machinery/firealarm{ - pixel_y = -26 - }, -/obj/effect/turf_decal/corner/opaque/brown, -/turf/open/floor/plasteel, -/area/ship/hallway) -"di" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/hallway) "dr" = ( /obj/structure/chair/wood{ dir = 8 @@ -202,6 +182,26 @@ "dY" = ( /turf/closed/wall/r_wall, /area/ship/crew) +"ea" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "mining_window_shutter" + }, +/turf/open/floor/plating, +/area/ship/cargo) +"en" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/ship/crew) "ev" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -214,13 +214,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway) -"eE" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/ship/crew) "eR" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 @@ -230,28 +223,23 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"eY" = ( -/obj/structure/catwalk, -/turf/template_noop, -/area/ship/external) +"fe" = ( +/obj/machinery/light/directional/north, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/ship/hallway) +"fo" = ( +/obj/effect/turf_decal/ntspaceworks_small/left{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/cargo) "fv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, /turf/open/floor/plasteel/white, /area/ship/science) -"fx" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) "fC" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/corner/opaque/blue{ @@ -278,6 +266,23 @@ }, /turf/open/floor/plasteel/mono, /area/ship/engineering) +"fW" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ship/engineering) "gf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/structure/cable{ @@ -286,6 +291,16 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/plasteel/mono, /area/ship/hallway) +"gh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/firealarm/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/ship/crew) "gw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -296,6 +311,25 @@ /obj/effect/turf_decal/corner/opaque/blue/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"gJ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Salvage Bay" + }, +/turf/open/floor/plasteel, +/area/ship/cargo) "gW" = ( /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 @@ -305,6 +339,31 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) +"hf" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/engineering) +"hg" = ( +/obj/effect/turf_decal/corner/opaque/purple, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/white, +/area/ship/science) "hi" = ( /turf/closed/wall/r_wall, /area/ship/security) @@ -315,6 +374,36 @@ /obj/item/paicard, /turf/open/floor/plasteel, /area/ship/science) +"hv" = ( +/obj/effect/turf_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/structure/rack, +/obj/machinery/door/window/southleft{ + dir = 8 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/ship/engineering) +"ih" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/brown, +/turf/open/floor/plasteel, +/area/ship/hallway) "ik" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -329,19 +418,11 @@ /obj/effect/turf_decal/corner/opaque/black, /turf/open/floor/plasteel/white, /area/ship/security) -"iv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 +"iB" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel/white, -/area/ship/security) -"iO" = ( -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/brown, /turf/open/floor/plasteel, /area/ship/hallway) "jb" = ( @@ -360,6 +441,45 @@ /obj/machinery/autolathe/hacked, /turf/open/floor/plasteel/mono, /area/ship/science) +"jm" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/engineering) +"jt" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 + }, +/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/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "jC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -370,22 +490,6 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"jI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue/mono, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) "jJ" = ( /obj/structure/chair/wood{ dir = 4 @@ -396,19 +500,6 @@ /obj/effect/turf_decal/corner/opaque/black, /turf/open/floor/plasteel/white, /area/ship/security) -"ka" = ( -/obj/machinery/computer/operating, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "kk" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/closed/wall, @@ -430,18 +521,23 @@ "kA" = ( /turf/open/floor/plasteel/mono, /area/ship/hallway) -"la" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/machinery/light{ - dir = 8 +"kM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/stairs/medium, +/area/ship/bridge) +"kZ" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to Distro"; + target_pressure = 500 }, -/turf/open/floor/plasteel/patterned/monofloor{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, -/area/ship/cargo) +/turf/open/floor/plasteel/mono, +/area/ship/engineering) "lc" = ( /obj/effect/turf_decal/industrial/warning{ dir = 5 @@ -492,10 +588,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"lz" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel, -/area/ship/hallway) "lE" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -535,6 +627,31 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"lH" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/item/stack/sheet/mineral/uranium/five, +/obj/item/stack/sheet/mineral/uranium/five, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/ship/engineering) +"lP" = ( +/obj/effect/turf_decal/ntspaceworks_small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/cargo) "lS" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 @@ -546,13 +663,6 @@ /obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plasteel, /area/ship/cargo) -"lX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/ship/hallway) "lZ" = ( /turf/closed/wall/r_wall, /area/ship/medical) @@ -596,12 +706,30 @@ }, /turf/open/floor/plasteel/mono, /area/ship/hallway) -"mL" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 +"mY" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Engine Access" }, /turf/open/floor/plating, /area/ship/cargo) +"nb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/black, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/security) "nc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -615,19 +743,83 @@ "nd" = ( /turf/closed/wall, /area/ship/science) -"nG" = ( -/obj/machinery/door/poddoor{ - id = "mining_window_shutter" +"no" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Engine Access" + }, +/turf/open/floor/plasteel, /area/ship/hallway) +"nv" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/ship/engineering) "nM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/effect/turf_decal/corner/opaque/white/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"nS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "mining_window_shutter" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"nT" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 8 + }, +/obj/structure/closet{ + icon_state = "science"; + name = "science experiments" + }, +/obj/item/seeds/replicapod, +/obj/item/seeds/cabbage, +/obj/item/seeds/corn, +/obj/item/circuitboard/computer/xenobiology, +/obj/item/bodypart/chest/robot, +/obj/item/bodypart/leg/right/robot, +/obj/item/bodypart/leg/left/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/leg/right/robot, +/obj/item/assembly/flash/handheld, +/obj/item/slime_scanner, +/obj/item/slime_extract/grey, +/obj/item/storage/box/rndboards{ + desc = "A box containing boards for research equipment."; + name = "research equipment box" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/science) "nV" = ( /obj/machinery/door/window/southleft{ dir = 1 @@ -663,6 +855,16 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) +"pt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/black, +/turf/open/floor/plasteel/white, +/area/ship/security) "pK" = ( /obj/effect/turf_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -674,6 +876,14 @@ }, /turf/open/floor/plasteel, /area/ship/engineering) +"pN" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "pW" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -684,30 +894,34 @@ }, /turf/open/floor/plasteel, /area/ship/engineering) -"pX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/wood, +"qb" = ( +/obj/item/bedsheet/dorms, +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet, /area/ship/crew) -"qg" = ( -/obj/machinery/power/terminal{ +"qk" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "mining_window_shutter" }, /turf/open/floor/plating, -/area/ship/cargo) +/area/ship/hallway) +"ql" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway) "qM" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -721,6 +935,16 @@ "rb" = ( /turf/closed/wall, /area/ship/engineering) +"rH" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/hallway) "rJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -759,6 +983,12 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"st" = ( +/obj/effect/turf_decal/number/zero{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/cargo) "sv" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -770,6 +1000,14 @@ dir = 4 }, /area/ship/hallway) +"sz" = ( +/obj/effect/turf_decal/corner/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/black, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/security) "sM" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -839,6 +1077,19 @@ /obj/effect/turf_decal/corner/opaque/blue/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) +"tt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/computer/cryopod/directional/south, +/turf/open/floor/wood, +/area/ship/crew) "tv" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -848,6 +1099,9 @@ }, /turf/open/floor/plasteel, /area/ship/hallway) +"tE" = ( +/turf/closed/wall, +/area/ship/external) "tH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -914,26 +1168,12 @@ /obj/effect/turf_decal/corner/opaque/black, /turf/open/floor/plasteel/white, /area/ship/security) -"ua" = ( -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/corner/transparent/neutral, -/obj/effect/turf_decal/corner/transparent/neutral{ +"ud" = ( +/obj/effect/turf_decal/ntspaceworks_small/right{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/light, -/obj/item/radio/intercom/wideband{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/cargo) "ue" = ( /obj/machinery/chem_master, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -947,31 +1187,10 @@ "uj" = ( /turf/closed/wall, /area/ship/security) -"up" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/open/floor/circuit, -/area/ship/science) "uI" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/ship/medical) -"uM" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "uT" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod" @@ -992,20 +1211,15 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/ship/bridge) -"vJ" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air to Distro"; - target_pressure = 500 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 +"vi" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/window/eastright{ + dir = 8 }, -/turf/open/floor/plasteel/mono, -/area/ship/engineering) +/turf/open/floor/plating, +/area/ship/cargo) "vN" = ( /turf/open/floor/plasteel/patterned/monofloor{ dir = 1 @@ -1018,16 +1232,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/plating, /area/ship/cargo) -"vS" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "vV" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1092,23 +1296,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"wC" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Engine Access" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway) "wM" = ( /obj/machinery/computer{ dir = 8 @@ -1129,13 +1316,45 @@ /obj/structure/cable/yellow, /turf/open/floor/plasteel/mono, /area/ship/engineering) -"xo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/corner/opaque/yellow{ +"xd" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/patterned/monofloor{ + dir = 1 + }, +/area/ship/cargo) +"xl" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "mining_window_shutter" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"xn" = ( +/obj/structure/closet/firecloset/wall{ + dir = 1 + }, +/turf/closed/wall, +/area/ship/science) +"xp" = ( +/obj/machinery/vending/cola/random, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway) +"xz" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plasteel, -/area/ship/hallway) +/area/ship/cargo) "xE" = ( /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 @@ -1169,6 +1388,24 @@ /obj/item/t_scanner/adv_mining_scanner/lesser, /turf/open/floor/plasteel, /area/ship/cargo) +"xJ" = ( +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/wideband/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "xL" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 10 @@ -1189,17 +1426,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"yf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel/white, -/area/ship/security) "yj" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -1220,6 +1446,31 @@ dir = 4 }, /area/ship/hallway) +"ym" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/ship/hallway) +"yx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel/mono, +/area/ship/hallway) "yG" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -1247,22 +1498,6 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/crew) -"yO" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "yP" = ( /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 @@ -1303,6 +1538,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel, /area/ship/hallway) +"zf" = ( +/obj/structure/catwalk, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/airless, +/area/ship/external) "zq" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -1352,89 +1592,13 @@ }, /turf/open/floor/plasteel, /area/ship/hallway) -"zS" = ( -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet{ - icon_state = "science"; - name = "science experiments" - }, -/obj/item/seeds/replicapod, -/obj/item/seeds/cabbage, -/obj/item/seeds/corn, -/obj/item/circuitboard/computer/xenobiology, -/obj/item/bodypart/chest/robot, -/obj/item/bodypart/leg/right/robot, -/obj/item/bodypart/leg/left/robot, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/leg/right/robot, -/obj/item/assembly/flash/handheld, -/obj/item/slime_scanner, -/obj/item/slime_extract/grey, -/obj/item/storage/box/rndboards{ - desc = "A box containing boards for research equipment."; - name = "research equipment box" - }, -/turf/open/floor/plasteel/white, -/area/ship/science) -"zT" = ( -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/purple, -/turf/open/floor/plasteel, -/area/ship/hallway) "Ai" = ( /turf/closed/wall/r_wall, /area/ship/cargo) -"Am" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/power/port_gen/pacman/super, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/item/stack/sheet/mineral/uranium/five, -/obj/item/stack/sheet/mineral/uranium/five, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) -"AA" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) +"Av" = ( +/obj/structure/catwalk, +/turf/closed/wall, +/area/ship/external) "AD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -1457,17 +1621,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Be" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastright, -/turf/open/floor/plating, -/area/ship/engineering) "Bf" = ( /turf/closed/wall, /area/ship/bridge) @@ -1481,6 +1634,12 @@ /obj/effect/spawner/lootdrop/donkpockets, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Bk" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/patterned/monofloor{ + dir = 1 + }, +/area/ship/cargo) "Bv" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -1506,22 +1665,6 @@ }, /turf/open/floor/plasteel/mono, /area/ship/medical) -"Cc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/wood, -/area/ship/crew) "Co" = ( /obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ @@ -1559,6 +1702,16 @@ }, /turf/open/floor/plating, /area/ship/hallway) +"CU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/corner/opaque/blue/mono, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "Db" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ @@ -1573,17 +1726,6 @@ }, /turf/open/floor/plasteel/patterned/monofloor, /area/ship/cargo) -"Dn" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "Dv" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -1623,10 +1765,20 @@ "DS" = ( /turf/open/floor/plasteel, /area/ship/hallway) -"Eo" = ( -/obj/machinery/light, +"Eb" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "engine fuel pump" + }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, -/area/ship/hallway) +/area/ship/engineering) "Et" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -1647,33 +1799,35 @@ /obj/effect/turf_decal/corner/opaque/brown, /turf/open/floor/plasteel, /area/ship/hallway) -"EH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"EX" = ( +/obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/machinery/door/poddoor{ - id = "mining_window_shutter" +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ship/engineering) -"EQ" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ +/turf/open/floor/plasteel/white, +/area/ship/medical) +"EY" = ( +/obj/machinery/door/airlock/command/glass{ + dir = 4; + name = "Cockpit" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/template_noop, -/area/ship/external) -"ER" = ( -/obj/structure/cable{ - icon_state = "0-2" +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/corner/opaque/blue{ +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/hallway) +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "EZ" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -1683,6 +1837,18 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) +"Fq" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/engineering) "Ft" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 8 @@ -1715,40 +1881,21 @@ "Gf" = ( /obj/effect/turf_decal/industrial/warning, /obj/item/stack/sheet/mineral/titanium/twenty, -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"Gi" = ( -/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/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Sickbay" +/turf/open/floor/plasteel, +/area/ship/cargo) +"Gs" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "mining_window_shutter" }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ship/hallway) "GY" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/industrial/warning{ @@ -1768,33 +1915,6 @@ }, /turf/open/floor/plasteel, /area/ship/science) -"GZ" = ( -/obj/effect/turf_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/structure/rack, -/obj/machinery/door/window/southleft{ - dir = 8 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -2; - pixel_y = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "Hk" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1809,19 +1929,6 @@ "Hs" = ( /turf/closed/wall, /area/ship/medical) -"Hy" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/open/floor/plasteel/white, -/area/ship/hallway) "HS" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/condiment/saltshaker{ @@ -1855,16 +1962,10 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"HW" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ship/engineering) +"HZ" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/mech_bay_recharge_floor, +/area/ship/science) "Ic" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -1905,23 +2006,34 @@ }, /turf/open/floor/plasteel/mono, /area/ship/hallway) -"Iw" = ( +"Il" = ( +/obj/machinery/door/airlock/command/glass{ + dir = 4; + name = "Cockpit" + }, +/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/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/structure/cable, /obj/structure/cable{ - icon_state = "1-8" + icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ship/engineering) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "IC" = ( /obj/structure/closet/wall, /obj/item/circuitboard/machine/microwave, @@ -1950,6 +2062,22 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) +"Jn" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/ship/cargo) +"Jr" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/circuit, +/area/ship/science) "JR" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker/large, @@ -1960,18 +2088,26 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Kw" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" +"Kg" = ( +/obj/structure/catwalk, +/turf/open/floor/plating/airless, +/area/ship/external) +"Kj" = ( +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 4 }, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/corner/opaque/black{ +/obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel/white, -/area/ship/security) +/obj/effect/turf_decal/corner/transparent/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Kz" = ( /turf/template_noop, /area/template_noop) @@ -2002,29 +2138,16 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel, /area/ship/hallway) -"LT" = ( -/obj/structure/closet/crate/internals, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/button/door{ - id = "mining_galaxy_port"; - name = "Port Hangar Shutters"; - pixel_y = 28 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/ship/cargo) -"LX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +"LY" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 }, -/turf/open/floor/wood, -/area/ship/crew) +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/hallway) "MG" = ( /obj/machinery/shower{ dir = 1 @@ -2035,50 +2158,12 @@ }, /turf/open/floor/noslip, /area/ship/engineering) -"MK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"Nc" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Salvage Bay" +"Nj" = ( +/obj/effect/turf_decal/number/five{ + dir = 1 }, -/turf/open/floor/plasteel, +/turf/open/floor/plating, /area/ship/cargo) -"Nn" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "No" = ( /turf/closed/wall, /area/ship/cargo) @@ -2131,21 +2216,15 @@ "OQ" = ( /turf/open/floor/plasteel/mono, /area/ship/science) -"OY" = ( -/turf/open/floor/plating, -/area/ship/cargo) -"OZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/machinery/door/window/eastright, -/obj/structure/cable{ - icon_state = "0-8" +"OU" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 1 }, +/obj/effect/turf_decal/corner/opaque/black, +/turf/open/floor/plasteel/white, +/area/ship/security) +"OY" = ( /turf/open/floor/plating, /area/ship/cargo) "Pa" = ( @@ -2155,6 +2234,20 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Pd" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Engine Access" + }, +/turf/open/floor/plasteel, +/area/ship/engineering) "Pi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -2176,48 +2269,39 @@ /obj/effect/turf_decal/corner/opaque/brown, /turf/open/floor/plasteel, /area/ship/hallway) +"Pv" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/black, +/turf/open/floor/plasteel/white, +/area/ship/security) "Px" = ( /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/machinery/holopad/emergency/science, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"PA" = ( -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/hallway) -"PJ" = ( -/obj/structure/closet/crate/engineering, -/obj/item/stack/sheet/metal/twenty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/plasteel, -/area/ship/cargo) -"PP" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Engine Access" + dir = 1 }, -/turf/open/floor/plating, +/obj/machinery/holopad/emergency/science, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"PJ" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stack/sheet/metal/twenty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plasteel, /area/ship/cargo) +"Qh" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway) "Qn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ @@ -2235,25 +2319,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"QU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Engine Access" - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ship/engineering) "QX" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible, /obj/machinery/door/poddoor{ @@ -2262,23 +2327,22 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/engineering) +"Rj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/ship/crew) "RB" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/cargo) -"RG" = ( -/obj/effect/turf_decal/corner/opaque/purple, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/aug_manipulator, -/turf/open/floor/plasteel/white, -/area/ship/science) "RN" = ( /obj/structure/cable{ icon_state = "1-8" @@ -2297,29 +2361,6 @@ /obj/item/storage/belt/medical, /turf/open/floor/plasteel/white, /area/ship/medical) -"Se" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 - }, -/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/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Sp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -2348,15 +2389,6 @@ /obj/effect/turf_decal/corner/opaque/yellow, /turf/open/floor/plasteel/white, /area/ship/medical) -"Te" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/ship/cargo) "Tm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -2375,6 +2407,21 @@ }, /turf/open/floor/plasteel/white, /area/ship/science) +"Tz" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/cargo) +"TI" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/black, +/turf/open/floor/plasteel/white, +/area/ship/security) "Up" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/corner/opaque/purple, @@ -2398,16 +2445,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/plasteel/mono, /area/ship/hallway) -"UG" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/hallway) "UJ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 8 @@ -2448,34 +2485,12 @@ /obj/structure/bed, /obj/structure/curtain/cloth/grey, /obj/item/bedsheet/dorms, +/obj/machinery/firealarm/directional/east, /turf/open/floor/carpet, /area/ship/crew) -"Vn" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs/medium{ - dir = 4 - }, -/area/ship/hallway) "VE" = ( /turf/closed/wall/r_wall, /area/ship/science) -"Wg" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/monofloor{ - dir = 1 - }, -/area/ship/cargo) "Wp" = ( /turf/closed/wall, /area/ship/crew) @@ -2483,18 +2498,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ship/science) -"WM" = ( -/obj/effect/turf_decal/corner/opaque/purple, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel/white, -/area/ship/science) "Xg" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 @@ -2514,33 +2517,46 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"XA" = ( +"Xx" = ( +/obj/effect/turf_decal/corner/opaque/brown, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway) +"Yj" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway) +"Yy" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/engineering) -"XI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/item/radio/intercom{ - pixel_y = -30 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + dir = 4; + name = "Sickbay" }, -/obj/effect/turf_decal/corner/opaque/black, /turf/open/floor/plasteel/white, -/area/ship/security) +/area/ship/medical) "YH" = ( /obj/structure/bed/roller, /obj/machinery/iv_drip, @@ -2559,42 +2575,9 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Za" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium, -/area/ship/bridge) -"Zb" = ( -/obj/item/bedsheet/dorms, -/obj/structure/bed, -/obj/structure/curtain/cloth/grey, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/ship/crew) "Zf" = ( /turf/closed/wall/r_wall, /area/ship/bridge) -"Zg" = ( -/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 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Zk" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -2613,15 +2596,34 @@ }, /turf/open/floor/plasteel/white, /area/ship/hallway) -"Zq" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 +"Zt" = ( +/obj/structure/closet/crate/internals, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/button/door{ + id = "mining_galaxy_port"; + name = "Port Hangar Shutters"; + pixel_y = 28 }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel/white, -/area/ship/security) +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/ship/cargo) +"ZO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "mining_window_shutter" + }, +/turf/open/floor/plating, +/area/ship/cargo) "ZR" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 @@ -2643,80 +2645,80 @@ /area/ship/cargo) (1,1,1) = {" -eY -eY -eY +Kg +Kg +Av Qo lS +Av Db -eY -eY -eY +Kg +Kg Xg -eY -eY -eY -eY +Kg +Kg +Kg +tE mo Qo -eY -eY -eY +tE +Kg +Kg "} (2,1,1) = {" -eY +Kg wl wl -QU -Be -EH +nS +xl wl +aZ wl -nG -wC -nG +Gs +qk +Gs Ai Ai Ai -PP -OZ +ea +ZO Ai cU -eY +Kg "} (3,1,1) = {" -eY +Kg wl -Am -Nn -HW -XA -Dn +lH +jm +Pd +nv +Fq kk -xo -di +ql +no EB Fx -fx -Te -mL -qg -la +Jn +xz +vi +mY +Bk Dm -eY +Kg "} (4,1,1) = {" -eY +Kg wl -yO +hf lf fS -vJ -vS +kZ +ad rb -UG +iB bc -iO +ih No lV UW @@ -2724,28 +2726,28 @@ th RN vN Dm -eY +Kg "} (5,1,1) = {" wy wl -AA +Eb nc xL rP MG rb -PA +Yj AD -cV +Xx No -lV +Tz Co OY OY vN Dm -eY +Kg "} (6,1,1) = {" Ld @@ -2762,11 +2764,11 @@ Pq RB PJ Gf -OY -OY +ae +ud vN Dm -eY +Kg "} (7,1,1) = {" HV @@ -2774,7 +2776,7 @@ wl lc Bv pW -Iw +fW km rb ls @@ -2783,35 +2785,35 @@ LS tO jC ci -OY -OY +st +lP vN Dm -eY +Kg "} (8,1,1) = {" -eY +Kg wl rb rb rb rb -GZ +hv rb -Vn +ym yj sv vO Tm ZS -OY -OY +Nj +fo vN Dm -eY +Kg "} (9,1,1) = {" -eY +Kg lZ Hs BQ @@ -2819,25 +2821,25 @@ Vb Hs Hs Hs -ER +rH zR Oa No -LT +Zt xH wm OY -Wg +xd Dm -eY +Kg "} (10,1,1) = {" -eY +Kg lZ -ka +av YU YU -uM +EX YH uI aT @@ -2847,43 +2849,43 @@ No No Dv Dv -Nc +gJ Ai Ai -eY +Kg "} (11,1,1) = {" -eY +Kg lZ -MK +cg tr nM -jI +CU zq uI aT mx -zT +aE nd -zS +nT gW gW Ty -RG +bz VE -eY +Kg "} (12,1,1) = {" -eY +Kg lZ RR dv -bx +pN Hs -Gi +Yy Hs fC -mx +yx Oa WG Cy @@ -2892,10 +2894,10 @@ Xi Sr jb VE -eY +Kg "} (13,1,1) = {" -eY +Kg lZ FK gw @@ -2913,10 +2915,10 @@ fv Sr Up VE -eY +Kg "} (14,1,1) = {" -eY +Kg lZ SU Xw @@ -2932,15 +2934,15 @@ jl Nx rO bK -WM +hg VE -eY +Kg "} (15,1,1) = {" -eY +Kg lZ lZ -cA +by SQ nV ZR @@ -2955,32 +2957,32 @@ IH oT VE VE -eY +Kg "} (16,1,1) = {" -eY -eY +Kg +Kg lZ JR ue uI -Hy +LY EZ tv ev Oa nd -up +Jr Ft -ab +HZ me VE -eY -eY +Kg +Kg "} (17,1,1) = {" Kz -eY +Kg hi uj uj @@ -2990,24 +2992,24 @@ HT DE Ig DE -bS +xn VE VE VE VE VE -eY +Kg Kz "} (18,1,1) = {" Kz -eY +Kg hi -yf -bV -Kw +TI +sz +Pv uj -lX +fe DS ev DS @@ -3015,14 +3017,14 @@ DS aM CO uT -EQ -eY -eY +zf +Kg +Kg Kz "} (19,1,1) = {" Kz -eY +Kg hi tY Pk @@ -3032,82 +3034,82 @@ LS Qn Hk kA -Eo +Qh dY dY dY dY dY -eY +Kg Kz "} (20,1,1) = {" Kz -eY +Kg hi IC Pk -XI +pt uj -lz +xp DS vV zd FV sN -LX -pX +gh +Rj yM dY -eY +Kg Kz "} (21,1,1) = {" Kz -eY -eY +Kg +Kg zQ jJ -iv +nb Bf Bf -aa -aJ +EY +Il Bf Bf Wp ou -Cc +tt dY dY -eY +Kg Kz "} (22,1,1) = {" Kz Kz -eY +Kg zQ HS -Zq +OU Bf -Se +jt eR lE -Za -ua +kM +xJ Wp -Zb +qb Pi dY -eY -eY +Kg +Kg Kz "} (23,1,1) = {" Kz Kz -eY +Kg zQ dr Pk @@ -3119,16 +3121,16 @@ Nt xE Wp Vd -eE +en dY -eY +Kg Kz Kz "} (24,1,1) = {" Kz Kz -eY +Kg hi hi hi @@ -3137,22 +3139,22 @@ CC ly lG tV -Zg +Kj dY dY dY dY -eY +Kg Kz Kz "} (25,1,1) = {" Kz Kz -eY -eY -eY -EQ +Kg +Kg +Kg +zf uU Bh wM @@ -3160,10 +3162,10 @@ sm zs xV Pa -EQ -eY -eY -eY +zf +Kg +Kg +Kg Kz Kz "} @@ -3173,15 +3175,15 @@ Kz Kz Kz Kz -eY -uU -uU -uU -uU -uU -uU -uU -eY +Kg +bW +bW +bW +bW +bW +bW +bW +Kg Kz Kz Kz @@ -3194,36 +3196,15 @@ Kz Kz Kz Kz -eY -eY -eY -eY -eY -eY -eY -eY -eY -Kz -Kz -Kz -Kz -Kz -"} -(28,1,1) = {" -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz +Kg +Kg +Kg +Kg +Kg +Kg +Kg +Kg +Kg Kz Kz Kz diff --git a/_maps/shuttles/shiptest/independent_tide.dmm b/_maps/shuttles/shiptest/independent_tide.dmm index 3ff29edd7e24..018397e33ad1 100644 --- a/_maps/shuttles/shiptest/independent_tide.dmm +++ b/_maps/shuttles/shiptest/independent_tide.dmm @@ -1,11 +1,26 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aI" = ( -/obj/machinery/autolathe/hacked{ - shocked = 1 +"ao" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 }, -/obj/machinery/light/broken, /turf/open/floor/plating, -/area/ship/maintenance/aft) +/area/ship/maintenance/port) +"aD" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/robot_debris, +/obj/structure/light_construct/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/ship/cargo) "aM" = ( /obj/structure/cable{ icon_state = "1-2" @@ -20,6 +35,15 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, /area/ship/maintenance/central) +"aW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/central) "aZ" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, @@ -53,20 +77,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"eq" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/robot_debris, -/obj/structure/light_construct{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/ship/cargo) "eC" = ( /obj/structure/cable{ icon_state = "1-4" @@ -80,26 +90,6 @@ /obj/item/clothing/gloves/color/fyellow, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"ft" = ( -/obj/effect/decal/cleanable/oil/streak, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/glass, -/obj/item/pipe_dispenser, -/obj/item/construction/rcd, -/obj/item/trash/syndi_cakes, -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/lootdrop/maintenance/eight, -/obj/item/reagent_containers/food/snacks/canned/peaches/maint, -/mob/living/simple_animal/hostile/cockroach/glockroach, -/obj/item/clothing/suit/space/engineer, -/obj/item/clothing/head/helmet/space/light/engineer, -/obj/structure/closet/secure_closet{ - icon_state = "eng_secure"; - req_access = list(11) - }, -/obj/item/stack/tape/industrial, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "fI" = ( /mob/living/simple_animal/hostile/cockroach, /obj/item/card/id/captains_spare{ @@ -111,6 +101,19 @@ /obj/item/spacecash/bundle/c20, /turf/open/floor/plating, /area/ship/maintenance/port) +"fZ" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/insectguts, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ship/maintenance/central) "gy" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ dir = 1 @@ -129,6 +132,18 @@ "gS" = ( /turf/open/floor/plating, /area/ship/external) +"hc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "hQ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -139,18 +154,71 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ship/maintenance/fore) -"ih" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "tidedoors"; - name = "Cargo Bay Blast Door" - }, -/turf/open/floor/plating, -/area/ship/cargo) "iW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/closed/wall/rust, /area/ship/maintenance/central) +"kk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"ku" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"ky" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/cryopod/poor{ + dir = 4; + icon = 'icons/obj/crates.dmi'; + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"kC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/cargo) +"kK" = ( +/obj/machinery/autolathe/hacked{ + shocked = 1 + }, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/aft) +"kY" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "ln" = ( /turf/closed/wall, /area/ship/maintenance/starboard) @@ -180,6 +248,17 @@ /obj/item/spacecash/bundle/c100, /turf/open/floor/plating, /area/ship/maintenance/central) +"mz" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/oil/streak, +/obj/item/trash/can/food, +/obj/machinery/light/broken/directional/south, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plating, +/area/ship/maintenance/central) "mB" = ( /obj/structure/cable{ icon_state = "0-2" @@ -192,19 +271,16 @@ /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"mT" = ( -/obj/machinery/button/door{ +"mL" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/glass, +/obj/machinery/door/poddoor{ + dir = 4; id = "tidedoors"; - name = "Blast Door Control"; - pixel_y = -25 + name = "Cargo Bay Blast Door" }, -/obj/machinery/suit_storage_unit/independent/engineering, /turf/open/floor/plating, /area/ship/cargo) -"ng" = ( -/obj/effect/spawner/structure/window/hollow, -/turf/open/floor/plating, -/area/ship/maintenance/fore) "nq" = ( /turf/closed/wall/rust, /area/ship/cargo) @@ -212,19 +288,20 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/cargo) -"oq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "oC" = ( /turf/closed/wall, /area/ship/cargo) +"oJ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "pi" = ( /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/oil/streak, @@ -244,29 +321,35 @@ /obj/item/clothing/mask/gas, /turf/open/floor/plating, /area/ship/maintenance/central) -"pB" = ( -/obj/effect/spawner/structure/window/hollow, -/turf/open/floor/plating, -/area/ship/maintenance/port) "pH" = ( /turf/closed/wall, /area/ship/maintenance/aft) +"pT" = ( +/obj/effect/decal/cleanable/oil/streak, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/glass, +/obj/item/trash/syndi_cakes, +/obj/machinery/airalarm/directional/north, +/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/item/reagent_containers/food/snacks/canned/peaches/maint, +/mob/living/simple_animal/hostile/cockroach/glockroach, +/obj/item/clothing/suit/space/engineer, +/obj/item/clothing/head/helmet/space/light/engineer, +/obj/structure/closet/secure_closet{ + icon_state = "eng_secure"; + req_access = list(11) + }, +/obj/item/stack/tape/industrial, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "pU" = ( /turf/closed/wall/rust, /area/ship/maintenance/aft) -"pZ" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1; - name = "Helm" - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/light/broken, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -23 - }, +"qY" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, /turf/open/floor/plating, -/area/ship/maintenance/fore) +/area/ship/maintenance/port) "rA" = ( /obj/structure/cable{ icon_state = "2-4" @@ -285,39 +368,24 @@ /area/ship/maintenance/fore) "rG" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/observer_start, /turf/open/floor/plating, /area/ship/cargo) "sd" = ( /turf/template_noop, /area/template_noop) -"sw" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/insectguts, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +"tc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/south, +/obj/item/bedsheet/random, +/obj/structure/bed, +/obj/structure/curtain/bounty, /turf/open/floor/plating, -/area/ship/maintenance/central) +/area/ship/maintenance/port) "tr" = ( /obj/structure/frame/computer, /turf/open/floor/plating, /area/ship/maintenance/fore) -"uy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "uW" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, @@ -348,62 +416,38 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"xa" = ( -/obj/item/pickaxe/emergency, -/obj/structure/closet/crate, -/obj/item/storage/bag/ore, -/obj/item/mining_scanner, -/obj/item/shovel/spoon, -/obj/machinery/light, -/obj/item/shovel/spoon, -/obj/item/mining_scanner, -/obj/item/storage/bag/ore, -/obj/item/pickaxe/emergency, -/obj/effect/spawner/lootdrop/maintenance/eight, +"vN" = ( +/obj/machinery/button/door{ + id = "tidedoors"; + name = "Blast Door Control"; + pixel_y = -20; + dir = 1 + }, +/obj/structure/closet/crate/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, /turf/open/floor/plating, /area/ship/cargo) -"xd" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/oil/streak, -/obj/item/trash/can/food, -/obj/machinery/light/broken, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/cockroach, +"wb" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/item/storage/firstaid/regular, +/obj/machinery/light/broken/directional/south, /turf/open/floor/plating, -/area/ship/maintenance/central) -"yY" = ( +/area/ship/maintenance/starboard) +"yr" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/dirt, /obj/item/trash/sosjerky, /obj/item/cigbutt, -/obj/item/circuitboard/machine/rdserver, /obj/structure/closet/secure_closet{ req_access = list(11) }, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/computer/rdconsole, -/obj/item/circuitboard/machine/destructive_analyzer, /turf/open/floor/plating, /area/ship/maintenance/aft) -"yZ" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"zc" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "zm" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 1 @@ -414,6 +458,14 @@ "zr" = ( /turf/closed/wall, /area/ship/maintenance/central) +"Ap" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "AU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -436,26 +488,37 @@ }, /turf/open/floor/plating, /area/ship/maintenance/central) -"BZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +"BI" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1; + name = "Helm" }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/light/broken/directional/south, +/obj/item/radio/intercom/wideband/directional/west, /turf/open/floor/plating, -/area/ship/cargo) -"CD" = ( +/area/ship/maintenance/fore) +"Dc" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/decal/cleanable/blood/footprints, +/obj/machinery/light/broken/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ship/maintenance/central) "DD" = ( /turf/closed/wall/material, /area/ship/maintenance/starboard) +"Ea" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + dir = 4; + id = "tidedoors"; + name = "Cargo Bay Blast Door" + }, +/turf/open/floor/plating, +/area/ship/cargo) "Ed" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/plating, @@ -468,42 +531,30 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/ship/cargo) -"Fg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - req_access = list(11) +"Gu" = ( +/obj/structure/table, +/obj/item/trash/cheesie, +/obj/item/reagent_containers/food/snacks/kebab/rat{ + pixel_y = -6 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 +/obj/item/reagent_containers/food/snacks/kebab/rat/double{ + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"FQ" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/reagent_containers/food/snacks/burger/rat, +/obj/item/cigbutt, +/obj/item/reagent_containers/food/drinks/sillycup/smallcarton{ + list_reagents = list(/datum/reagent/consumable/ethanol/vodka=100) }, -/obj/effect/decal/cleanable/blood/footprints, -/obj/machinery/light/broken{ - dir = 4 +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 25 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/item/areaeditor/shuttle, /turf/open/floor/plating, -/area/ship/maintenance/central) +/area/ship/maintenance/port) "GE" = ( /turf/closed/wall/rust, /area/ship/maintenance/starboard) -"Ha" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) "Hp" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/yellow{ @@ -518,55 +569,10 @@ }, /turf/open/floor/plating, /area/ship/external) -"Il" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"IX" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/docking_port/mobile{ - dir = 4; - launch_status = 0; - port_direction = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) "JG" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, /area/ship/maintenance/aft) -"Km" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/item/storage/firstaid/fire, -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"KK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken, -/obj/item/bedsheet/random, -/obj/structure/bed, -/obj/structure/curtain/bounty, -/turf/open/floor/plating, -/area/ship/maintenance/port) "KS" = ( /obj/effect/spawner/lootdrop/memeorgans, /obj/structure/closet/crate/freezer, @@ -577,27 +583,20 @@ /obj/item/organ/tail/cat, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"Lh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/cryopod{ - close_state = "crate"; - dir = 8; - icon = 'icons/obj/crates.dmi'; - icon_state = "crateopen"; - open_state = "crateopen" - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"LK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, +"KY" = ( +/obj/item/pickaxe/emergency, +/obj/structure/closet/crate, +/obj/item/storage/bag/ore, +/obj/item/mining_scanner, +/obj/item/shovel/spoon, +/obj/machinery/light/directional/south, +/obj/item/shovel/spoon, +/obj/item/mining_scanner, +/obj/item/storage/bag/ore, +/obj/item/pickaxe/emergency, +/obj/effect/spawner/lootdrop/maintenance/eight, /turf/open/floor/plating, -/area/ship/maintenance/starboard) +/area/ship/cargo) "LP" = ( /obj/structure/cable{ icon_state = "1-2" @@ -608,15 +607,6 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, /area/ship/maintenance/central) -"LR" = ( -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/structure/closet/secure_closet/medical2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken, -/obj/item/defibrillator/loaded, -/obj/effect/spawner/lootdrop/maintenance/eight, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "Mk" = ( /obj/effect/decal/cleanable/oil/streak, /obj/machinery/airalarm/directional/east, @@ -625,15 +615,39 @@ }, /turf/open/floor/plating, /area/ship/maintenance/aft) -"MM" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "tidedoors"; - name = "Cargo Bay Blast Door" +"MF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 }, -/obj/effect/decal/cleanable/glass, /turf/open/floor/plating, -/area/ship/cargo) +/area/ship/maintenance/port) +"ML" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + req_access = list(11) + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"MV" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/smes, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "Nr" = ( /obj/effect/decal/cleanable/oil/streak, /obj/item/trash/boritos, @@ -648,27 +662,6 @@ "Ns" = ( /turf/closed/wall, /area/ship/maintenance/port) -"NV" = ( -/obj/structure/table, -/obj/item/trash/cheesie, -/obj/item/reagent_containers/food/snacks/kebab/rat{ - pixel_y = -6 - }, -/obj/item/reagent_containers/food/snacks/kebab/rat/double{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/burger/rat, -/obj/item/cigbutt, -/obj/item/reagent_containers/food/drinks/sillycup/smallcarton{ - list_reagents = list(/datum/reagent/consumable/ethanol/vodka=100) - }, -/obj/machinery/computer/cryopod{ - pixel_y = 25 - }, -/obj/item/areaeditor/shuttle, -/turf/open/floor/plating, -/area/ship/maintenance/port) "Om" = ( /obj/machinery/door/window/northright{ dir = 2 @@ -702,33 +695,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"QZ" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/frame/machine, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"RK" = ( -/obj/machinery/power/apc/auto_name/south, +"Qi" = ( /obj/structure/cable{ - icon_state = "0-8" + icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/machinery/light, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/cigbutt/cigarbutt, -/obj/effect/decal/cleanable/ash, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/ship/maintenance/fore) +/area/ship/maintenance/central) +"Sd" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "Sf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -742,6 +722,18 @@ }, /turf/open/floor/plating, /area/ship/maintenance/central) +"So" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/storage/firstaid/fire, +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_construct/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "SI" = ( /obj/effect/decal/cleanable/glass, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -753,6 +745,17 @@ "Tp" = ( /turf/closed/wall/rust, /area/ship/maintenance/fore) +"TT" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/docking_port/mobile{ + dir = 8; + port_direction = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) "Ub" = ( /obj/structure/cable{ icon_state = "1-2" @@ -818,10 +821,6 @@ /obj/item/trash/semki, /turf/open/floor/plating, /area/ship/maintenance/central) -"Xj" = ( -/obj/effect/spawner/structure/window/hollow, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "Xz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 6 @@ -829,17 +828,6 @@ /obj/structure/sign/warning/gasmask, /turf/closed/wall/rust, /area/ship/maintenance/central) -"Ye" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ship/maintenance/central) "Yo" = ( /turf/closed/wall/rust, /area/ship/maintenance/port) @@ -871,6 +859,17 @@ /obj/item/cigbutt, /turf/open/floor/plating, /area/ship/maintenance/central) +"ZW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_construct/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ship/maintenance/aft) (1,1,1) = {" sd @@ -882,7 +881,7 @@ sd sd sd pH -IX +TT pU pH sd @@ -897,12 +896,12 @@ sd sd Ns Ns -pB +qY Yo pH pH VV -aI +kK pH sd Po @@ -915,13 +914,13 @@ sd sd sd Ns -NV +Gu fI -KK +tc pH -QZ +oJ JG -yY +yr pH zr zr @@ -930,15 +929,15 @@ zm sd "} (4,1,1) = {" -ng +ku Tp Oy Ns -zc +ao Nr -Lh +ky pU -Il +ZW Mk VL pU @@ -949,56 +948,56 @@ HQ sd "} (5,1,1) = {" -ng +ku tr -pZ +BI Oy -oq +MF Ns Ns pH -Ha +hc pH pH pH zr -CD +aW Xz iW gy "} (6,1,1) = {" -ng +ku Vl rA hQ Xg -FQ +Dc Sf Ub aM gB -Ye +Qi Sf LP -sw -xd +fZ +mz zr Po "} (7,1,1) = {" -ng +ku tr -RK +kY Oy nq oC -BZ +kC oC GE ch ln -LK +kk GE zr Zo @@ -1006,14 +1005,14 @@ Bs zm "} (8,1,1) = {" -ng +ku Oy Oy oC -eq +aD bI vb -xa +KY ln Hp ln @@ -1036,7 +1035,7 @@ vf ln vs ln -Km +So eC ln Po @@ -1051,12 +1050,12 @@ oC Ek Ed nt -mT +vN ln -yZ +MV Px GE -Fg +ML ln ln sd @@ -1067,16 +1066,16 @@ sd sd sd oC -ih -ih -MM -MM +Ea +Ea +mL +mL ln -uy +Ap Zj mB ea -LR +wb ln sd sd @@ -1091,7 +1090,7 @@ gS gS uW GE -ft +pT KS Ti aZ @@ -1112,8 +1111,8 @@ sd GE ln DD -Xj -Xj +Sd +Sd ln GE sd diff --git a/_maps/shuttles/shiptest/independent_tranquility.dmm b/_maps/shuttles/shiptest/independent_tranquility.dmm index 215a0416f760..cd5272d0ce9e 100644 --- a/_maps/shuttles/shiptest/independent_tranquility.dmm +++ b/_maps/shuttles/shiptest/independent_tranquility.dmm @@ -15,26 +15,6 @@ "aq" = ( /turf/closed/wall/mineral/titanium, /area/ship/engineering/engine) -"ax" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 1 - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/crewthree) -"aB" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ext_windows" - }, -/turf/open/floor/plating, -/area/ship/hallway/port) "aC" = ( /obj/structure/table/reinforced, /obj/machinery/microwave, @@ -91,30 +71,6 @@ "aO" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/electrical) -"aP" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "apartment_1"; - name = "Apartment 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/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, -/area/ship/crew) "aY" = ( /obj/item/storage/box/donkpockets/donkpocketberry, /obj/item/storage/cans/sixsoda, @@ -133,19 +89,11 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew) -"ba" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "a_1_shutter2" - }, -/turf/open/floor/plating, -/area/ship/crew) -"bf" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) +"bb" = ( +/obj/machinery/vending/games, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet, +/area/ship/crew/crewfive) "bg" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -161,74 +109,37 @@ /obj/machinery/pipedispenser, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"bo" = ( +"bn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) -"bq" = ( -/obj/structure/table/wood, -/obj/machinery/computer/bookmanagement, -/obj/machinery/light/dim{ - dir = 1 - }, -/obj/structure/sign/poster/retro/nanotrasen_logo_70s{ - pixel_y = 32 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -26 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 }, /obj/effect/turf_decal/siding/wood{ color = "#792f27"; - dir = 9 - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/crewthree) -"bw" = ( -/obj/machinery/light{ - dir = 1 + dir = 5 }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"bo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"bF" = ( -/obj/effect/turf_decal/techfloor, -/obj/structure/table, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/bot_assembly/cleanbot{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/machinery/light/dim{ +"bt" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) -"bI" = ( -/obj/effect/turf_decal/corner/opaque/orange/border{ - dir = 5 - }, -/obj/machinery/camera/autoname{ - dir = 9 - }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel, -/area/ship/crew/cryo) +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/crew) "bL" = ( /obj/structure/cable{ icon_state = "1-2" @@ -239,37 +150,16 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) -"bO" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/structure/closet/wall{ - dir = 4; - name = "Wardrobe"; - pixel_x = -32 +"bN" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 }, -/obj/item/clothing/under/costume/singer/yellow, -/obj/item/clothing/shoes/singery, -/obj/item/clothing/head/wig/random, -/obj/item/clothing/under/color/jumpskirt/random, -/obj/item/clothing/under/color/random, -/obj/item/clothing/under/rank/command/captain/skirt, -/obj/item/clothing/under/rank/command/captain/suit, -/obj/item/pen/fountain/captain, -/obj/item/radio/headset/heads/captain, -/obj/item/storage/backpack/duffelbag/captain, -/obj/item/clothing/suit/hooded/wintercoat/captain, -/obj/item/clothing/suit/armor/vest/capcarapace/duster, -/obj/item/clothing/head/caphat/cowboy, -/obj/item/clothing/shoes/cowboy/fancy, -/obj/item/clothing/under/pants/camo, -/obj/item/clothing/suit/hooded/wintercoat/captain, -/turf/open/floor/wood, -/area/ship/crew/dorm/dormfive) +/obj/effect/turf_decal/corner/transparent/bar, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "bP" = ( /obj/structure/cable{ icon_state = "4-8" @@ -285,16 +175,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/crewfour) -"bS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) "bX" = ( /obj/structure/table/wood, /obj/item/paper/natural, @@ -325,6 +205,19 @@ }, /turf/open/floor/wood/mahogany, /area/ship/crew/crewthree) +"cp" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light/directional/west, +/obj/item/stack/sheet/mineral/uranium/fifty, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) "cH" = ( /turf/closed/wall/mineral/titanium, /area/ship/crew/cryo) @@ -339,6 +232,17 @@ "cJ" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/security/armory) +"cV" = ( +/obj/structure/table/wood, +/obj/machinery/computer/bookmanagement, +/obj/machinery/light/dim/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; + dir = 9 + }, +/turf/open/floor/wood/mahogany, +/area/ship/crew/crewthree) "cW" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 5 @@ -354,13 +258,10 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical/surgery) -"cY" = ( -/obj/machinery/suit_storage_unit/independent/mining/eva, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/storage) +"cX" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "cZ" = ( /obj/structure/chair/plastic{ dir = 8 @@ -374,12 +275,48 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) +"da" = ( +/obj/effect/turf_decal/corner/opaque/green/border{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -26; + pixel_y = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) "dh" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/walnut, /area/ship/crew) +"dj" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + color = "#792f27"; + dir = 8 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/wood, +/area/ship/crew/canteen) "dk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 @@ -420,27 +357,14 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"dH" = ( -/obj/structure/chair/sofa/corner, -/obj/machinery/light/dim{ - dir = 1 - }, +"dF" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, /obj/effect/turf_decal/siding/wood{ - dir = 5 + color = "#792f27"; + dir = 9 }, /turf/open/floor/wood, -/area/ship/crew/dorm/dormfive) -"dJ" = ( -/obj/machinery/processor, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel/white, /area/ship/crew/canteen) "dN" = ( /obj/effect/turf_decal/techfloor{ @@ -474,6 +398,17 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) +"dV" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; + dir = 4 + }, +/turf/open/floor/wood/mahogany, +/area/ship/crew/crewthree) "ee" = ( /obj/machinery/door/airlock/command/glass{ name = "Bridge" @@ -483,28 +418,64 @@ color = "#4c535b" }, /area/ship/bridge) -"em" = ( -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi' +"ei" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -8; + pixel_y = -3 }, -/area/ship/bridge) -"eo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/carpet, -/area/ship/crew/dorm) -"es" = ( -/obj/machinery/light/dim{ - dir = 1 +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 11 }, -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/seeded, -/obj/effect/spawner/lootdrop/seeded, -/obj/effect/spawner/lootdrop/seeded, -/obj/effect/spawner/lootdrop/seeded, -/obj/item/seeds/random, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) +/obj/item/stack/cable_coil/random/five{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/reagent_containers/glass/beaker, +/obj/machinery/light/dim/directional/west, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/ship/crew/dorm) +"ek" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "a_3_shutter2" + }, +/turf/open/floor/plating, +/area/ship/crew/crewthree) +"em" = ( +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi' + }, +/area/ship/bridge) +"en" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) +"eo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/carpet, +/area/ship/crew/dorm) +"er" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Dining Room" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/crew/canteen) "eu" = ( /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ @@ -529,6 +500,14 @@ /obj/structure/sign/directions/medical, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/canteen) +"eA" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/machinery/computer/cryopod/directional/west, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/crew/cryo) "eC" = ( /obj/structure/cable{ icon_state = "4-8" @@ -544,6 +523,41 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/cryo) +"eF" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "a_2_shutter" + }, +/turf/open/floor/plating, +/area/ship/crew/crewtwo) +"eI" = ( +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/storage/box/ingredients/carnivore, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/grains, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/mayonnaise, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/storage/box/condimentbottles, +/obj/structure/closet/secure_closet/wall{ + dir = 4; + name = "Kitchen Cabinet"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "eJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -565,6 +579,17 @@ }, /turf/open/floor/grass, /area/ship/crew/hydroponics) +"eN" = ( +/obj/machinery/light/directional/west, +/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/carpet/nanoweave/beige, +/area/ship/hallway/port) "eS" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -588,19 +613,17 @@ /obj/item/pen/blue, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/crewfour) -"eZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +"fa" = ( +/obj/effect/turf_decal/techfloor/orange, +/obj/machinery/power/terminal{ dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/firealarm/directional/south, +/obj/structure/cable/yellow{ + icon_state = "0-9" }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) "fc" = ( /obj/structure/chair/office{ dir = 8 @@ -611,25 +634,6 @@ }, /turf/open/floor/plating/rust, /area/ship/crew/dorm) -"fe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_x = -6; - pixel_y = 26 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) "fg" = ( /turf/open/floor/engine/hull, /area/ship/external) @@ -651,6 +655,29 @@ /obj/item/clothing/suit/hooded/wintercoat/hydro, /turf/open/floor/grass, /area/ship/crew/hydroponics) +"fy" = ( +/obj/effect/turf_decal/corner/opaque/green/border, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/closet/wall{ + dir = 1; + pixel_y = -28 + }, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/storage/backpack/duffelbag, +/obj/item/storage/backpack/duffelbag, +/obj/item/storage/backpack/satchel, +/obj/item/storage/backpack/satchel, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) "fz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -660,23 +687,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/starboard) -"fD" = ( -/obj/machinery/door/airlock/hatch{ - name = "Supply Closet" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, -/area/ship/storage) "fF" = ( /obj/effect/turf_decal/techfloor{ dir = 9 @@ -692,17 +702,31 @@ /obj/item/bedsheet/captain, /turf/open/floor/wood, /area/ship/crew/dorm/dormfive) -"fJ" = ( -/obj/machinery/light{ +"fK" = ( +/obj/structure/chair/sofa/corner{ dir = 1 }, -/obj/structure/chair/sofa/corner, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 1 +/obj/machinery/firealarm/directional/west, +/obj/structure/sign/poster/official/the_owl{ + pixel_y = -32 }, -/turf/open/floor/wood, -/area/ship/crew/canteen) +/turf/open/floor/carpet, +/area/ship/crew/crewfive) +"fN" = ( +/obj/structure/railing{ + dir = 8; + layer = 3.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/effect/turf_decal/spline/fancy/opaque/blue{ + dir = 10 + }, +/obj/machinery/light/dim/directional/south, +/obj/machinery/suit_storage_unit/independent/pilot, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "fP" = ( /obj/structure/frame/machine, /obj/item/stack/cable_coil/random/five, @@ -712,36 +736,46 @@ /obj/item/stock_parts/manipulator, /turf/open/floor/plasteel/telecomms_floor, /area/ship/crew/crewfour) -"fQ" = ( -/obj/machinery/light{ - dir = 1 +"fS" = ( +/obj/docking_port/mobile{ + dir = 2 }, -/obj/structure/chair/sofa/corner{ +/turf/open/floor/engine/hull, +/area/ship/external) +"fU" = ( +/obj/machinery/door/airlock/wood{ + dir = 4; + name = "Cryogenics" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"fR" = ( -/obj/machinery/cryopod{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -19 +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech, /area/ship/crew/cryo) -"fS" = ( -/obj/docking_port/mobile{ - dir = 2 +"fY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/engine/hull, -/area/ship/external) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) "fZ" = ( /obj/effect/turf_decal/borderfloorblack, /obj/effect/turf_decal/borderfloorblack/corner{ @@ -772,23 +806,60 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) -"gf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) "gh" = ( /obj/structure/sign/departments/botany, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/hydroponics) +"gk" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew) "gn" = ( /obj/machinery/vending/classicbeats, /obj/effect/turf_decal/techfloor{ dir = 5 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) +"gp" = ( +/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/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) +"gs" = ( +/obj/effect/turf_decal/corner/opaque/green/border{ + dir = 10 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) "gC" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -806,38 +877,17 @@ }, /turf/open/floor/wood/mahogany, /area/ship/crew/crewthree) -"gJ" = ( -/obj/machinery/button/door{ - id = "a_3_shutter2"; - name = "Shutters"; - pixel_x = -6; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" +"gM" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/techfloor/orange{ dir = 6 }, -/obj/machinery/firealarm{ - pixel_x = 6; - pixel_y = 26 - }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 1 - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/crewthree) -"gL" = ( -/obj/machinery/camera/autoname{ - dir = 10 - }, -/turf/open/floor/engine/hull, -/area/ship/external) +/obj/machinery/light/dim/directional/east, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "gN" = ( /obj/machinery/computer/operating{ dir = 1 @@ -854,6 +904,21 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) +"gV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) "gY" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -873,6 +938,29 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) +"hd" = ( +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 5 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/machinery/washing_machine, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) +"hg" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew) "hh" = ( /obj/structure/cable{ icon_state = "4-8" @@ -888,10 +976,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/cryo) -"hi" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/visible/layer2, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) "hn" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Workshop" @@ -907,6 +991,44 @@ color = "#4c535b" }, /area/ship/crew/crewfive) +"ht" = ( +/obj/structure/closet/secure_closet/freezer{ + name = "Minifridge" + }, +/obj/item/reagent_containers/food/drinks/soda_cans/molten, +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, +/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game, +/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game, +/obj/item/reagent_containers/food/drinks/soda_cans/random, +/obj/item/reagent_containers/food/drinks/soda_cans/random, +/obj/item/reagent_containers/food/drinks/soda_cans/sodawater, +/obj/item/storage/cans/sixsoda, +/obj/item/reagent_containers/food/snacks/canned/beans, +/obj/item/reagent_containers/food/snacks/cheesiehonkers, +/obj/item/reagent_containers/food/snacks/cheesiehonkers, +/obj/item/reagent_containers/food/snacks/spacetwinkie, +/obj/item/reagent_containers/food/snacks/spacetwinkie, +/obj/item/reagent_containers/food/snacks/spacetwinkie, +/obj/item/reagent_containers/food/snacks/spacetwinkie, +/obj/item/reagent_containers/food/snacks/muffin/berry, +/obj/item/reagent_containers/food/snacks/muffin, +/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_berry, +/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_orange, +/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_orange, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/birch, +/area/ship/crew/crewfive) +"hu" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "ext_windows" + }, +/turf/open/floor/plating, +/area/ship/hallway/port) "hx" = ( /obj/effect/turf_decal/techfloor{ dir = 4 @@ -996,6 +1118,24 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) +"hR" = ( +/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/public/glass{ + dir = 4; + name = "Dining Room" + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/crew/canteen) "hU" = ( /obj/effect/turf_decal/siding/wood/end, /obj/item/reagent_containers/glass/bucket/wooden{ @@ -1004,38 +1144,6 @@ }, /turf/open/floor/wood, /area/ship/crew/hydroponics) -"hW" = ( -/obj/structure/closet/secure_closet/freezer{ - name = "Minifridge" - }, -/obj/item/reagent_containers/food/drinks/soda_cans/molten, -/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, -/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game, -/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game, -/obj/item/reagent_containers/food/drinks/soda_cans/random, -/obj/item/reagent_containers/food/drinks/soda_cans/random, -/obj/item/reagent_containers/food/drinks/soda_cans/sodawater, -/obj/item/storage/cans/sixsoda, -/obj/item/reagent_containers/food/snacks/canned/beans, -/obj/item/reagent_containers/food/snacks/cheesiehonkers, -/obj/item/reagent_containers/food/snacks/cheesiehonkers, -/obj/item/reagent_containers/food/snacks/spacetwinkie, -/obj/item/reagent_containers/food/snacks/spacetwinkie, -/obj/item/reagent_containers/food/snacks/spacetwinkie, -/obj/item/reagent_containers/food/snacks/spacetwinkie, -/obj/item/reagent_containers/food/snacks/muffin/berry, -/obj/item/reagent_containers/food/snacks/muffin, -/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_berry, -/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_orange, -/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_orange, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/end{ - dir = 4 - }, -/turf/open/floor/wood/birch, -/area/ship/crew/crewfive) "ia" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/tech, @@ -1051,16 +1159,6 @@ /obj/structure/sign/departments/chemistry, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/dorm) -"ih" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) "iq" = ( /obj/structure/table, /obj/item/reagent_containers/food/condiment/saltshaker{ @@ -1072,6 +1170,16 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) +"iu" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/obj/item/pen/fourcolor, +/obj/item/pen, +/obj/item/pen, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet, +/area/ship/crew/crewfive) "iA" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1085,32 +1193,6 @@ }, /turf/open/floor/carpet/black, /area/ship/crew/dorm/dormthree) -"iD" = ( -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/item/storage/overmap_ship/electric{ - pixel_x = -22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"iG" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/bookbinder, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27" - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/crewthree) "iH" = ( /turf/closed/wall/mineral/titanium, /area/ship/crew/dorm/dormtwo) @@ -1144,13 +1226,30 @@ "iK" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/dorm/dormfive) -"iN" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "a_5_shutter" +"iT" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/ship/crew/crewfour) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) +"iY" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/suit_storage_unit/independent/engineering, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) "jc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/layer2{ dir = 8 @@ -1194,32 +1293,71 @@ /area/ship/crew/crewtwo) "jn" = ( /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 + 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/carpet/nanoweave/purple, +/area/ship/crew/crewtwo) +"jp" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/effect/turf_decal/borderfloorwhite{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/mob/living/simple_animal/mouse/white{ + name = "The Brain" + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"jr" = ( +/obj/machinery/hydroponics/soil, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"js" = ( +/obj/structure/closet/wall{ + dir = 4; + name = "Wardrobe"; + pixel_x = -28 + }, +/obj/item/clothing/head/beret, +/obj/item/clothing/under/color/jumpskirt/random, +/obj/item/clothing/under/color/random, +/obj/item/clothing/under/dress/skirt/red, +/obj/item/clothing/suit/longcoat, +/obj/item/clothing/suit/jacket/letterman_red, +/obj/item/clothing/head/wizard/marisa, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/shoes/wheelys, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sneakers/black, +/turf/open/floor/carpet/green, +/area/ship/crew/dorm/dormtwo) +"jt" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/crew/crewtwo) -"jw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/ihejirika_small/right{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 5 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "jy" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1236,15 +1374,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"jz" = ( -/obj/structure/table/wood, -/obj/machinery/microwave, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew) "jD" = ( /obj/structure/table/wood, /obj/effect/turf_decal/corner/transparent/bar, @@ -1253,71 +1382,10 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew) -"jH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/end{ - color = "#792f27"; - dir = 8 - }, -/obj/structure/fluff/hedge, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"jI" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1; - name = "communications" - }, -/obj/machinery/computer/helm/viewscreen{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/spline/fancy/opaque/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "jK" = ( /obj/structure/sign/poster/official/moth/hardhats, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/electrical) -"jL" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/storage/box/ingredients/carnivore, -/obj/item/storage/box/ingredients/fruity, -/obj/item/storage/box/ingredients/grains, -/obj/item/storage/box/ingredients/vegetarian, -/obj/item/storage/box/ingredients/wildcard, -/obj/item/storage/box/ingredients/wildcard, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/storage/box/condimentbottles, -/obj/structure/closet/secure_closet/wall{ - dir = 4; - name = "Kitchen Cabinet"; - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) "jR" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -1349,20 +1417,6 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) -"jV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/modularpc, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) -"kk" = ( -/obj/structure/chair/sofa{ - dir = 1 - }, -/obj/machinery/light/dim, -/turf/open/floor/carpet, -/area/ship/crew/crewfive) "kr" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1373,15 +1427,6 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"ks" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew) "kw" = ( /obj/item/toy/cards/deck/kotahi{ pixel_x = -4; @@ -1401,6 +1446,45 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) +"kC" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/closet/wall{ + dir = 4; + name = "Wardrobe"; + pixel_x = -28 + }, +/obj/item/clothing/under/costume/singer/yellow, +/obj/item/clothing/shoes/singery, +/obj/item/clothing/head/wig/random, +/obj/item/clothing/under/color/jumpskirt/random, +/obj/item/clothing/under/color/random, +/obj/item/clothing/under/rank/command/captain/skirt, +/obj/item/clothing/under/rank/command/captain/suit, +/obj/item/pen/fountain/captain, +/obj/item/radio/headset/heads/captain, +/obj/item/storage/backpack/duffelbag/captain, +/obj/item/clothing/suit/hooded/wintercoat/captain, +/obj/item/clothing/suit/armor/vest/capcarapace/duster, +/obj/item/clothing/head/caphat/cowboy, +/obj/item/clothing/shoes/cowboy/fancy, +/obj/item/clothing/under/pants/camo, +/obj/item/clothing/suit/hooded/wintercoat/captain, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfive) +"kK" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "a_1_shutter" + }, +/turf/open/floor/plating, +/area/ship/crew/dorm) "kR" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ @@ -1423,22 +1507,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew/toilet) -"kW" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/secure_data/laptop{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/effect/turf_decal/spline/fancy/opaque/yellow{ - dir = 10 - }, -/obj/machinery/light/dim{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "kY" = ( /obj/machinery/door/airlock/command/glass{ name = "Bridge" @@ -1463,37 +1531,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering/engine) -"li" = ( -/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/firealarm{ - pixel_x = 6; - pixel_y = 26 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"ly" = ( -/obj/structure/bed, -/obj/structure/curtain/cloth/grey, -/obj/machinery/light/dim{ - dir = 1 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm/dormthree) "lz" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -1505,6 +1542,11 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, /area/ship/crew/hydroponics) +"lG" = ( +/obj/machinery/light/directional/east, +/obj/machinery/vending/modularpc, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) "lJ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1548,50 +1590,50 @@ "lW" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/crewthree) -"mb" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood, -/obj/item/toy/crayon/spraycan{ - pixel_y = 8 +"ma" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{ + dir = 4 }, -/obj/item/toy/crayon/spraycan{ - pixel_x = -6; - pixel_y = 4 +/obj/effect/turf_decal/number/five{ + dir = 4 }, -/obj/item/toy/crayon/spraycan{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"mc" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 }, -/obj/item/toy/crayon/spraycan{ - pixel_y = 1 +/obj/effect/turf_decal/spline/fancy/opaque/blue{ + dir = 6 }, -/obj/machinery/light, -/turf/open/floor/wood/birch, -/area/ship/crew/crewtwo) -"md" = ( -/obj/effect/turf_decal/corner/opaque/green/border, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/airalarm/directional/south, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"mf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -26 +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 }, -/turf/open/floor/plasteel, -/area/ship/crew/cryo) -"my" = ( -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{ - dir = 8 +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood/birch, +/area/ship/crew/crewfive) +"mz" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "a_4_shutter"; + dir = 4 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/turf/open/floor/plating, +/area/ship/crew/crewfive) "mA" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/bridge) @@ -1628,30 +1670,40 @@ /obj/machinery/door/poddoor/shutters/preopen{ id = "a_4_shutter" }, -/turf/open/floor/plating, -/area/ship/crew/crewfive) -"mT" = ( -/obj/structure/chair/sofa/corner, -/obj/effect/turf_decal/siding/wood{ - dir = 4 +/turf/open/floor/plating, +/area/ship/crew/crewfive) +"mR" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/machinery/light/dim/directional/north, +/obj/item/bedsheet/brown, +/turf/open/floor/carpet, +/area/ship/crew/dorm) +"mV" = ( +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 + }, +/obj/effect/turf_decal/corner/transparent/bar, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/item/kitchen/knife/butcher{ + pixel_x = -6; + pixel_y = 7 }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/wood/walnut, -/area/ship/crew) -"mY" = ( -/obj/structure/chair/sofa/corner{ - dir = 8 +/obj/item/clothing/gloves/butchering{ + pixel_x = 5; + pixel_y = -1 }, -/obj/machinery/camera/autoname{ - dir = 9 +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) +"mW" = ( +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 6 +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/crewthree) +/area/ship/hallway/port) "nc" = ( /obj/structure/chair/sofa/left{ dir = 8 @@ -1670,6 +1722,16 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/starboard) +"nr" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/cloth/grey, +/obj/machinery/light/dim/directional/east, +/obj/structure/sign/poster/contraband/gec{ + pixel_y = -32 + }, +/turf/open/floor/carpet/green, +/area/ship/crew/dorm/dormtwo) "nw" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1692,35 +1754,6 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) -"nD" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/reagent_containers/food/drinks/mug/coco{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/book/random{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/poster/contraband/steppyflag{ - pixel_x = 32 - }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm/dormthree) -"nI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) "nN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 @@ -1742,18 +1775,6 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew) -"nR" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/light/dim{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "nX" = ( /obj/structure/frame/machine, /obj/item/stack/cable_coil/random/five, @@ -1767,15 +1788,6 @@ /obj/item/stock_parts/subspace/amplifier, /turf/open/floor/plasteel/telecomms_floor, /area/ship/crew/crewfour) -"ok" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) "op" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1818,121 +1830,42 @@ }, /turf/open/floor/carpet, /area/ship/crew/crewfive) -"oF" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "apartment_5"; - name = "Apartment 5" - }, +"oS" = ( /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 + icon_state = "2-8" }, +/turf/open/floor/wood/ebony, +/area/ship/crew/canteen) +"oW" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Dining Room" + }, /turf/open/floor/plasteel/patterned/ridged{ color = "#4c535b" }, -/area/ship/crew/crewfour) -"oG" = ( -/obj/machinery/door/airlock{ - name = "Cryogenics" - }, +/area/ship/crew/canteen) +"pa" = ( +/obj/machinery/power/terminal, /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/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, -/area/ship/crew/cryo) -"oJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/structure/curtain/cloth/grey, -/obj/machinery/light/dim{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/hacking_guide{ - pixel_y = -32 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm/dormfour) -"oS" = ( /obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/wood/ebony, -/area/ship/crew/canteen) -"pb" = ( -/obj/machinery/button/door{ - id = "a_4_shutter"; - name = "Shutters"; - pixel_x = 6; - pixel_y = 26 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_x = -6; - pixel_y = 26 - }, -/turf/open/floor/wood/birch, -/area/ship/crew/crewfive) -"pf" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/closet/wall{ - dir = 1; - name = "Wardrobe"; - pixel_y = -32 + icon_state = "0-8" }, -/obj/item/clothing/under/costume/singer/blue, -/obj/item/clothing/shoes/singerb, -/obj/item/clothing/head/wig/random, -/obj/item/storage/box/syndie_kit/chameleon, -/obj/item/paper_bin/bundlenatural, -/obj/item/clothing/under/color/jumpskirt/random, -/obj/item/clothing/under/color/random, -/obj/item/clothing/suit/jacket/letterman, -/obj/item/clothing/suit/toggle/lawyer/brown, -/obj/item/clothing/under/suit/burgundy, -/obj/item/clothing/under/pants/red, -/obj/item/clothing/suit/nerdshirt, -/obj/item/storage/bag/books, -/turf/open/floor/wood, -/area/ship/crew/dorm/dormfive) -"ph" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/structure/curtain/cloth/grey, -/obj/machinery/light/dim{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/sign/poster/contraband/gec{ - pixel_y = -32 - }, -/turf/open/floor/carpet/green, -/area/ship/crew/dorm/dormtwo) +/obj/machinery/light/directional/north, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering/engine) "pj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/layer2{ dir = 8 @@ -1942,22 +1875,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/port) -"pm" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm/dormfive) "pp" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1971,6 +1888,22 @@ }, /turf/open/floor/carpet/green, /area/ship/crew/dorm/dormtwo) +"pt" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "pu" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -1994,6 +1927,31 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) +"pw" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4; + id_tag = "apartment_5"; + name = "Apartment 5" + }, +/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/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/crew/crewfour) "px" = ( /obj/effect/turf_decal/corner/transparent/bar, /obj/effect/turf_decal/corner/transparent/bar{ @@ -2017,6 +1975,20 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical/surgery) +"pJ" = ( +/obj/structure/toilet/secret{ + dir = 4; + secret_type = /obj/item/storage/box/donkpockets/donkpocketgondola + }, +/obj/effect/turf_decal/borderfloorwhite{ + dir = 10 + }, +/obj/machinery/light/directional/west, +/mob/living/simple_animal/mouse/brown{ + name = "Pinkie" + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) "pK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -2031,7 +2003,17 @@ /turf/open/floor/plasteel/patterned/ridged{ color = "#4c535b" }, -/area/ship/hallway/port) +/area/ship/hallway/port) +"pP" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/directional/north, +/obj/item/toy/plush/knight{ + name = "The Navigator"; + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "pT" = ( /obj/effect/turf_decal/techfloor/orange, /obj/structure/closet/wall/orange{ @@ -2068,27 +2050,26 @@ }, /turf/open/floor/plating, /area/ship/external) -"qj" = ( -/obj/structure/cable{ - icon_state = "1-2" +"qe" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop{ + dir = 8 }, -/obj/machinery/light{ +/obj/effect/turf_decal/borderfloorblack/cee{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{ - dir = 9 +/obj/item/toy/plush/goatplushie{ + desc = "The Captain insists this plushie does not exist."; + pixel_x = -7; + pixel_y = 16 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) "qq" = ( /obj/structure/sign/departments/security, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/crewfive) -"qz" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/carpet/green, -/area/ship/crew/dorm/dormtwo) "qB" = ( /obj/item/kirbyplants/random, /obj/machinery/button/door{ @@ -2116,52 +2097,36 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"qS" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "a_4_shutter2" +"qV" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/closet/wall{ + dir = 1; + name = "Wardrobe"; + pixel_y = -28 }, -/turf/open/floor/plating, +/obj/item/clothing/under/costume/singer/blue, +/obj/item/clothing/shoes/singerb, +/obj/item/clothing/head/wig/random, +/obj/item/storage/box/syndie_kit/chameleon, +/obj/item/paper_bin/bundlenatural, +/obj/item/clothing/under/color/jumpskirt/random, +/obj/item/clothing/under/color/random, +/obj/item/clothing/suit/jacket/letterman, +/obj/item/clothing/suit/toggle/lawyer/brown, +/obj/item/clothing/under/suit/burgundy, +/obj/item/clothing/under/pants/red, +/obj/item/clothing/suit/nerdshirt, +/obj/item/storage/bag/books, +/turf/open/floor/wood, /area/ship/crew/dorm/dormfive) -"qT" = ( -/obj/effect/turf_decal/techfloor{ - dir = 6 - }, -/obj/effect/turf_decal/spline/fancy/opaque/blue{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"rd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/obj/structure/closet/wall/blue{ - dir = 1; - name = "Janitorial Closet"; - pixel_y = -32 +"rc" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27" }, -/obj/item/soap/deluxe, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/rag, -/obj/item/storage/box/mousetraps, -/obj/item/clothing/shoes/galoshes, -/obj/item/clothing/head/soft/purple, -/obj/item/clothing/gloves/color/latex/nitrile/evil, -/obj/item/storage/box/maid, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/obj/machinery/light/directional/south, +/turf/open/floor/wood/mahogany, +/area/ship/crew/crewthree) "ri" = ( /obj/effect/turf_decal/techfloor/orange, /obj/structure/cable/yellow{ @@ -2185,48 +2150,26 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering/engine) -"rr" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/item/kitchen/knife/butcher{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/gloves/butchering{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/canteen) -"rs" = ( -/obj/effect/turf_decal/corner/opaque/green/border{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -26; - pixel_y = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 +"ro" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 + dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26; - pixel_y = -6 +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) +"rt" = ( +/obj/structure/table/wood, +/obj/machinery/light/dim/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/turf/open/floor/plasteel, -/area/ship/crew/cryo) +/obj/item/a_gift, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfive) "rv" = ( /obj/structure/chair/wood{ dir = 8 @@ -2267,13 +2210,6 @@ /obj/machinery/vending/cola/shamblers, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) -"rR" = ( -/obj/effect/turf_decal/techfloor{ - dir = 9 - }, -/obj/machinery/light/dim, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) "rY" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 4; @@ -2287,25 +2223,39 @@ "sb" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/medical/surgery) -"sd" = ( -/obj/structure/table/wood, +"se" = ( +/obj/machinery/button/door{ + id = "a_4_shutter"; + name = "Shutters"; + pixel_x = 6; + pixel_y = 26 + }, /obj/effect/turf_decal/siding/wood{ - dir = 9 + dir = 1 }, -/obj/item/storage/toolbox/artistic{ - pixel_x = -3; - pixel_y = 4 +/obj/machinery/firealarm/directional/north{ + pixel_x = -7 }, -/obj/item/storage/toolbox/artistic{ - pixel_x = 2; - pixel_y = -1 +/turf/open/floor/wood/birch, +/area/ship/crew/crewfive) +"so" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, -/obj/item/radio/intercom{ - pixel_y = 26 +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) +"sp" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/camera/autoname, -/turf/open/floor/wood/birch, -/area/ship/crew/crewtwo) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "sr" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -2366,6 +2316,14 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) +"sK" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "a_1_shutter2" + }, +/turf/open/floor/plating, +/area/ship/crew) "sP" = ( /obj/machinery/light_switch{ dir = 8; @@ -2390,15 +2348,6 @@ }, /turf/open/floor/wood/mahogany, /area/ship/crew/crewthree) -"sR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) "sW" = ( /obj/effect/turf_decal/corner/transparent/bar{ dir = 1 @@ -2416,24 +2365,6 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, /area/ship/crew/hydroponics) -"tr" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/item/paper_bin/construction{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/paint/anycolor{ - pixel_x = 7; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/birch, -/area/ship/crew/crewtwo) "ts" = ( /obj/machinery/light_switch{ dir = 4; @@ -2452,45 +2383,6 @@ }, /turf/open/floor/carpet/black, /area/ship/crew/dorm/dormthree) -"tv" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ - dir = 6 - }, -/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen{ - dir = 6 - }, -/obj/machinery/light/dim, -/obj/machinery/suit_storage_unit/independent/pilot, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"tx" = ( -/obj/item/circuitboard/machine/telecomms/relay, -/obj/item/circuitboard/machine/telecomms/message_server, -/obj/structure/closet/wall/blue{ - dir = 4; - name = "Component Storage"; - pixel_x = -32 - }, -/obj/item/stack/cable_coil/blue, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/effect/turf_decal/techfloor, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) "tz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -2542,6 +2434,24 @@ }, /turf/open/floor/wood, /area/ship/crew/dorm/dormfive) +"tM" = ( +/obj/effect/turf_decal/techfloor, +/obj/structure/table, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/bot_assembly/cleanbot{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) "tQ" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2549,6 +2459,14 @@ }, /turf/open/floor/plating, /area/ship/medical/surgery) +"tX" = ( +/obj/docking_port/stationary{ + dwidth = 10; + width = 30; + height = 15 + }, +/turf/open/floor/engine/hull, +/area/ship/external) "tY" = ( /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) @@ -2582,6 +2500,11 @@ /obj/item/stack/sheet/mineral/wood/fifty, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) +"ud" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "uf" = ( /obj/structure/chair/comfy/beige{ dir = 1 @@ -2598,45 +2521,6 @@ }, /turf/open/floor/carpet/cyan, /area/ship/crew/crewthree) -"uo" = ( -/obj/structure/table, -/obj/item/ammo_casing/c45/rubbershot{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/ammo_casing/c45/rubbershot{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/ammo_casing/c45/rubbershot{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/screwdriver{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/effect/turf_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/turf_decal/borderfloorblack{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/sign/poster/contraband/backdoor_xeno_babes_6{ - pixel_x = -32 - }, -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/obj/item/flashlight/lamp{ - pixel_x = -9; - pixel_y = 12 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) "us" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2647,35 +2531,14 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewfive) -"uA" = ( -/obj/structure/table, -/obj/item/ammo_box/magazine/m45/rubbershot{ - pixel_x = 7; - pixel_y = -2 - }, -/obj/effect/turf_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/turf_decal/borderfloorblack{ - dir = 5 - }, -/obj/item/gun/ballistic/automatic/pistol/m1911/no_mag{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_y = 32 +"uC" = ( +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 1 }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) +/obj/machinery/light/directional/north, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) "uI" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2698,11 +2561,9 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) -"uK" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, +"uL" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) "uM" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ @@ -2713,6 +2574,11 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/port) +"uO" = ( +/obj/machinery/light/directional/west, +/obj/machinery/vending/assist, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "uU" = ( /obj/effect/turf_decal/techfloor/orange/corner{ dir = 1 @@ -2748,22 +2614,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/wood, /area/ship/crew/dorm/dormfive) -"uZ" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/garlicbread, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew) "vd" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2775,40 +2625,27 @@ /obj/machinery/vending/boozeomat, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/canteen) -"vo" = ( -/obj/structure/table, -/obj/effect/turf_decal/techfloor, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/item/disk/tech_disk/major{ - pixel_x = -7; - pixel_y = -5 - }, -/obj/item/disk/tech_disk{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) "vx" = ( /turf/open/floor/wood/ebony, /area/ship/crew/canteen) -"vE" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 9 +"vC" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Supply Closet" }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/suit_storage_unit/independent/engineering, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/electrical) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/storage) "vG" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -2824,6 +2661,17 @@ /obj/structure/sign/departments/engineering, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/electrical) +"vP" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "vV" = ( /obj/structure/table, /obj/effect/turf_decal/siding/wood{ @@ -2853,20 +2701,6 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"wj" = ( -/obj/structure/table, -/obj/machinery/computer/telecomms/monitor{ - dir = 4; - icon_keyboard = "laptop_key"; - icon_screen = "seclaptop"; - icon_state = "laptop" - }, -/obj/effect/turf_decal/techfloor/corner, -/obj/effect/turf_decal/techfloor/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) "wt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2877,12 +2711,24 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"wy" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{ - dir = 4 +"wz" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 26; + pixel_y = -6 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/obj/machinery/button/door{ + dir = 8; + id = "apartment_2"; + normaldoorcontrol = 1; + pixel_x = 26; + pixel_y = 6; + specialfunctions = 4 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet/nanoweave/purple, +/area/ship/crew/crewtwo) "wA" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/cakeslice/lime, @@ -2894,55 +2740,6 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) -"wI" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "apartment_3"; - name = "Apartment 3" - }, -/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/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, -/area/ship/crew/crewthree) -"wJ" = ( -/obj/structure/window/reinforced, -/obj/structure/sink/puddle, -/obj/machinery/light/dim{ - dir = 8 - }, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) -"xc" = ( -/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/public/glass{ - name = "Dining Room" - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, -/area/ship/crew/canteen) "xf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2964,13 +2761,6 @@ /obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/crewfour) -"xi" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ext_windows" - }, -/turf/open/floor/plating, -/area/ship/crew/hydroponics) "xk" = ( /obj/structure/chair/plastic{ dir = 8 @@ -2988,25 +2778,6 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewfive) -"xm" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 6 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) "xo" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3061,31 +2832,33 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"xu" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/obj/item/pen/fourcolor, -/obj/item/pen, -/obj/item/pen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/ship/crew/crewfive) "xx" = ( /obj/effect/turf_decal/corner/opaque/green/border{ dir = 4 }, /turf/open/floor/plasteel, /area/ship/crew/cryo) -"xD" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ext_windows" +"xC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{ + dir = 9 }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) +/obj/effect/turf_decal/ihejirika_small{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"xE" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{ + dir = 8 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "xF" = ( /obj/item/kirbyplants/fullysynthetic, /turf/open/floor/carpet/nanoweave/beige, @@ -3125,15 +2898,6 @@ }, /turf/open/floor/wood, /area/ship/crew/hydroponics) -"xN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) "xT" = ( /obj/structure/chair/sofa{ dir = 1 @@ -3151,6 +2915,11 @@ /obj/item/floor_painter, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) +"xV" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm/dormfour) "xW" = ( /obj/structure/closet/wall/orange{ pixel_y = 32 @@ -3175,19 +2944,31 @@ /obj/item/clothing/suit/hooded/wintercoat/engineering/atmos, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"yl" = ( -/obj/machinery/light{ - dir = 4 - }, +"yf" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"yg" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/corner, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) +/turf/open/floor/wood, +/area/ship/crew/canteen) +"yi" = ( +/obj/effect/turf_decal/techfloor, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) "ym" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3200,19 +2981,21 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) -"ys" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/layer4, -/obj/item/toy/figure/atmos{ - name = "Scrubbert"; - pixel_x = -9; - pixel_y = 1 +"yr" = ( +/obj/structure/table, +/obj/machinery/computer/telecomms/monitor{ + dir = 4; + icon_keyboard = "laptop_key"; + icon_screen = "seclaptop"; + icon_state = "laptop" }, -/obj/item/radio/intercom{ - pixel_y = 26 +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) "yE" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3227,13 +3010,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"yJ" = ( -/obj/structure/closet/emcloset/wall{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) "yL" = ( /obj/structure/table, /obj/item/reagent_containers/food/condiment/peppermill{ @@ -3250,22 +3026,29 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) -"yS" = ( -/obj/structure/bed, -/obj/structure/curtain/cloth/grey, -/obj/machinery/light/dim{ - dir = 1 +"yR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{ + dir = 10 }, -/obj/item/bedsheet/brown, -/turf/open/floor/carpet, -/area/ship/crew/dorm) -"za" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +/obj/effect/turf_decal/number/three{ + dir = 4 }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/crew/crewtwo) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"yY" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1; + name = "communications" + }, +/obj/machinery/computer/helm/viewscreen/directional/east, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "zc" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3275,29 +3058,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"zk" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_y = 11 - }, -/obj/item/stack/cable_coil/random/five{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/reagent_containers/glass/beaker, -/obj/machinery/light/dim{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plating, -/area/ship/crew/dorm) "zs" = ( /obj/effect/turf_decal/corner/opaque/green/border{ dir = 9 @@ -3322,6 +3082,18 @@ "zw" = ( /turf/closed/wall/mineral/titanium, /area/ship/crew/crewthree) +"zx" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/bookbinder, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27" + }, +/turf/open/floor/wood/mahogany, +/area/ship/crew/crewthree) "zy" = ( /obj/item/reagent_containers/food/snacks/customizable/cheesewheel, /obj/effect/turf_decal/siding/wood, @@ -3369,6 +3141,10 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"zI" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) "zK" = ( /obj/machinery/door/airlock/external, /turf/open/floor/plasteel/patterned/ridged{ @@ -3378,17 +3154,22 @@ "zL" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew) -"zP" = ( -/obj/machinery/power/apc/auto_name/north, +"zN" = ( +/obj/machinery/light/dim/directional/north, +/obj/structure/sign/departments/restroom{ + pixel_y = -32 + }, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" }, -/obj/machinery/suit_storage_unit/independent/engineering, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/cryo) "zR" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3404,13 +3185,38 @@ }, /turf/open/floor/carpet/nanoweave/purple, /area/ship/crew/crewtwo) -"zX" = ( -/obj/machinery/power/apc/auto_name/west, +"zW" = ( +/obj/effect/turf_decal/corner/opaque/green/border{ + dir = 8 + }, +/obj/machinery/light/directional/west, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech, -/area/ship/storage) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) +"Aa" = ( +/obj/structure/chair/sofa/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; + dir = 6 + }, +/obj/structure/sign/poster/retro/nanotrasen_logo_70s{ + pixel_x = 32 + }, +/turf/open/floor/wood/mahogany, +/area/ship/crew/crewthree) "Af" = ( /obj/structure/table/wood/poker, /obj/item/paper{ @@ -3550,11 +3356,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"Bs" = ( -/obj/structure/sink/puddle, -/obj/machinery/light/dim, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) "Bu" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3571,39 +3372,30 @@ }, /turf/open/floor/plasteel, /area/ship/crew/cryo) -"BH" = ( -/obj/structure/chair/sofa{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 +"BE" = ( +/obj/structure/chair/sofa/corner, +/obj/machinery/light/dim/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfive) +"BK" = ( +/obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ - dir = 4 + dir = 1 }, -/turf/open/floor/wood/walnut, -/area/ship/crew) -"BL" = ( -/obj/item/clothing/glasses/regular/hipster, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/head/beanie/stripedgreen, -/obj/item/clothing/head/flatcap, -/obj/item/clothing/neck/stripedredscarf, -/obj/item/clothing/suit/jacket, -/obj/item/clothing/suit/hawaiian, -/obj/item/clothing/suit/toggle/suspenders/gray, -/obj/item/clothing/suit/toggle/lawyer/burgundy, -/obj/item/clothing/under/dress/striped, -/obj/item/clothing/under/pants/khaki, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit/charcoal, -/obj/structure/closet/wall{ - name = "Wardrobe"; - pixel_y = 32 +/obj/item/paper_bin/construction{ + pixel_x = -5; + pixel_y = 3 }, -/obj/item/clothing/accessory/waistcoat, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm/dormthree) +/obj/item/paint/anycolor{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/birch, +/area/ship/crew/crewtwo) "BN" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/carpet/nanoweave/beige, @@ -3634,8 +3426,50 @@ /obj/effect/turf_decal/borderfloorwhite{ dir = 10 }, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"BW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Dining Room" + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/crew/canteen) +"BX" = ( +/obj/item/clothing/glasses/regular/hipster, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/head/beanie/stripedgreen, +/obj/item/clothing/head/flatcap, +/obj/item/clothing/neck/stripedredscarf, +/obj/item/clothing/suit/jacket, +/obj/item/clothing/suit/hawaiian, +/obj/item/clothing/suit/toggle/suspenders/gray, +/obj/item/clothing/suit/toggle/lawyer/burgundy, +/obj/item/clothing/under/dress/striped, +/obj/item/clothing/under/pants/khaki, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/under/suit/charcoal, +/obj/structure/closet/wall{ + name = "Wardrobe"; + pixel_y = 28 + }, +/obj/item/clothing/accessory/waistcoat, +/turf/open/floor/carpet/black, +/area/ship/crew/dorm/dormthree) "Ca" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3656,23 +3490,15 @@ /obj/structure/table/wood/reinforced, /turf/open/floor/wood, /area/ship/crew/canteen) -"Ck" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"Ch" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/wood/end{ + color = "#792f27"; dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/obj/structure/fluff/hedge, +/turf/open/floor/wood, +/area/ship/crew/canteen) "Cr" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/potato/sweet{ @@ -3686,14 +3512,6 @@ /obj/item/reagent_containers/glass/bucket/wooden, /turf/open/floor/grass, /area/ship/crew/hydroponics) -"Cs" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/carpet, -/area/ship/crew/dorm) "Cv" = ( /obj/effect/turf_decal/corner/opaque/orange/border{ dir = 1 @@ -3703,37 +3521,25 @@ /obj/structure/bedsheetbin, /turf/open/floor/plasteel, /area/ship/crew/cryo) -"Cy" = ( -/obj/effect/turf_decal/corner/opaque/green/border, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/structure/closet/wall{ - dir = 1; - pixel_y = -32 +"CE" = ( +/obj/structure/sink/puddle, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"CH" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/garlicbread, +/obj/item/reagent_containers/food/snacks/grown/citrus/orange{ + pixel_x = -8; + pixel_y = 7 }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/storage/backpack/duffelbag, -/obj/item/storage/backpack/duffelbag, -/obj/item/storage/backpack/satchel, -/obj/item/storage/backpack/satchel, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plasteel, -/area/ship/crew/cryo) -"CA" = ( -/obj/effect/turf_decal/techfloor, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 1 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/crew) "CL" = ( /obj/structure/table/wood/poker, /obj/item/storage/pill_bottle/dice{ @@ -3753,6 +3559,20 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering/engine) +"CO" = ( +/obj/structure/table, +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/item/radio/intercom/wideband/table{ + dir = 8; + pixel_x = -4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) "CU" = ( /obj/structure/frame/machine, /obj/item/stack/cable_coil/random/five, @@ -3786,10 +3606,19 @@ }, /turf/open/floor/plating, /area/ship/crew/dorm) -"CW" = ( -/obj/structure/railing, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew/canteen) +"Db" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/sign/poster/contraband/pwr_game{ + pixel_y = -32 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) "Dj" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 6 @@ -3803,29 +3632,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/electrical) -"Do" = ( -/obj/machinery/door/airlock/wood{ - name = "Cryogenics" - }, -/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/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, -/area/ship/crew/cryo) "Du" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3952,22 +3758,6 @@ }, /turf/open/floor/carpet, /area/ship/crew/crewfive) -"Ea" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) "Eb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -3977,21 +3767,21 @@ "Ef" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/crewtwo) -"Eu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +"El" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "a_5_shutter" }, -/obj/structure/sign/poster/contraband/pwr_game{ - pixel_y = -32 +/turf/open/floor/plating, +/area/ship/crew/crewfour) +"Eo" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) +/turf/open/floor/carpet/nanoweave/purple, +/area/ship/crew/crewtwo) "Ev" = ( /obj/machinery/computer/helm, /obj/effect/turf_decal/techfloor{ @@ -4002,20 +3792,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"Ew" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/effect/turf_decal/spline/fancy/opaque/blue{ - dir = 10 - }, -/obj/machinery/light/dim, -/obj/machinery/suit_storage_unit/independent/pilot, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "EA" = ( /obj/structure/cable{ icon_state = "1-4" @@ -4043,33 +3819,9 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewfive) -"EK" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 26; - pixel_y = -6 - }, -/obj/machinery/button/door{ - dir = 8; - id = "apartment_2"; - normaldoorcontrol = 1; - pixel_x = 26; - pixel_y = 6; - specialfunctions = 4 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/crew/crewtwo) "ES" = ( /turf/closed/wall/mineral/titanium, /area/ship/crew) -"EW" = ( -/obj/machinery/vending/games, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/ship/crew/crewfive) "EX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -4079,14 +3831,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/electrical) -"Fb" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/carpet, -/area/ship/crew/crewfive) "Fd" = ( /obj/structure/cable{ icon_state = "1-8" @@ -4099,16 +3843,19 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/crewfour) -"Fo" = ( -/obj/structure/chair/sofa{ - dir = 1 +"Fl" = ( +/obj/structure/table, +/obj/item/defibrillator/loaded, +/obj/effect/turf_decal/borderfloor{ + dir = 10 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -26 +/obj/machinery/airalarm/directional/south, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/autoname{ + dir = 5 }, -/turf/open/floor/carpet, -/area/ship/crew/crewfive) +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) "Fq" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/canteen) @@ -4125,6 +3872,30 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"FD" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/layer4, +/obj/item/toy/figure/atmos{ + name = "Scrubbert"; + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"FE" = ( +/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/storage) +"FI" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "a_4_shutter2" + }, +/turf/open/floor/plating, +/area/ship/crew/dorm/dormfive) "FJ" = ( /obj/machinery/light_switch{ dir = 4; @@ -4173,6 +3944,29 @@ }, /turf/open/floor/wood, /area/ship/crew/dorm/dormfive) +"Gm" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/drinks/mug/coco{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/book/random{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/poster/contraband/steppyflag{ + pixel_x = 32 + }, +/turf/open/floor/carpet/black, +/area/ship/crew/dorm/dormthree) "Go" = ( /obj/structure/chair/sofa{ dir = 4 @@ -4197,16 +3991,8 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 }, -/turf/open/floor/carpet/green, -/area/ship/crew) -"Gy" = ( -/obj/structure/window/reinforced, -/obj/structure/sink/puddle, -/obj/machinery/light/dim{ - dir = 4 - }, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) +/turf/open/floor/carpet/green, +/area/ship/crew) "GE" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -4214,14 +4000,14 @@ /obj/structure/table/wood, /turf/open/floor/wood/walnut, /area/ship/crew) -"GK" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/power/apc/auto_name/east, +"GG" = ( +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "0-4" }, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) +/turf/open/floor/carpet, +/area/ship/crew/dorm) "GM" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4249,22 +4035,44 @@ }, /turf/open/floor/carpet/green, /area/ship/crew) -"GR" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - pixel_y = 4 +"GQ" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/techfloor{ - dir = 9 +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; + dir = 1 }, -/obj/effect/turf_decal/spline/fancy/opaque/blue{ - dir = 9 +/obj/machinery/button/door{ + id = "a_3_shutter2"; + name = "Shutters"; + pixel_x = -6; + pixel_y = 26 }, -/obj/item/radio/intercom{ - pixel_y = -6 +/turf/open/floor/wood/mahogany, +/area/ship/crew/crewthree) +"GS" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "ext_windows" }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/crew/cryo) +"GZ" = ( +/obj/structure/window/reinforced, +/obj/structure/sink/puddle, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"Ha" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "ext_windows" + }, +/turf/open/floor/plating, +/area/ship/hallway/starboard) "Hb" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4321,13 +4129,14 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/port) -"Ho" = ( +"Hs" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ - id = "a_2_shutter" + dir = 4; + id = "a_3_shutter" }, /turf/open/floor/plating, -/area/ship/crew/crewtwo) +/area/ship/crew/dorm/dormthree) "Hu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -4411,28 +4220,6 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) -"Id" = ( -/obj/machinery/light/dim{ - 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 = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Ie" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/assist, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) "If" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 @@ -4451,6 +4238,29 @@ }, /turf/open/floor/carpet, /area/ship/crew/crewfive) +"In" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "a_4_shutter"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/crew/crewfive) +"Io" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/secure_data/laptop{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/effect/turf_decal/spline/fancy/opaque/yellow{ + dir = 10 + }, +/obj/machinery/light/dim/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "Is" = ( /obj/structure/table, /obj/item/paicard{ @@ -4484,27 +4294,6 @@ /obj/item/reagent_containers/food/snacks/cornchips, /turf/open/floor/carpet, /area/ship/crew/crewfive) -"IC" = ( -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/bottlegreen{ - dir = 5 - }, -/obj/effect/turf_decal/corner/opaque/bottlegreen, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_x = 6; - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) "ID" = ( /obj/effect/turf_decal/techfloor{ dir = 1 @@ -4515,6 +4304,20 @@ /obj/item/kirbyplants/random, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) +"IK" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/autolathe, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) "IN" = ( /obj/structure/table, /obj/item/flashlight/lamp{ @@ -4574,24 +4377,6 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) -"Jb" = ( -/obj/effect/turf_decal/corner/opaque/green/border{ - dir = 10 - }, -/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/structure/extinguisher_cabinet{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/ship/crew/cryo) "Jd" = ( /obj/item/paper/crumpled{ pixel_x = 1; @@ -4646,6 +4431,30 @@ }, /turf/open/floor/plasteel, /area/ship/crew/cryo) +"JM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/closet/wall/blue{ + dir = 1; + name = "Janitorial Closet"; + pixel_y = -28 + }, +/obj/item/soap/deluxe, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/rag, +/obj/item/storage/box/mousetraps, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/soft/purple, +/obj/item/clothing/gloves/color/latex/nitrile/evil, +/obj/item/storage/box/maid, +/turf/open/floor/plating, +/area/ship/engineering/engine) "JX" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -4660,13 +4469,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering/engine) -"Kb" = ( -/obj/machinery/hydroponics/soil, -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) "Kj" = ( /obj/effect/turf_decal/borderfloorwhite{ dir = 5 @@ -4708,27 +4510,18 @@ }, /turf/open/floor/carpet, /area/ship/crew/crewfive) -"Kt" = ( -/obj/structure/railing/corner, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew/canteen) -"Kx" = ( -/obj/machinery/light/dim{ - dir = 8 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/corner/opaque/bottlegreen{ - dir = 5 - }, -/obj/effect/turf_decal/corner/opaque/bottlegreen{ - dir = 8 +"Kw" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" +/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen{ + dir = 10 }, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/storage/overmap_ship/electric/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "Ky" = ( /obj/structure/table, /obj/item/trash/plate, @@ -4758,6 +4551,14 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/wood/birch, /area/ship/crew/crewfive) +"KB" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "KF" = ( /obj/structure/chair/sofa/right{ dir = 8 @@ -4810,6 +4611,13 @@ }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) +"KU" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) "KX" = ( /obj/structure/chair/sofa/right, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -4817,24 +4625,6 @@ }, /turf/open/floor/carpet/green, /area/ship/crew) -"KZ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/wood/birch, -/area/ship/crew/crewfive) "La" = ( /obj/machinery/hydroponics/soil, /turf/open/floor/grass, @@ -4864,29 +4654,87 @@ /obj/structure/sign/poster/retro/pdaancient{ pixel_y = -32 }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27" +/obj/effect/turf_decal/siding/wood{ + color = "#792f27" + }, +/turf/open/floor/wood/mahogany, +/area/ship/crew/crewthree) +"Lq" = ( +/obj/machinery/light/dim/directional/west, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"Lw" = ( +/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 = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) +"LB" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"LG" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/suit_storage_unit/independent/engineering, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"LK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/birch, +/area/ship/crew/crewtwo) +"LO" = ( +/obj/machinery/door/airlock/wood{ + dir = 4; + id_tag = "apartment_3"; + name = "Apartment 3" }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/crewthree) -"Lw" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"LK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/turf/open/floor/wood/birch, -/area/ship/crew/crewtwo) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/crew/crewthree) "LQ" = ( /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) @@ -4928,43 +4776,42 @@ /obj/structure/sign/poster/contraband/mothpill, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/dorm) -"LX" = ( -/obj/effect/turf_decal/techfloor/orange, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -6; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-9" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/electrical) "LZ" = ( /obj/machinery/vending/cigarette, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"Ma" = ( -/obj/effect/turf_decal/corner/opaque/green/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +"Md" = ( +/obj/item/circuitboard/machine/telecomms/relay, +/obj/item/circuitboard/machine/telecomms/message_server, +/obj/structure/closet/wall/blue{ + dir = 4; + name = "Component Storage"; + pixel_x = -28 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/item/stack/cable_coil/blue, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/effect/turf_decal/techfloor, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) +"Me" = ( +/obj/structure/chair/sofa{ dir = 1 }, -/turf/open/floor/plasteel, -/area/ship/crew/cryo) +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet, +/area/ship/crew/crewfive) "Mg" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -4997,38 +4844,6 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) -"Mu" = ( -/obj/structure/chair/sofa/corner{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26; - pixel_y = 6 - }, -/obj/structure/sign/poster/official/the_owl{ - pixel_y = -32 - }, -/turf/open/floor/carpet, -/area/ship/crew/crewfive) -"Mv" = ( -/obj/machinery/light/dim{ - dir = 1 - }, -/obj/structure/sign/departments/restroom{ - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/cryo) "MC" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -5040,15 +4855,6 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) -"MF" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) "MG" = ( /obj/machinery/jukebox, /obj/effect/turf_decal/techfloor, @@ -5092,26 +4898,14 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/electrical) -"MO" = ( +"MX" = ( +/obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Dining Room" - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" + dir = 1 }, -/area/ship/crew/canteen) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "Ng" = ( /obj/structure/cable{ icon_state = "1-8" @@ -5148,13 +4942,6 @@ }, /turf/open/floor/wood, /area/ship/crew/canteen) -"Nt" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) "Ny" = ( /obj/structure/cable{ icon_state = "1-8" @@ -5163,38 +4950,31 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/carpet, /area/ship/crew/crewfive) -"Nz" = ( -/obj/structure/toilet/secret{ +"ND" = ( +/obj/machinery/door/airlock/wood{ dir = 4; - secret_type = /obj/item/storage/box/donkpockets/donkpocketgondola + id_tag = "apartment_2"; + name = "Apartment 2" }, -/obj/effect/turf_decal/borderfloorwhite{ - dir = 10 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/mob/living/simple_animal/mouse/brown{ - name = "Pinkie" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"NC" = ( -/obj/structure/table, -/obj/item/defibrillator/loaded, -/obj/effect/turf_decal/borderfloor{ - dir = 10 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/airalarm/directional/south, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -26 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/camera/autoname{ - dir = 5 +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" }, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) +/area/ship/crew/crewtwo) "NJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -5211,6 +4991,11 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) +"NN" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/ship/crew/dorm/dormtwo) "NT" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/corner/transparent/bar{ @@ -5240,23 +5025,26 @@ }, /turf/open/floor/plasteel, /area/ship/crew/cryo) -"OA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +"Oz" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/toy/crayon/spraycan{ + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/sign/poster/random{ - pixel_x = -32 +/obj/item/toy/crayon/spraycan{ + pixel_x = -6; + pixel_y = 4 }, -/obj/machinery/light{ - dir = 8 +/obj/item/toy/crayon/spraycan{ + pixel_x = 6; + pixel_y = 4 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/item/toy/crayon/spraycan{ + pixel_y = 1 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) +/obj/machinery/light/directional/south, +/turf/open/floor/wood/birch, +/area/ship/crew/crewtwo) "OE" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5280,6 +5068,18 @@ /obj/machinery/vending/dinnerware, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"OJ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/ihejirika_small/left{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "OM" = ( /obj/structure/sign/poster/random{ pixel_x = -32 @@ -5303,28 +5103,17 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/carpet, /area/ship/crew/crewfive) -"OR" = ( -/obj/structure/chair/sofa, -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) "OS" = ( /obj/machinery/vending/clothing, /turf/open/floor/plasteel/tech, /area/ship/crew/cryo) -"Pf" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ext_windows" +"Pg" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/plating, -/area/ship/crew/cryo) +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) "Pl" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -5387,23 +5176,49 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/crewfour) -"PF" = ( -/obj/effect/turf_decal/techfloor/orange{ +"PB" = ( +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) +"PH" = ( +/obj/structure/chair/sofa/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"PJ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/techfloor{ dir = 9 }, -/obj/machinery/power/port_gen/pacman/super, -/obj/structure/cable/yellow{ - icon_state = "0-4" +/obj/effect/turf_decal/spline/fancy/opaque/blue{ + dir = 9 }, -/obj/machinery/light{ - dir = 8 +/obj/item/radio/intercom/wideband/table, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"PK" = ( +/obj/machinery/light/dim/directional/north, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/radio/intercom{ - pixel_y = 26 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/item/stack/sheet/mineral/uranium/fifty, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/electrical) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) "PL" = ( /obj/structure/sign/directions/command{ dir = 4; @@ -5418,26 +5233,6 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) -"PQ" = ( -/obj/structure/table, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -2; - pixel_y = 5 - }, -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/effect/turf_decal/techfloor/corner{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 11; - pixel_y = 5 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) "PR" = ( /obj/structure/railing, /obj/structure/cable{ @@ -5478,6 +5273,14 @@ }, /turf/open/floor/wood, /area/ship/crew/hydroponics) +"Qe" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; + dir = 10 + }, +/turf/open/floor/wood, +/area/ship/crew/canteen) "Qg" = ( /obj/machinery/vending/wallmed{ pixel_y = 32 @@ -5493,25 +5296,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical/surgery) -"Qh" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/effect/turf_decal/borderfloorwhite{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/mob/living/simple_animal/mouse/white{ - name = "The Brain" - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) "Qk" = ( /obj/machinery/portable_atmospherics/pump, /obj/item/toy/figure/atmos{ @@ -5532,30 +5316,22 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew) -"QC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 +"QA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 }, -/obj/machinery/camera/autoname{ - dir = 5 +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/plasteel/white, -/area/ship/crew) -"QK" = ( -/obj/effect/turf_decal/corner/opaque/orange/border{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel, -/area/ship/crew/cryo) +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfive) "QO" = ( /obj/machinery/door/airlock/external, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -5640,12 +5416,48 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, /area/ship/crew/hydroponics) +"QZ" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/carpet, +/area/ship/crew/crewfive) "Rg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/engine) +"Rk" = ( +/obj/structure/table, +/obj/item/ammo_box/magazine/m45/rubbershot{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/effect/turf_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/turf_decal/borderfloorblack{ + dir = 5 + }, +/obj/item/gun/ballistic/automatic/pistol/m1911/no_mag{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) "Rm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -5665,16 +5477,22 @@ }, /turf/open/floor/carpet, /area/ship/crew/dorm) -"Ry" = ( -/obj/machinery/light{ - dir = 8 +"Ru" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 26; + pixel_y = -11 }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 10 +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/wood, -/area/ship/crew/canteen) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet, +/area/ship/crew/dorm) "Rz" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/cryo) @@ -5687,40 +5505,12 @@ }, /turf/open/floor/wood, /area/ship/crew/hydroponics) -"RG" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 26; - pixel_y = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26; - pixel_y = -6 - }, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) "RI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/port) -"RJ" = ( -/obj/structure/table/wood, -/obj/machinery/light/dim, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/item/a_gift, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm/dormfive) "RK" = ( /obj/structure/chair/plastic{ dir = 4 @@ -5791,87 +5581,76 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewfive) -"Sh" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"Sf" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 8 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"Sp" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/engine) -"St" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "apartment_2"; - name = "Apartment 2" +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/starboard) +"Sg" = ( +/obj/structure/table, +/obj/item/ammo_casing/c45/rubbershot{ + pixel_x = 6; + pixel_y = 7 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/item/ammo_casing/c45/rubbershot{ + pixel_x = 4; + pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/item/ammo_casing/c45/rubbershot{ + pixel_x = 8; + pixel_y = 3 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/item/screwdriver{ + pixel_x = -5; + pixel_y = -3 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/effect/turf_decal/borderfloorblack{ + dir = 5 }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" +/obj/effect/turf_decal/borderfloorblack{ + dir = 9 }, -/area/ship/crew/crewtwo) -"Sv" = ( -/obj/structure/sign/poster/contraband/power, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/electrical) -"Sw" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Dining Room" +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/structure/sign/poster/contraband/backdoor_xeno_babes_6{ + pixel_x = -32 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/item/radio/intercom/directional/north{ + pixel_y = 26 }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" +/obj/item/flashlight/lamp{ + pixel_x = -9; + pixel_y = 12 }, -/area/ship/crew/canteen) -"Sx" = ( -/obj/structure/chair/sofa/right{ - dir = 8 +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) +"Sh" = ( +/obj/structure/chair/plastic{ + dir = 4 }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, /obj/effect/turf_decal/siding/wood{ color = "#792f27"; - dir = 4 - }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/crewthree) -"SB" = ( -/obj/effect/turf_decal/corner/opaque/orange/border{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" + dir = 8 }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/ship/crew/cryo) +/turf/open/floor/wood, +/area/ship/crew/canteen) +"Sp" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/engineering/engine) +"Sv" = ( +/obj/structure/sign/poster/contraband/power, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/engineering/electrical) "SC" = ( /obj/structure/cable{ icon_state = "1-8" @@ -5899,19 +5678,40 @@ }, /turf/open/floor/grass, /area/ship/crew/hydroponics) -"SL" = ( +"SK" = ( +/obj/machinery/door/airlock{ + dir = 4; + name = "Cryogenics" + }, +/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/firedoor/border_only{ dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/door/airlock/public/glass{ - name = "Dining Room" - }, /turf/open/floor/plasteel/patterned/ridged{ color = "#4c535b" }, +/area/ship/crew/cryo) +"SM" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; + dir = 6 + }, +/turf/open/floor/wood, /area/ship/crew/canteen) "SN" = ( /obj/structure/table, @@ -5933,23 +5733,6 @@ }, /turf/open/floor/carpet, /area/ship/crew/crewfive) -"SW" = ( -/obj/machinery/button/door{ - id = "a_5_shutter"; - name = "Shutters"; - pixel_x = -6; - pixel_y = 26 - }, -/obj/effect/turf_decal/techfloor, -/obj/machinery/light/dim{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_x = -26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/crewfour) "Td" = ( /obj/machinery/light_switch{ pixel_x = -6; @@ -5972,9 +5755,14 @@ /obj/item/cultivator/rake, /turf/open/floor/grass, /area/ship/crew/hydroponics) -"Tm" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, +"Tl" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/cloth/grey, +/obj/machinery/light/dim/directional/east, +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_y = -32 + }, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/dorm/dormfour) "Tn" = ( @@ -5985,21 +5773,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew/toilet) -"Tp" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 26; - pixel_y = -6 - }, -/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, -/turf/open/floor/carpet, -/area/ship/crew/dorm) "Tq" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -6013,22 +5786,6 @@ "TC" = ( /turf/closed/wall/mineral/titanium, /area/ship/storage) -"TD" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/autolathe, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/electrical) "TI" = ( /obj/structure/closet/wall/blue{ dir = 4; @@ -6078,16 +5835,31 @@ /obj/structure/sign/departments/science, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/dorm/dormfour) -"TN" = ( -/obj/machinery/light{ - dir = 4 +"TM" = ( +/obj/machinery/door/airlock/wood{ + dir = 4; + id_tag = "apartment_4"; + name = "Apartment 4" + }, +/obj/structure/cable{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/crew/crewfive) "TX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -6110,25 +5882,55 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/electrical) +"Uj" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible/layer2, +/obj/effect/turf_decal/number/zero{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "Ul" = ( /obj/effect/turf_decal/techfloor{ dir = 5 }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"Uu" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/engine) -"Uv" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, +"Un" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/machinery/light/dim/directional/north, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/black, +/area/ship/crew/dorm/dormthree) +"Up" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/corner{ + dir = 4 + }, /obj/effect/turf_decal/siding/wood{ color = "#792f27"; - dir = 9 + dir = 1 }, /turf/open/floor/wood, /area/ship/crew/canteen) +"Ut" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/wood/ebony, +/area/ship/crew/canteen) +"Uu" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/engineering/engine) +"Uw" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 26; + pixel_y = 6 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "Uy" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew/hydroponics) @@ -6153,6 +5955,23 @@ }, /turf/open/floor/wood/mahogany, /area/ship/crew/crewthree) +"UH" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/storage/toolbox/artistic{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/storage/toolbox/artistic{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/camera/autoname, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/birch, +/area/ship/crew/crewtwo) "UI" = ( /obj/machinery/computer/crew, /obj/effect/turf_decal/techfloor{ @@ -6166,6 +5985,39 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"UM" = ( +/obj/machinery/door/airlock/wood{ + dir = 4; + id_tag = "apartment_1"; + name = "Apartment 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/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/crew) +"UN" = ( +/obj/effect/turf_decal/corner/opaque/green/border, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) "UU" = ( /obj/structure/chair/wood{ dir = 1 @@ -6222,13 +6074,15 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"Vl" = ( -/obj/machinery/vending/hydronutrients, -/obj/machinery/light/dim{ +"Vk" = ( +/obj/structure/chair/sofa, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; dir = 1 }, -/turf/open/floor/grass, -/area/ship/crew/hydroponics) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood, +/area/ship/crew/canteen) "Vn" = ( /obj/effect/turf_decal/techfloor/orange/corner{ dir = 1 @@ -6254,40 +6108,19 @@ /obj/item/mining_scanner, /turf/open/floor/plasteel/tech, /area/ship/storage) -"Vv" = ( -/obj/structure/table, -/obj/machinery/computer/secure_data/laptop{ - dir = 8 - }, -/obj/effect/turf_decal/borderfloorblack/cee{ - dir = 4 - }, -/obj/item/toy/plush/goatplushie{ - desc = "The Captain insists this plushie does not exist."; - pixel_x = -7; - pixel_y = 16 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) -"VE" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband, -/obj/item/toy/plush/knight{ - name = "The Navigator"; - pixel_x = -9; - pixel_y = 5 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) "VI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) +"VQ" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/storage) "VU" = ( /obj/effect/turf_decal/techfloor, /obj/structure/table, @@ -6306,6 +6139,30 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/crewfour) +"VX" = ( +/obj/machinery/door/airlock/wood{ + dir = 4; + name = "Garden" + }, +/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/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/ridged{ + color = "#4c535b" + }, +/area/ship/crew/hydroponics) "VZ" = ( /obj/machinery/door/airlock/external, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -6313,17 +6170,6 @@ color = "#4c535b" }, /area/ship/hallway/port) -"Wb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/end{ - color = "#792f27"; - dir = 4 - }, -/obj/structure/fluff/hedge, -/turf/open/floor/wood, -/area/ship/crew/canteen) "Wk" = ( /obj/structure/chair/wood{ dir = 4 @@ -6338,30 +6184,19 @@ /turf/closed/wall/mineral/titanium, /area/ship/crew/crewfive) "Wv" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/crew/crewfour) -"WA" = ( -/turf/open/floor/carpet/green, -/area/ship/crew) -"WB" = ( -/obj/structure/closet/wall{ +/turf/closed/wall/mineral/titanium, +/area/ship/crew/crewfour) +"Wx" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ dir = 4; - name = "Wardrobe"; - pixel_x = -32 + id = "ext_windows" }, -/obj/item/clothing/head/beret, -/obj/item/clothing/under/color/jumpskirt/random, -/obj/item/clothing/under/color/random, -/obj/item/clothing/under/dress/skirt/red, -/obj/item/clothing/suit/longcoat, -/obj/item/clothing/suit/jacket/letterman_red, -/obj/item/clothing/head/wizard/marisa, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/shoes/wheelys, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sneakers/black, +/turf/open/floor/plating, +/area/ship/crew/hydroponics) +"WA" = ( /turf/open/floor/carpet/green, -/area/ship/crew/dorm/dormtwo) +/area/ship/crew) "WK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -6388,6 +6223,16 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/open/floor/grass, /area/ship/crew/hydroponics) +"WS" = ( +/obj/machinery/light/dim/directional/north, +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/lootdrop/seeded, +/obj/effect/spawner/lootdrop/seeded, +/obj/effect/spawner/lootdrop/seeded, +/obj/effect/spawner/lootdrop/seeded, +/obj/item/seeds/random, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "WT" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 1 @@ -6407,35 +6252,26 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/hallway/starboard) +"WX" = ( +/obj/structure/railing{ + dir = 4; + layer = 3.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen{ + dir = 6 + }, +/obj/machinery/light/dim/directional/south, +/obj/machinery/suit_storage_unit/independent/pilot, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "WZ" = ( /obj/effect/turf_decal/techfloor, /obj/machinery/vending/engineering, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/crewfour) -"Xd" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "apartment_4"; - name = "Apartment 4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" - }, -/area/ship/crew/crewfive) "Xo" = ( /obj/structure/cable{ icon_state = "1-2" @@ -6448,6 +6284,22 @@ icon = 'icons/obj/stairs.dmi' }, /area/ship/bridge) +"Xr" = ( +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 26 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/bottlegreen{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/bottlegreen, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) "Xt" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -6470,6 +6322,23 @@ }, /turf/open/floor/wood, /area/ship/crew/dorm/dormfive) +"XJ" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; + dir = 6 + }, +/turf/open/floor/wood, +/area/ship/crew/canteen) "XO" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/corner/transparent/bar{ @@ -6485,6 +6354,17 @@ }, /turf/open/floor/plasteel/white, /area/ship/crew/canteen) +"XP" = ( +/obj/machinery/button/door{ + id = "a_5_shutter"; + name = "Shutters"; + pixel_x = -6; + pixel_y = 26 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) "XS" = ( /obj/machinery/holopad/emergency/command{ pixel_x = -16 @@ -6528,21 +6408,6 @@ }, /turf/open/floor/wood/birch, /area/ship/crew/crewtwo) -"Ym" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "a_3_shutter" - }, -/turf/open/floor/plating, -/area/ship/crew/dorm/dormthree) -"Yo" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26; - pixel_y = -6 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) "Yq" = ( /obj/machinery/hydroponics/soil, /obj/structure/sign/poster/contraband/kudzu{ @@ -6550,31 +6415,32 @@ }, /turf/open/floor/grass, /area/ship/crew/hydroponics) -"Yr" = ( -/obj/structure/chair/wood{ +"Yv" = ( +/turf/closed/wall/mineral/titanium, +/area/ship/crew/dorm/dormfive) +"Yx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26; - pixel_y = -6 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/sign/poster/random{ + pixel_x = -32 }, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27"; - dir = 6 +/obj/machinery/light/directional/west, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"Yv" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/crew/dorm/dormfive) -"YG" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/turf_decal/siding/wood{ - color = "#792f27" +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) +"Yz" = ( +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/wood/mahogany, -/area/ship/crew/crewthree) +/turf/open/floor/carpet, +/area/ship/crew/crewfive) "YM" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 5 @@ -6590,13 +6456,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical/surgery) -"YN" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) "YQ" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -6605,36 +6464,39 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering/engine) +"YS" = ( +/obj/structure/window/reinforced, +/obj/structure/sink/puddle, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) "YT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 }, /turf/open/floor/wood/ebony, /area/ship/crew/canteen) -"Zh" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "a_3_shutter2" - }, -/turf/open/floor/plating, -/area/ship/crew/crewthree) "Zi" = ( /obj/structure/sign/poster/contraband/tools, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/engine) -"Zo" = ( -/obj/machinery/light{ - dir = 8 +"Zp" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + color = "#792f27"; dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/port) +/turf/open/floor/wood/mahogany, +/area/ship/crew/crewthree) "Zt" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance" @@ -6691,46 +6553,44 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/electrical) -"ZI" = ( -/obj/machinery/door/airlock/wood{ - name = "Garden" - }, -/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/firedoor/border_only{ - dir = 4 - }, +"ZG" = ( +/obj/machinery/light/directional/east, /obj/machinery/door/firedoor/border_only{ - dir = 8 + dir = 1 }, -/turf/open/floor/plasteel/patterned/ridged{ - color = "#4c535b" +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) +"ZK" = ( +/obj/structure/table, +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/area/ship/crew/hydroponics) -"ZQ" = ( -/obj/machinery/firealarm{ - pixel_x = 6; - pixel_y = 26 +/obj/item/disk/tech_disk/major{ + pixel_x = -7; + pixel_y = -5 }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{ - dir = 8 +/obj/item/disk/tech_disk{ + pixel_x = -3; + pixel_y = -2 }, -/obj/machinery/light{ - dir = 1 +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 8; + pixel_y = 12 }, -/obj/machinery/light{ +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/crewfour) +"ZS" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/corner/transparent/bar{ dir = 1 }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/obj/effect/turf_decal/corner/transparent/bar, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen) "ZT" = ( /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 5 @@ -6743,6 +6603,13 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical/surgery) +"ZU" = ( +/obj/structure/closet/emcloset/wall{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/hallway/port) (1,1,1) = {" qa @@ -6754,27 +6621,27 @@ qa UF UF ES -ba -ba -ba +sK +sK +sK ES bZ bZ -Ho -Ho -Ho +eF +eF +eF bZ Lc -Ym +Hs Lc Lc -Zh +ek zw zw -xi -xi -xi -xi +Wx +Wx +Wx +Wx aj qa qa @@ -6792,22 +6659,22 @@ qa qa qa ac -ac +kK Yd Yd -jz +bt jD aY Qz -QC +hg Ef -sd +UH IY Xt jk jR ev -BL +BX ts iA co @@ -6833,34 +6700,34 @@ qa qa qa ac -ac +kK CV -zk +ei Yd -uZ +CH eu eu eu px Ef -tr +BK LK Yj PO -mb +Oz ev -ly -nD +Un +Gm ev -ax -YG +GQ +rc lW -Vl +ud hK ZB Pl aF -wJ +YS Uy aj qa @@ -6874,7 +6741,7 @@ qa qa qa UF -ac +kK QT fc or @@ -6894,10 +6761,10 @@ ev ev ev ev -gJ -iG +Zp +zx lW -Kb +jr Tq SG vG @@ -6927,13 +6794,13 @@ WA mH DD Ef -za +Eo jn ag ag ag ag -bq +cV uf xf Ng @@ -6945,7 +6812,7 @@ Cr RT RE hU -Bs +CE Uy MH MH @@ -6961,9 +6828,9 @@ LV PW os TX -Cs +GG Yd -ks +LB Gu KX GO @@ -6972,8 +6839,8 @@ Ef Dy zR pp -qz -WB +NN +js ag gC Aj @@ -6981,7 +6848,7 @@ XF bX Lp lW -es +WS sr xK AQ @@ -6989,7 +6856,7 @@ eK lz th Uy -PF +cp MM MH qa @@ -6999,36 +6866,36 @@ qa (7,1,1) = {" UF Yd -yS +mR TJ eo LS -Tp +Ru je KI HP -mT -BH +PH +gk nO Ef -EK +wz xo ag Td -ph +nr ag SF Ca sP -Sx -mY +dV +Aa lW fu Qb -RG -GK +Uw +yf Pr -Gy +GZ Uy Uy WT @@ -7047,32 +6914,32 @@ Yd Yd Yd Yd -aP +UM zL zL zL zL Ef Ef -St +ND ag iH ag ag lW -wI +LO lW lW lW lW gh -ZI +VX Uy Uy Uy Uy Uy -vE +iY Vn pT aO @@ -7088,19 +6955,19 @@ pL nN bo If -OA +Yx kr wt Am wt wt -Zo +eN wt Hj yE sG wt -Zo +eN wt OE dQ @@ -7132,74 +6999,74 @@ Dz hG wf RI -Yo -YN +zI +Pg tY tY tY tY Ju -bS +ZG hG tY tY tY -nI +uL qC gY tY hG tY -MF +so op tY Dz -jV +lG vN Ui EX -LX +fa aO -Ck +pa Jq Gs "} (11,1,1) = {" mE -uK -uK +mW +mW mE mE mE -aB -aB -aB +hu +hu +hu mE mE mE -aB -aB -aB +hu +hu +hu mE mE LZ kB IJ -yJ +ZU mE -fe +gV PL Fq Fq -Sw +er Fq -xc +hR Fq Fq Fq aO ZD -TD +IK Dj aO Az @@ -7229,16 +7096,16 @@ mA mA mA mA -Eu +Db Fq DH UU vx -Wb +Ch oS -Uv +dF cI -Ry +Qe vj aO aO @@ -7264,14 +7131,14 @@ qa qa qa qa -kR -kR -kW +mA +mA +Io UI zF -iD +Kw mA -qC +fY Fq rv Nj @@ -7282,10 +7149,10 @@ MC DV Nj NT -jL +eI OH Fq -ys +FD lc Sp qa @@ -7311,11 +7178,11 @@ Ev Fy fk hx -tv +WX mA -bw +ro Fq -fQ +Up mK Sh RK @@ -7325,9 +7192,9 @@ Cd Nj MJ dD -rr +mV Fq -zP +LG xs Sp aq @@ -7349,7 +7216,7 @@ qa qa qa kR -VE +pP fF ey IU @@ -7361,7 +7228,7 @@ Px Ky yL vV -vx +Ut bg Cd Nj @@ -7399,7 +7266,7 @@ Xo kY EA Fq -OR +Vk LU iq wA @@ -7410,7 +7277,7 @@ Nj XO rB aC -Kt +Fq jh JX Jq @@ -7435,13 +7302,13 @@ qa kR xt aG -GR +PJ dN -Ew +fN mA -Id +PK Fq -fJ +yg nc cZ xk @@ -7451,9 +7318,9 @@ Cd Nj DN sW -ih -CW -Nt +bN +Fq +KB Du Uu aq @@ -7474,14 +7341,14 @@ qa qa qa qa -kR -kR -nR +mA +mA +gM Bm -jI -qT +yY +mc mA -Ea +pt Fq Wk Nj @@ -7493,9 +7360,9 @@ Cd Ln gd QV -dJ -CW -ZQ +ZS +Fq +xE Bu Rg qc @@ -7523,22 +7390,22 @@ mA mA mA mA -ym +iT Fq ha -Yr +SM rI -jH +dj hL -jw +bn Hz -xm +XJ +Fq Fq Fq Fq -CW -my -rd +vP +JM Sp aq "} @@ -7549,15 +7416,15 @@ qa qa qa qa -gL +fg kS kS kS kS kS -xD -xD -xD +Ha +Ha +Ha kS kS NM @@ -7565,13 +7432,13 @@ ny xF rK kS -li +gp ez Fq Fq -MO +BW Fq -SL +oW Fq Fq Fq @@ -7601,26 +7468,26 @@ LQ LQ LQ id -eZ +Sf LQ LQ LQ LQ -bf +cX ym AZ OM IQ NJ -sR +en LQ LQ BN -Ie +uO Ge -gf -hi -wy +yR +Uj +ma zc YQ Jq @@ -7633,20 +7500,20 @@ qa qa qa qa -fg +tX zK fz ng QO WV lO -TN +MX Pw Al DS bL bL -yl +sp bL uI zz @@ -7660,9 +7527,9 @@ HU HU HU Zt -xN -qj -ok +jt +xC +OJ xU bk Sp @@ -7684,18 +7551,18 @@ Jz Jz Jz Jz -Xd +TM Jz Jz Jz Jz Rn -oF +pw Ay Ay Ay Ay -Do +fU Lb Lb Lb @@ -7704,7 +7571,7 @@ sb sb QQ QQ -fD +vC Sp Sp aq @@ -7719,33 +7586,33 @@ qa qa qa PS -uo +Sg FJ hn PR PV -EW -Fb +bb +Yz GM oC Go -Mu +fK Jz qB bP QW -Tm +xV TI Ay eC Lb -Qh -Nz +jp +pJ sb -Kx -NC +Lq +Fl QQ -zX +VQ SC Ug aq @@ -7761,7 +7628,7 @@ qa qa qa PS -uA +Rk fZ qq xI @@ -7773,13 +7640,13 @@ kw gb xT Jz -CA +yi Fd Ay Mg -oJ +Tl Ay -Mv +zN Lb kU Tn @@ -7787,7 +7654,7 @@ sb cW gN QQ -cY +FE Vp TC qa @@ -7804,16 +7671,16 @@ qa qa PS cJ -Vv +qe Jz -KZ +mf iI SN OQ TK Iu CL -kk +QZ Jz WZ UB @@ -7848,22 +7715,22 @@ qa PS cJ Jz -pb +se zy AJ Hb vd Af AM -Fo +Me Jz -bF +tM UB nX -tx +Md fP Rz -oG +SK Lb Lb Lb @@ -7892,7 +7759,7 @@ Jz IN rC HD -xu +iu Kr WK KF @@ -7906,9 +7773,9 @@ lM CU Rz zs -rs -Ma -Jb +da +zW +gs Jg YM hJ @@ -7947,12 +7814,12 @@ ia hy su Rz -SB +PB Rm Is -md +UN sb -IC +Xr pA tQ qa @@ -7972,27 +7839,27 @@ qa qa qa qa -mP +mz mP Sd xl iK -pm +QA AL uW -bO -RJ +kC +rt iK -wj +yr iJ -PQ +CO mB -rR +KU Rz -QK +uC Rm UY -Cy +fy sb sb sb @@ -8015,19 +7882,19 @@ qa qa qa qa +In mP -mP -hW +ht iK tA Gf XH pK -pf +qV iK -SW +XP Ga -vo +ZK mB ID Rz @@ -8036,7 +7903,7 @@ tz Of mC lS -fR +eA cH qa qa @@ -8061,7 +7928,7 @@ qa Wl Jz iK -dH +BE dp LT DT @@ -8073,7 +7940,7 @@ mB mB gn Rz -bI +hd JK xx Bz @@ -8106,19 +7973,19 @@ Yv Yv Yv Yv -qS -qS +FI +FI iK Wv -iN -iN -iN +El +El +El Wv Rz cH -Pf -Pf -Pf +GS +GS +GS cH cH qa diff --git a/_maps/shuttles/shiptest/independent_trunktide.dmm b/_maps/shuttles/shiptest/independent_trunktide.dmm index 1d39d755fea6..f1c3621654b1 100644 --- a/_maps/shuttles/shiptest/independent_trunktide.dmm +++ b/_maps/shuttles/shiptest/independent_trunktide.dmm @@ -1,4 +1,19 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aq" = ( +/obj/item/trash/sosjerky, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/areaeditor/shuttle{ + pixel_y = 7 + }, +/obj/item/stack/tape/industrial{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/spacecash/bundle/c50, +/obj/item/radio/intercom/wideband/directional/east, +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/ship/bridge) "ay" = ( /obj/structure/rack, /obj/item/storage/backpack/explorer, @@ -50,20 +65,6 @@ /obj/machinery/door/window/northleft, /turf/open/floor/pod/light, /area/ship/engineering) -"bL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/ship/cargo) "cN" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plating, @@ -84,8 +85,28 @@ }, /turf/open/floor/plating, /area/ship/external) +"eH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C" + }, +/turf/open/floor/pod/dark, +/area/ship/maintenance/central) "eP" = ( /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "Tcargotide2" }, /obj/effect/decal/cleanable/dirt/dust, @@ -96,18 +117,26 @@ /obj/structure/barricade/wooden/crude, /turf/open/floor/plating, /area/ship/maintenance/central) +"fm" = ( +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 25 + }, +/obj/machinery/cryopod/poor{ + dir = 4; + icon = 'icons/obj/crates.dmi'; + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/ship/crew) "fW" = ( -/obj/structure/fans/tiny, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, /obj/docking_port/mobile{ launch_status = 0; port_direction = 2 }, -/obj/machinery/door/poddoor{ - id = "baydoors"; - name = "Cargo Bay Blast Door" - }, /turf/open/floor/plating, -/area/ship/cargo) +/area/ship/bridge) "gh" = ( /turf/closed/wall/r_wall, /area/ship/cargo) @@ -119,6 +148,25 @@ /obj/machinery/suit_storage_unit/independent/mining/eva, /turf/open/floor/pod/light, /area/ship/maintenance/central) +"gM" = ( +/obj/structure/closet/wall{ + dir = 1; + pixel_y = -28 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ship/crew) "gN" = ( /obj/machinery/atmospherics/components/binary/pump/on/layer2{ dir = 1 @@ -138,18 +186,32 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/ship/maintenance/fore) -"hK" = ( -/obj/machinery/light, -/obj/machinery/button/door{ - id = "Mcargotide"; - pixel_y = 23 +"hb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/dust/corner{ + dir = 4 }, /obj/effect/turf_decal/siding/thinplating/light{ color = "#C3630C"; - dir = 1 + dir = 8 }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) +"hq" = ( +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/ship/maintenance/fore) "hP" = ( /obj/structure/fans/tiny, /obj/machinery/door/poddoor{ @@ -158,6 +220,22 @@ }, /turf/open/floor/plating, /area/ship/cargo) +"hV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C"; + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/ship/maintenance/central) "ip" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 @@ -172,6 +250,34 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) +"ir" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"iY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/directional/east, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/ship/maintenance/central) "jz" = ( /obj/structure/cable{ icon_state = "0-4" @@ -181,26 +287,26 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) -"jI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, +"jE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "1-2" }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C"; - dir = 9 +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning/dust/corner, +/obj/effect/turf_decal/industrial/warning/dust/corner{ + dir = 8 }, /turf/open/floor/pod/dark, -/area/ship/cargo) +/area/ship/maintenance/central) "kj" = ( /obj/machinery/button/door{ id = "Rcargotide"; pixel_x = -23; - pixel_y = 32 + pixel_y = 32; + dir = 4 }, /obj/structure/cable{ icon_state = "1-2" @@ -243,6 +349,7 @@ icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "Tcargotide2" }, /turf/open/floor/plating, @@ -328,6 +435,21 @@ icon_state = "platingdmg1" }, /area/ship/maintenance/central) +"mZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C"; + dir = 9 + }, +/turf/open/floor/pod/dark, +/area/ship/cargo) "nb" = ( /obj/structure/cable{ icon_state = "1-2" @@ -371,6 +493,7 @@ dir = 9 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "Lcargotide" }, /obj/machinery/atmospherics/components/binary/pump/on{ @@ -398,6 +521,7 @@ color = "#C3630C"; dir = 4 }, +/obj/effect/landmark/observer_start, /turf/open/floor/pod/dark, /area/ship/cargo) "qm" = ( @@ -409,31 +533,11 @@ "qt" = ( /obj/machinery/door/poddoor/shutters{ desc = "Heavy duty metal shutters that open mechanically. This one appears to lack proper setup, thus functionally useless."; + dir = 4; name = "Broken Shutters" }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"rf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C" - }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) "rB" = ( /obj/structure/cable{ icon_state = "5-8" @@ -444,7 +548,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/airlock/glass, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/crew) "rD" = ( @@ -467,6 +573,17 @@ "rV" = ( /turf/closed/wall/r_wall, /area/ship/crew) +"sd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "8-9" + }, +/obj/machinery/light/directional/south, +/obj/item/storage/overmap_ship/fueled/directional/east, +/turf/open/floor/plating, +/area/ship/bridge) "sh" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/shuttle/heater{ @@ -538,15 +655,21 @@ /area/ship/maintenance/fore) "te" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/cryopod{ - close_state = "crate"; - dir = 8; +/obj/machinery/cryopod/poor{ + dir = 4; icon = 'icons/obj/crates.dmi'; - icon_state = "crateopen"; - open_state = "crateopen" + icon_state = "crateopen" }, /turf/open/floor/plating, /area/ship/crew) +"to" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/cable{ + icon_state = "0-6" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "tr" = ( /turf/closed/wall/mineral/titanium/survival, /area/ship/cargo) @@ -567,17 +690,6 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) -"tY" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/fore) "ua" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -635,6 +747,21 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) +"vZ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/curtain/cloth/fancy, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/glass, +/obj/structure/toilet/secret{ + dir = 8; + secret_type = /obj/item/circuitboard/machine/autolathe + }, +/obj/item/spacecash/bundle/c100, +/obj/item/spacecash/bundle/c100, +/turf/open/floor/plating, +/area/ship/crew) "wt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 @@ -669,12 +796,14 @@ /obj/machinery/button/door{ id = "RMcargotide"; pixel_x = 23; - pixel_y = 32 + pixel_y = 32; + dir = 8 }, /obj/machinery/button/door{ id = "LMcargotide"; pixel_x = -23; - pixel_y = 32 + pixel_y = 32; + dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/warning/dust{ @@ -703,47 +832,46 @@ /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/pod/light, /area/ship/maintenance/central) -"xB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 1 +"xx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/light{ - dir = 4 +/obj/structure/cable{ + icon_state = "0-8" }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/industrial/warning/dust/corner{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 10 }, +/obj/effect/turf_decal/industrial/warning/dust, /obj/effect/turf_decal/siding/thinplating/light{ color = "#C3630C"; - dir = 8 + dir = 1 }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) +/turf/open/floor/pod/light, +/area/ship/engineering) "xJ" = ( -/obj/structure/sign/mining/survival, -/turf/closed/wall/mineral/titanium/survival, +/turf/closed/wall/mineral/titanium/survival/nodiagonal, /area/ship/maintenance/central) -"xO" = ( -/obj/item/trash/sosjerky, -/obj/item/radio/intercom/wideband{ - pixel_x = 28 +"xP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/areaeditor/blueprints{ - pixel_x = 7; - pixel_y = -1 +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/structure/table/rolling, -/obj/item/stack/tape/industrial{ - pixel_x = -6; - pixel_y = 7 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/spacecash/bundle/c50, -/turf/open/floor/plating, -/area/ship/bridge) +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C"; + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/ship/maintenance/central) "yp" = ( /obj/structure/girder/reinforced, /obj/structure/window/reinforced{ @@ -773,38 +901,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/bridge) -"yJ" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C"; - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) -"yU" = ( -/obj/machinery/light, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C"; - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) "zz" = ( /obj/effect/turf_decal/techfloor{ dir = 6 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "Rcargotide" }, /obj/machinery/atmospherics/components/binary/pump{ @@ -820,12 +922,12 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"AF" = ( -/obj/machinery/light{ +"Ae" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/blood/footprints{ dir = 4 }, -/obj/effect/decal/cleanable/blood/footprints, -/turf/open/floor/plating, +/turf/open/floor/plating/rust, /area/ship/maintenance/fore) "AO" = ( /obj/structure/grille, @@ -859,26 +961,12 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) -"Bv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning/dust/corner, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C"; - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) "By" = ( /obj/effect/turf_decal/techfloor{ dir = 9 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "RMcargotide" }, /turf/open/floor/pod/light, @@ -921,6 +1009,14 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) +"Cj" = ( +/obj/structure/curtain/cloth/grey, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/ship/crew) "Cw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -934,11 +1030,10 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/siding/thinplating/light{ color = "#C3630C" }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/pod/dark, /area/ship/maintenance/central) "Cy" = ( @@ -946,6 +1041,7 @@ dir = 6 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "LMcargotide" }, /turf/open/floor/pod/light, @@ -992,19 +1088,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/maintenance/fore) -"DY" = ( -/obj/machinery/cryopod{ - close_state = "crate"; - dir = 8; - icon = 'icons/obj/crates.dmi'; - icon_state = "crateopen"; - open_state = "crateopen" - }, -/obj/machinery/computer/cryopod{ - pixel_y = 25 - }, -/turf/open/floor/plating, -/area/ship/crew) "Eb" = ( /obj/structure/girder/reinforced, /obj/structure/window/reinforced, @@ -1061,41 +1144,24 @@ "Fi" = ( /turf/closed/wall/r_wall/rust, /area/ship/bridge) -"Fk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/industrial/warning/dust, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C"; - dir = 1 - }, -/turf/open/floor/pod/light, -/area/ship/engineering) -"Fs" = ( -/obj/effect/spawner/lootdrop/maintenance/seven, -/obj/structure/closet/crate, -/obj/item/storage/toolbox/electrical, -/obj/item/spacecash/bundle/c100, -/turf/open/floor/plating, -/area/ship/maintenance/fore) "Fz" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 4 }, /turf/open/floor/plating, /area/ship/maintenance/fore) +"Go" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning/dust/corner, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C"; + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/ship/maintenance/central) "Gq" = ( /obj/structure/window/reinforced/tinted{ dir = 1 @@ -1104,6 +1170,7 @@ /obj/structure/cable{ icon_state = "5-10" }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ship/crew) "GG" = ( @@ -1129,20 +1196,21 @@ }, /turf/open/floor/pod/dark, /area/ship/cargo) -"GV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, +"GU" = ( /obj/structure/cable{ - icon_state = "0-4" + icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning/dust/corner{ + dir = 1 }, -/obj/machinery/power/apc/auto_name/north, /obj/effect/turf_decal/siding/thinplating/light{ color = "#C3630C"; - dir = 1 + dir = 4 }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) @@ -1156,26 +1224,6 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) -"HO" = ( -/obj/structure/closet/wall{ - dir = 1; - pixel_y = -28 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ship/crew) "Im" = ( /obj/effect/turf_decal/techfloor{ dir = 5 @@ -1185,6 +1233,14 @@ /obj/machinery/pipedispenser, /turf/open/floor/pod/light, /area/ship/maintenance/central) +"Iu" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C"; + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/ship/maintenance/central) "Ix" = ( /obj/structure/frame/computer, /turf/open/floor/plating, @@ -1231,6 +1287,11 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) +"JG" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "JP" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1252,20 +1313,6 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) -"KY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-5" - }, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/airalarm/directional/west, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/bridge) "Lb" = ( /obj/structure/cable/yellow, /obj/structure/cable{ @@ -1280,41 +1327,15 @@ /turf/open/floor/plating, /area/ship/maintenance/fore) "LG" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/port_gen/pacman, -/obj/item/stack/sheet/mineral/plasma/twenty, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"LL" = ( -/obj/structure/cable{ - icon_state = "1-10" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/ship/maintenance/fore) -"LO" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/curtain/cloth/fancy, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/glass, -/obj/structure/toilet/secret{ - dir = 8; - secret_type = /obj/item/circuitboard/machine/autolathe +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/obj/item/spacecash/bundle/c100, -/obj/item/spacecash/bundle/c100, +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/crew) +/area/ship/maintenance/fore) "Ma" = ( /obj/structure/tank_dispenser, /turf/open/floor/plating, @@ -1338,28 +1359,15 @@ /obj/structure/barricade/wooden/crude, /turf/open/floor/plating, /area/ship/crew) -"Mu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C" +"MW" = ( +/obj/docking_port/stationary{ + dwidth = 15; + width = 30; + height = 15; + dir = 2 }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) +/turf/template_noop, +/area/template_noop) "No" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1377,19 +1385,26 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) -"Oa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +"Og" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "8-9" + icon_state = "4-8" }, -/obj/machinery/light, -/obj/item/storage/overmap_ship/fueled{ - pixel_x = 32 +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C" }, -/turf/open/floor/plating, -/area/ship/bridge) +/turf/open/floor/pod/dark, +/area/ship/maintenance/central) "OA" = ( /obj/structure/cable{ icon_state = "1-10" @@ -1408,58 +1423,12 @@ icon_state = "platingdmg3" }, /area/ship/maintenance/fore) -"Pt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C"; - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) -"Pu" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/ship/maintenance/fore) -"PC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/dust/corner, -/obj/effect/turf_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) "PE" = ( /obj/effect/turf_decal/techfloor{ dir = 5 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "LMcargotide" }, /obj/effect/decal/cleanable/dirt/dust, @@ -1468,14 +1437,6 @@ "PR" = ( /turf/closed/wall/mineral/titanium/survival, /area/ship/maintenance/central) -"Qd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/cable{ - icon_state = "0-6" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/ship/maintenance/fore) "Qt" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1505,6 +1466,18 @@ /obj/machinery/door/window/northleft, /turf/open/floor/pod/light, /area/ship/engineering) +"QW" = ( +/obj/machinery/light/directional/south, +/obj/machinery/button/door{ + id = "Mcargotide"; + pixel_y = 23 + }, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C"; + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/ship/maintenance/central) "Rj" = ( /turf/closed/wall/r_wall, /area/ship/maintenance/central) @@ -1561,7 +1534,8 @@ /obj/machinery/button/door{ id = "Lcargotide"; pixel_x = 23; - pixel_y = 32 + pixel_y = 32; + dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/warning/dust{ @@ -1573,14 +1547,6 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) -"TL" = ( -/obj/structure/curtain/cloth/grey, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/ship/crew) "Uo" = ( /obj/effect/turf_decal/techfloor{ dir = 5 @@ -1590,6 +1556,20 @@ }, /turf/open/floor/pod/light, /area/ship/maintenance/central) +"Ux" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-5" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/airalarm/directional/west, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/bridge) "US" = ( /obj/structure/cable{ icon_state = "2-9" @@ -1599,23 +1579,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/maintenance/fore) -"Vs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/industrial/warning/dust, -/obj/effect/turf_decal/siding/thinplating/light{ - color = "#C3630C"; - dir = 1 - }, -/turf/open/floor/pod/light, -/area/ship/engineering) "VM" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1638,6 +1601,21 @@ /obj/machinery/door/poddoor/shutters, /turf/open/floor/plating, /area/ship/maintenance/central) +"Wj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/industrial/warning/dust, +/obj/effect/turf_decal/siding/thinplating/light{ + color = "#C3630C"; + dir = 1 + }, +/turf/open/floor/pod/light, +/area/ship/engineering) "Wv" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -1658,27 +1636,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"WX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/ship/maintenance/central) "Xi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 @@ -1722,6 +1679,7 @@ dir = 5 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "Rcargotide" }, /obj/effect/decal/cleanable/dirt/dust, @@ -1771,14 +1729,34 @@ }, /turf/open/floor/pod/dark, /area/ship/maintenance/central) +"Yr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/ship/cargo) "YB" = ( /turf/closed/wall/r_wall, /area/ship/engineering) +"YC" = ( +/obj/effect/spawner/lootdrop/maintenance/seven, +/obj/structure/closet/crate, +/obj/item/storage/toolbox/electrical, +/obj/item/spacecash/bundle/c100, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "YK" = ( /obj/effect/turf_decal/techfloor{ dir = 10 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "RMcargotide" }, /turf/open/floor/pod/light, @@ -1791,6 +1769,7 @@ dir = 8 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "Lcargotide" }, /turf/open/floor/pod/light, @@ -1848,6 +1827,7 @@ BZ BZ BZ BZ +BZ "} (2,1,1) = {" BZ @@ -1871,6 +1851,7 @@ BZ BZ BZ BZ +BZ "} (3,1,1) = {" BZ @@ -1890,7 +1871,8 @@ PR PR PR PR -PR +xJ +BZ BZ BZ BZ @@ -1908,15 +1890,16 @@ Wv qm mN EM -Bv +Go Ty mK -xB +hb Xi PR BZ BZ BZ +BZ "} (5,1,1) = {" BZ @@ -1924,33 +1907,34 @@ BZ BZ BH cN -tY +ir El El El BH ts eF -PR +xJ pG YO -PR +xJ JS lQ dm dm -dm +lQ +BZ "} (6,1,1) = {" BZ BZ BZ BH -Qd +to DM RX BH -Fs +YC Yb ts Bl @@ -1963,6 +1947,7 @@ sB wt bt xr +BZ "} (7,1,1) = {" BZ @@ -1975,17 +1960,18 @@ lf BH qt qt -PR -yU xJ +Iu PR PR -xJ -Mu +PR +PR +Og dm -Fk +xx sh vk +BZ "} (8,1,1) = {" QM @@ -2004,16 +1990,17 @@ PR IX go PR -Ye -dm +Cw dm dm dm +lQ +BZ "} (9,1,1) = {" AO Ix -KY +Ux QM bc rV @@ -2021,86 +2008,90 @@ rV pC rV rB -PR -GV -PR +xJ +xP +xJ PE Cy -PR -Cw +xJ +AR tr -jI +mZ ER hP +BZ "} (10,1,1) = {" -AO +fW aX DE yD BL rV -DY +fm lC Gq vj ZW ip -PC +jE wG Td -WX +iY XF GI qc GG -fW +hP +MW "} (11,1,1) = {" AO -xO -Oa +aq +sd Fi Fz pC -TL +Cj OA Qt -HO +gM Rj Hu -PR +xJ By YK -PR +xJ Ye gh -bL +Yr rD hP +BZ "} (12,1,1) = {" Fi Fi Fi Fi -Pu +Ae pC te aN -LO +vZ kv Rj tw -PR +xJ Im Mh -PR +xJ AR sv sv YB YB +BZ "} (13,1,1) = {" BZ @@ -2114,16 +2105,17 @@ rV Rj fg ts -hK +QW xJ PR PR xJ -rf +eH dm -Vs +Wj QU vk +BZ "} (14,1,1) = {" BZ @@ -2138,15 +2130,16 @@ Rj oj Wh eF -PR +xJ xt VY -PR +xJ md sK RU QE xr +BZ "} (15,1,1) = {" BZ @@ -2161,15 +2154,16 @@ ts ay Wh eF -PR +xJ XT zz -PR +xJ EZ lQ dm dm dm +BZ "} (16,1,1) = {" BZ @@ -2182,17 +2176,18 @@ eP ls ts Rj -PR +xJ XV -yJ +hV kj No -Pt +GU mo PR BZ BZ BZ +BZ "} (17,1,1) = {" BZ @@ -2201,18 +2196,19 @@ BZ BH vO rO -AF +JG VM JP IR -LL +hq ZK +xJ PR PR PR PR -PR -PR +xJ +BZ BZ BZ BZ @@ -2239,4 +2235,5 @@ BZ BZ BZ BZ +BZ "} diff --git a/_maps/shuttles/shiptest/inteq_colossus.dmm b/_maps/shuttles/shiptest/inteq_colossus.dmm index b0e2c8ef2224..9c8a6dd02f0d 100644 --- a/_maps/shuttles/shiptest/inteq_colossus.dmm +++ b/_maps/shuttles/shiptest/inteq_colossus.dmm @@ -1,27 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/machinery/light/small, -/obj/structure/catwalk/over/plated_catwalk/dark, -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"ab" = ( -/obj/structure/catwalk/over/plated_catwalk/dark, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/tank/oxygen{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering) "ah" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -66,37 +43,16 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"aD" = ( -/obj/structure/closet, -/obj/structure/railing, -/obj/structure/catwalk/over/plated_catwalk, -/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/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" +"aN" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/machinery/light/small/directional/west, +/obj/machinery/cryopod{ + dir = 4 }, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/cryo) -"aG" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 1; - piping_layer = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/starboard) "aU" = ( /obj/effect/turf_decal/trimline/opaque/yellow/warning, /obj/effect/turf_decal/siding/thinplating/corner, @@ -106,6 +62,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) +"aZ" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/advanced_airlock_controller{ + pixel_x = 25; + req_access = null + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/port) "bd" = ( /obj/machinery/porta_turret/centcom_shuttle/ballistic{ dir = 9; @@ -114,39 +82,29 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) -"bl" = ( -/obj/structure/closet/secure_closet{ - icon_state = "sec"; - name = "equipment locker"; - req_access_txt = "1" - }, -/obj/item/clothing/mask/gas/sechailer/inteq, -/obj/item/clothing/mask/gas/sechailer/inteq, -/obj/item/clothing/mask/gas/sechailer/inteq, -/obj/item/storage/belt/security/webbing/inteq, -/obj/item/storage/belt/security/webbing/inteq, -/obj/item/storage/belt/security/webbing/inteq, -/obj/item/clothing/glasses/hud/security/sunglasses/inteq, -/obj/item/clothing/glasses/hud/security/sunglasses/inteq, -/obj/item/clothing/glasses/hud/security/sunglasses/inteq, -/obj/machinery/light{ - dir = 8 +"bn" = ( +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/item/melee/baton, -/obj/item/melee/baton, -/obj/item/melee/baton, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ +/obj/machinery/power/terminal{ dir = 8 }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 +/obj/effect/turf_decal/hardline_small/right{ + dir = 4 }, -/obj/item/storage/box/handcuffs, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "bo" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/port) +"bq" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering) "bs" = ( /obj/machinery/door/airlock/public/glass{ name = "Crew Quarters" @@ -179,24 +137,26 @@ }, /turf/open/floor/carpet/black, /area/ship/crew) -"cc" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes/shuttle/precharged{ +"bS" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, /obj/machinery/door/poddoor{ + dir = 4; id = "colossus_thrusters" }, /turf/open/floor/plating, -/area/ship/maintenance/port) +/area/ship/maintenance/starboard) "cj" = ( /obj/machinery/porta_turret/centcom_shuttle/ballistic{ dir = 10; @@ -205,18 +165,9 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) -"cs" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) +"cv" = ( +/turf/open/floor/plating/airless, +/area/template_noop) "cM" = ( /obj/structure/closet/secure_closet/freezer{ anchored = 1; @@ -237,6 +188,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/item/reagent_containers/food/snacks/icecreamsandwich, +/obj/machinery/newscaster/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew/office) "cO" = ( @@ -257,25 +209,24 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/patterned, /area/ship/crew/toilet) -"di" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/screwdriver, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 +"dq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/machinery/atmospherics/pipe/simple/dark/visible/layer5{ dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) +/obj/machinery/door/poddoor{ + dir = 4; + id = "colossus_windows"; + name = "Window Shield" + }, +/turf/open/floor/plating, +/area/ship/engineering) "du" = ( /obj/structure/railing{ dir = 4 @@ -300,7 +251,8 @@ }, /obj/machinery/door/poddoor{ id = "colossus_windows"; - name = "Window Shield" + name = "Window Shield"; + dir = 4 }, /turf/open/floor/plating, /area/ship/crew) @@ -323,6 +275,7 @@ /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) "dS" = ( @@ -339,6 +292,34 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"dU" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/structure/table/rolling, +/obj/item/gun/energy/laser/practice{ + pixel_y = 10 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"eg" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering) "ei" = ( /obj/structure/cable{ icon_state = "1-4" @@ -410,14 +391,6 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"eJ" = ( -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/cable, -/obj/machinery/light, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/fore) "eK" = ( /obj/structure/table, /obj/item/storage/box/cups{ @@ -463,20 +436,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"eZ" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) "fi" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -503,16 +462,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"fo" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "fp" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 10 @@ -520,8 +469,31 @@ /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 10 }, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/fore) +"fN" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "colossus_windows"; + name = "Window Shield" + }, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"fO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "fQ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -590,43 +562,55 @@ /obj/item/screwdriver, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"gm" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 25 +"gl" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/firealarm/directional/south, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/tank/oxygen{ + dir = 1 }, -/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/engineering) +"gr" = ( +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) -"gy" = ( -/obj/structure/frame/machine{ - anchored = 1 +/obj/effect/turf_decal/steeldecal/steel_decals_central7{ + dir = 4 }, -/obj/item/circuitboard/machine/rdserver, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 +/turf/open/floor/carpet/orange, +/area/ship/bridge) +"gs" = ( +/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/effect/turf_decal/corner/opaque/brown{ +/obj/machinery/suit_storage_unit/inherit{ + req_access_txt = "1" + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 4 }, -/obj/item/stock_parts/scanning_module, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_x = 32 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) -"gC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/effect/turf_decal/steeldecal/steel_decals_central7{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/yellow{ +/obj/item/tank/jetpack/oxygen, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) +"gC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -652,21 +636,17 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"gZ" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +"hc" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 1; + piping_layer = 1 }, -/obj/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/number/three{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/starboard) "hf" = ( /obj/structure/closet/secure_closet{ icon_state = "armory"; @@ -731,26 +711,10 @@ /obj/structure/closet/wall{ icon_door = "orange_wall"; name = "uniform closet"; - pixel_y = 32 + pixel_y = 28 }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"hr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/structure/closet/cardboard, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/item/storage/box/inteqmaid, -/obj/effect/spawner/lootdrop/maintenance/seven, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "hD" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/port) @@ -772,24 +736,53 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"hX" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes/shuttle/precharged{ +"hU" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ dir = 4 }, -/obj/structure/window/reinforced{ +/obj/item/trash/sosjerky, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) +"hZ" = ( +/obj/effect/turf_decal/box/corners{ dir = 8 }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" +/obj/machinery/status_display/shuttle{ + pixel_x = -32 }, -/obj/machinery/door/poddoor{ - id = "colossus_thrusters" +/obj/structure/sign/poster/official/no_erp{ + pixel_y = -32 }, -/turf/open/floor/plating, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"ie" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/starboard) +"ig" = ( +/obj/docking_port/mobile{ + dir = 2; + launch_status = 0; + port_direction = 8; + preferred_direction = 4 + }, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/port) +"im" = ( +/obj/structure/dresser, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "iq" = ( /obj/structure/cable{ icon_state = "1-2" @@ -803,6 +796,15 @@ /obj/effect/turf_decal/corner/opaque/yellow, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) +"iw" = ( +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "iG" = ( /obj/structure/cable{ icon_state = "0-4" @@ -826,31 +828,37 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew/toilet) -"iN" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +"iT" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/fore) +"iX" = ( +/obj/item/radio/intercom/wideband/directional/south, +/obj/machinery/computer/cargo/express{ + dir = 1 }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 8 +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"iY" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"ja" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 + dir = 9 }, -/obj/item/radio/intercom{ - pixel_y = 22 +/obj/structure/closet/crate{ + icon_state = "radiation"; + name = "fuel crate" }, -/obj/effect/turf_decal/corner_techfloor_gray, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, -/area/ship/maintenance/port) +/area/ship/engineering) "jn" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /obj/structure/reagent_dispensers/watertank, @@ -878,24 +886,16 @@ "jw" = ( /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"jy" = ( -/obj/machinery/suit_storage_unit/inherit{ - req_access_txt = "1" - }, -/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 8 +"jx" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 }, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/obj/item/tank/jetpack/oxygen, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "jT" = ( /obj/structure/cable{ icon_state = "4-8" @@ -921,20 +921,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"kq" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central7{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) "kI" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/cryo) @@ -980,6 +966,13 @@ /obj/effect/turf_decal/floordetail/edgedrain, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"lg" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "lr" = ( /obj/structure/sign/poster/official/moth/epi{ pixel_x = 32 @@ -1028,31 +1021,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"lE" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"lF" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) "lM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -1079,18 +1047,9 @@ /obj/item/cigbutt, /obj/item/trash/can, /obj/item/trash/chips, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) -"lX" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "mq" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1115,27 +1074,22 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) -"mt" = ( -/obj/item/storage/backpack/messenger/inteq, -/obj/item/storage/backpack/messenger/inteq, -/obj/item/storage/backpack/messenger/inteq, -/obj/item/clothing/head/beret/sec/inteq, -/obj/item/clothing/head/beret/sec/inteq, -/obj/item/clothing/head/beret/sec/inteq, -/obj/item/clothing/head/soft/inteq, -/obj/item/clothing/head/soft/inteq, -/obj/item/clothing/head/soft/inteq, -/obj/structure/closet/wall{ - icon_door = "orange_wall"; - name = "uniform closet"; - pixel_y = 32 +"mu" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 +/obj/effect/turf_decal/borderfloor{ + dir = 4 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central7, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/port) "mz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -1146,34 +1100,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security/armory) -"mP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"mT" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/structure/curtain/bounty, -/obj/item/bedsheet/brown, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/carpet/black, -/area/ship/crew) "mY" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1184,21 +1110,20 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) -"nb" = ( +"nh" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light/directional/east, +/obj/item/screwdriver, +/obj/item/radio/intercom/directional/east, /obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/newscaster{ - pixel_y = 32 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) "nm" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /obj/effect/turf_decal/techfloor{ @@ -1219,14 +1144,25 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"nE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ +"nC" = ( +/obj/machinery/cryopod{ dir = 8 }, -/turf/open/floor/plasteel/tech, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) +"nE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/tech, /area/ship/security/armory) "nQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -1238,19 +1174,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/security/armory) -"nV" = ( -/obj/structure/rack, -/obj/item/pickaxe/drill/jackhammer/old, -/obj/effect/turf_decal/floordetail/edgedrain, -/obj/item/pickaxe/mini, -/obj/item/pickaxe/mini, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "nW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -1259,47 +1182,6 @@ /obj/effect/turf_decal/trimline/opaque/yellow/filled/warning, /turf/open/floor/plasteel/tech, /area/ship/security/armory) -"nZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/turretid{ - pixel_y = 32; - req_access = null; - req_access_txt = "58" - }, -/obj/structure/table/reinforced, -/obj/item/storage/fancy/cigarettes/cigars/havana, -/obj/item/lighter{ - pixel_y = 5 - }, -/obj/item/toy/figure/vanguard{ - pixel_x = -10; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"oa" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) "oe" = ( /obj/structure/table/reinforced, /obj/structure/cable{ @@ -1331,23 +1213,19 @@ "ot" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew) -"oE" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) "oI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/grimy, /area/ship/crew) +"oK" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "oO" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 @@ -1366,40 +1244,6 @@ /obj/structure/sign/number/nine, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security/armory) -"pq" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "colossus_thrusters" - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"ps" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/sosjerky, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "pv" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -1407,30 +1251,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"pw" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cargo Bay" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) "pA" = ( /obj/structure/cable{ icon_state = "2-4" @@ -1444,18 +1264,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/port) -"pD" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/item/trash/sosjerky, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) "pF" = ( /obj/structure/cable{ icon_state = "2-4" @@ -1472,6 +1280,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/maintenance/port) +"pO" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/fore) "pP" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1510,17 +1328,6 @@ }, /turf/open/floor/engine/hull, /area/ship/cargo) -"qq" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor{ - id = "colossus_windows"; - name = "Window Shield" - }, -/turf/open/floor/plating, -/area/ship/hallway/fore) "qr" = ( /obj/structure/table, /obj/structure/cable{ @@ -1528,45 +1335,15 @@ }, /turf/open/floor/carpet/black, /area/ship/crew) -"qw" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10, -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) -"qz" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ - dir = 9 - }, -/obj/structure/table/rolling, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/sign/warning/nosmoking/circle{ - pixel_x = 32 - }, -/obj/item/pushbroom, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/port) -"qM" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos{ - name = "vanguard's bedsheet" - }, -/obj/structure/curtain/bounty, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +"qK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plating, +/area/ship/engineering) "qR" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 4 @@ -1580,27 +1357,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"qW" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Cryogenic Storage" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/cryo) "qY" = ( /obj/effect/turf_decal/floordetail/edgedrain{ dir = 1 @@ -1636,6 +1392,25 @@ /obj/effect/turf_decal/floordetail/edgedrain, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"re" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "colossus_thrusters" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "rf" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1720,30 +1495,60 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security/armory) -"sc" = ( -/obj/structure/table, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/item/toy/figure/inteq, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) -"sm" = ( -/obj/structure/table, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/item/toy/cards/deck/cas, -/obj/item/toy/cards/deck/cas/black{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = -32 +"sb" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/structure/closet/crate, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/snacks/rationpack, +/obj/item/reagent_containers/food/drinks/waterbottle/large, +/obj/item/reagent_containers/food/drinks/waterbottle/large, +/obj/item/reagent_containers/food/drinks/waterbottle/large, +/obj/item/reagent_containers/food/drinks/waterbottle/large, +/obj/item/reagent_containers/food/drinks/waterbottle/large, +/obj/machinery/status_display/shuttle{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"sc" = ( +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/item/toy/figure/inteq, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) +"sj" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastright{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "colossus_thrusters" + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "sp" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -1754,6 +1559,17 @@ /obj/effect/landmark/start/medical_doctor, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"sz" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/fore) "sD" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -1771,6 +1587,25 @@ }, /turf/open/floor/engine/hull, /area/ship/cargo) +"sF" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "colossus_thrusters" + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "sI" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1790,18 +1625,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"sN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/obj/structure/catwalk/over/plated_catwalk/dark, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/ship/engineering) "sP" = ( /obj/structure/chair{ dir = 4 @@ -1820,26 +1643,6 @@ /obj/item/pen, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"sT" = ( -/obj/machinery/suit_storage_unit/inherit{ - req_access_txt = "1" - }, -/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/item/tank/jetpack/oxygen, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) "td" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1870,6 +1673,25 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) +"tp" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastright{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "colossus_thrusters" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "tt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -1901,21 +1723,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"tF" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/advanced_airlock_controller{ - pixel_x = 25; - req_access = null - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/port) "tG" = ( /obj/structure/closet/secure_closet/wall{ dir = 4; @@ -1952,6 +1759,20 @@ /obj/machinery/holopad/emergency/command, /turf/open/floor/carpet/orange, /area/ship/bridge) +"tK" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "tR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -1968,6 +1789,13 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"tT" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/steeldecal/steel_decals10, +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) "tX" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) @@ -1994,6 +1822,13 @@ /obj/effect/landmark/start/head_of_security, /turf/open/floor/carpet/orange, /area/ship/bridge) +"ui" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) "uq" = ( /obj/machinery/shower{ pixel_y = 19 @@ -2005,17 +1840,6 @@ }, /turf/open/floor/plasteel/patterned/brushed, /area/ship/crew/toilet) -"us" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/starboard) "uv" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/structure/cable, @@ -2025,6 +1849,31 @@ }, /turf/open/floor/plating, /area/ship/crew) +"uw" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4; + name = "Cargo Bay" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "uy" = ( /obj/structure/cable{ icon_state = "2-8" @@ -2055,45 +1904,28 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security/armory) -"uB" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/floordetail/edgedrain{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"uF" = ( +"uE" = ( /obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/port) -"uH" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + icon_state = "0-4" }, -/obj/effect/turf_decal/corner_techfloor_gray, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 1 +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/effect/turf_decal/corner_techfloor_gray{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/hardline_small/left{ dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/maintenance/port) +/area/ship/maintenance/starboard) +"uN" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/airalarm/directional/east, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/number/five{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/starboard) "vc" = ( /obj/machinery/door/airlock{ name = "Head" @@ -2144,29 +1976,6 @@ }, /turf/open/floor/plating, /area/ship/crew/office) -"vx" = ( -/obj/structure/closet/crate/trashcart, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/spawner/lootdrop/spacegym, -/obj/effect/spawner/lootdrop/spacegym, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/chips, -/obj/item/trash/sosjerky, -/obj/item/cigbutt, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/ship/maintenance/port) "vH" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) @@ -2227,16 +2036,14 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"wE" = ( +"wH" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew/office) "wS" = ( @@ -2272,21 +2079,41 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"xu" = ( -/obj/effect/turf_decal/techfloor{ +"xr" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/cryopod{ - dir = 4 +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) -"xx" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "2-4" + icon_state = "0-2" + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central7, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"xv" = ( +/obj/item/storage/backpack/messenger/inteq, +/obj/item/storage/backpack/messenger/inteq, +/obj/item/storage/backpack/messenger/inteq, +/obj/item/clothing/head/beret/sec/inteq, +/obj/item/clothing/head/beret/sec/inteq, +/obj/item/clothing/head/beret/sec/inteq, +/obj/item/clothing/head/soft/inteq, +/obj/item/clothing/head/soft/inteq, +/obj/item/clothing/head/soft/inteq, +/obj/structure/closet/wall{ + icon_door = "orange_wall"; + name = "uniform closet"; + pixel_y = 28 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"xx" = ( +/obj/structure/cable{ + icon_state = "2-4" }, /obj/structure/cable{ icon_state = "1-4" @@ -2335,55 +2162,68 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"xT" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 +"xV" = ( +/obj/structure/closet/crate/medical, +/obj/machinery/button/door{ + dir = 1; + id = "colossus_starboard"; + name = "Starboard Cargo Door Control"; + pixel_x = -6; + pixel_y = -25 }, -/obj/effect/turf_decal/siding/thinplating{ +/obj/effect/turf_decal/industrial/caution{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central7, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"yf" = ( -/obj/structure/railing{ - dir = 8 +/obj/item/storage/backpack/satchel/med, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/glasses/hud/health, +/obj/item/storage/belt/medical/webbing, +/obj/item/clothing/suit/armor/inteq/corpsman, +/obj/item/clothing/head/soft/inteq/corpsman, +/obj/item/clothing/under/syndicate/inteq/skirt/corpsman, +/obj/item/clothing/under/syndicate/inteq/corpsman, +/obj/machinery/button/shieldwallgen{ + dir = 1; + id = "colossus_cargo_starboard"; + pixel_x = 5; + pixel_y = -25 }, -/turf/open/floor/plasteel/stairs, +/turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"yn" = ( -/obj/structure/cable{ - icon_state = "2-4" +"xY" = ( +/obj/machinery/suit_storage_unit/inherit{ + req_access_txt = "1" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light/small{ - dir = 8 +/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/item/tank/jetpack/oxygen, /turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/port) -"zg" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" +/area/ship/security/armory) +"yf" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/effect/turf_decal/borderfloor{ +/turf/open/floor/plasteel/stairs, +/area/ship/cargo) +"zd" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/tinted/frosted{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central7, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/port) +/obj/structure/curtain/bounty, +/obj/item/bedsheet/brown, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet/black, +/area/ship/crew) "zh" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2404,23 +2244,39 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/carpet/black, /area/ship/crew) -"zE" = ( -/obj/machinery/power/apc/auto_name/west, +"zF" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/crew) +"zH" = ( +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 25 + }, +/obj/structure/catwalk/over/plated_catwalk, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) +"zT" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, -/obj/effect/turf_decal/steeldecal/steel_decals_central7{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/turf/open/floor/carpet/orange, -/area/ship/bridge) -"zF" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/crew) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) "zW" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2479,24 +2335,19 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) -"Aw" = ( -/obj/effect/turf_decal/box/corners, -/obj/machinery/status_display/shuttle{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/storage/firstaid/regular{ - pixel_x = 5 - }, -/obj/item/storage/firstaid/medical{ - pixel_x = -5 - }, -/obj/structure/table/rolling, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "AB" = ( /turf/open/floor/carpet/orange, /area/ship/bridge) +"AF" = ( +/obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/flashlight/lamp/green, +/obj/effect/turf_decal/steeldecal/steel_decals_central7, +/turf/open/floor/carpet/black, +/area/ship/crew) "AG" = ( /obj/structure/cable{ icon_state = "1-4" @@ -2544,6 +2395,17 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security/armory) +"AP" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "AZ" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Port Engines" @@ -2561,32 +2423,26 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"Ba" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 +"Bj" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/firealarm/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/machinery/status_display/shuttle{ - pixel_x = -32 +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"Br" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/port) "BA" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -2602,25 +2458,6 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) -"BD" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "colossus_port"; - name = "Port Cargo Door Control"; - pixel_x = 6; - pixel_y = 25 - }, -/obj/effect/turf_decal/industrial/caution, -/obj/structure/ore_box, -/obj/machinery/button/shieldwallgen{ - id = "colossus_cargo_port"; - pixel_x = -5; - pixel_y = 25 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "BK" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -2630,12 +2467,34 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"BP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/structure/closet/cardboard, +/obj/item/radio/intercom/directional/south, +/obj/item/storage/box/inteqmaid, +/obj/effect/spawner/lootdrop/maintenance/seven, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "BQ" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 8 }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"BR" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/directional/west, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "BY" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2705,23 +2564,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"Cx" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/cigbutt, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) "Cy" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -2736,91 +2578,54 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/crew/office) -"CB" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"CJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "colossus_port"; - name = "Port Cargo Door Control"; - pixel_x = -6; - pixel_y = 25 - }, -/obj/effect/turf_decal/industrial/caution, -/obj/machinery/button/shieldwallgen{ - id = "colossus_cargo_port"; - pixel_x = 5; - pixel_y = 25 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) -"CO" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) -"CP" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +"CP" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"CU" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 +"Dj" = ( +/obj/structure/rack, +/obj/item/ammo_box/magazine/m12g/small{ + pixel_x = 5; + pixel_y = 5 }, -/obj/structure/table/rolling, -/obj/item/gun/energy/laser/practice{ - pixel_y = 10 +/obj/item/ammo_box/magazine/m12g/small{ + pixel_y = 5 }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 5; +/obj/item/ammo_box/magazine/m12g/small{ + pixel_x = -5; pixel_y = 5 }, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/status_display/shuttle{ - pixel_x = 32 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/obj/structure/sign/warning/incident{ - desc = "A sign marking time passed since the last cargo bay decompression. It's a new record!"; - pixel_y = 32 +/obj/structure/sign/poster/contraband/twelve_gauge{ + pixel_y = -32 }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) +/obj/item/gun/ballistic/shotgun/bulldog/inteq{ + pixel_y = -2; + spawnwithmagazine = 0 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) "Dq" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security/armory) -"Dy" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 +"DD" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ + dir = 10 }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/starboard) +/obj/machinery/light/small/directional/east, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering) "DE" = ( /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -2847,25 +2652,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"Eo" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/poddoor{ - id = "colossus_thrusters" - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "Er" = ( /obj/structure/chair{ dir = 4 @@ -2876,6 +2662,34 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/dark, /area/ship/crew/office) +"Eu" = ( +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "equipment locker"; + req_access_txt = "1" + }, +/obj/item/clothing/mask/gas/sechailer/inteq, +/obj/item/clothing/mask/gas/sechailer/inteq, +/obj/item/clothing/mask/gas/sechailer/inteq, +/obj/item/storage/belt/security/webbing/inteq, +/obj/item/storage/belt/security/webbing/inteq, +/obj/item/storage/belt/security/webbing/inteq, +/obj/item/clothing/glasses/hud/security/sunglasses/inteq, +/obj/item/clothing/glasses/hud/security/sunglasses/inteq, +/obj/item/clothing/glasses/hud/security/sunglasses/inteq, +/obj/machinery/light/directional/west, +/obj/item/melee/baton, +/obj/item/melee/baton, +/obj/item/melee/baton, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/item/storage/box/handcuffs, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) "EC" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2894,19 +2708,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"EG" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) "EJ" = ( /obj/structure/cable{ icon_state = "1-8" @@ -2932,23 +2733,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"EZ" = ( -/obj/structure/railing, -/obj/structure/catwalk/over/plated_catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) "Fa" = ( /obj/structure/chair{ dir = 8 @@ -2961,21 +2745,36 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) +"Fl" = ( +/obj/structure/rack, +/obj/item/pickaxe/drill/jackhammer/old, +/obj/effect/turf_decal/floordetail/edgedrain, +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "Fq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"Fr" = ( -/obj/structure/dresser, -/obj/machinery/light, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 +"Fw" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ + dir = 9 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/structure/table/rolling, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_x = 32 + }, +/obj/item/pushbroom, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/port) "FQ" = ( /obj/structure/frame/computer{ anchored = 1; @@ -3029,6 +2828,66 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/office) +"Gy" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"GC" = ( +/obj/structure/closet, +/obj/structure/railing, +/obj/structure/catwalk/over/plated_catwalk, +/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/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) +"GK" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Cryogenic Storage" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/cryo) "GL" = ( /obj/machinery/atmospherics/pipe/layer_manifold/visible, /obj/structure/closet/wall{ @@ -3055,6 +2914,17 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"GV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "GW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/carpet/black, @@ -3081,6 +2951,14 @@ /obj/item/tank/internals/oxygen, /turf/open/floor/plasteel/tech, /area/ship/hallway/port) +"Hd" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15 + }, +/turf/template_noop, +/area/template_noop) "He" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 8 @@ -3090,60 +2968,51 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"Hp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ +"Hh" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 1 }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer5, -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"Hr" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25; - pixel_y = -10 +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/fore) +"Ho" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-2" }, -/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, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"HB" = ( -/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/trash/sosjerky, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"Hp" = ( /obj/structure/cable{ - icon_state = "1-8" + icon_state = "1-2" }, -/obj/machinery/light, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ + dir = 1 }, -/obj/item/storage/lockbox/medal/sec{ - pixel_y = 5 +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/dark/visible/layer5, +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, /turf/open/floor/plasteel/tech, -/area/ship/bridge) +/area/ship/engineering) "HD" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/structure/cable{ @@ -3155,16 +3024,38 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"HM" = ( -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = -22 +"HG" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "engine fuel pump" }, -/obj/machinery/computer/cargo/express{ - dir = 1 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/hardline_small{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"HO" = ( +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central7, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "It" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) @@ -3184,25 +3075,6 @@ "IS" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/toilet) -"IZ" = ( -/obj/structure/rack, -/obj/item/target/syndicate{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/target/syndicate{ - pixel_y = 5 - }, -/obj/item/target/alien{ - pixel_x = 5 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/floordetail/edgedrain, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "Je" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -3232,19 +3104,26 @@ /obj/structure/sign/number/one, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/cryo) -"Kg" = ( +"JO" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/tank/air{ piping_layer = 2 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/engineering) +"JT" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/weightmachine/stacklifter, +/obj/effect/turf_decal/floordetail/edgedrain{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "Kk" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3260,20 +3139,6 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"Kq" = ( -/obj/machinery/power/port_gen/pacman/super, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/ship/engineering) "Ks" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 4 @@ -3287,6 +3152,51 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"Ku" = ( +/obj/machinery/button/door{ + dir = 1; + id = "colossus_starboard"; + name = "Starboard Cargo Door Control"; + pixel_x = 6; + pixel_y = -25 + }, +/obj/effect/turf_decal/industrial/caution{ + dir = 1 + }, +/obj/machinery/button/shieldwallgen{ + dir = 1; + id = "colossus_cargo_starboard"; + pixel_x = -5; + pixel_y = -25 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"KF" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central7, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/fore) +"KG" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos{ + name = "vanguard's bedsheet" + }, +/obj/structure/curtain/bounty, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "KH" = ( /obj/structure/cable{ icon_state = "1-4" @@ -3352,25 +3262,26 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"Lr" = ( -/obj/structure/catwalk/over/plated_catwalk, -/obj/structure/cable{ - icon_state = "4-8" +"Ls" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/item/radio/intercom{ - pixel_y = 22 +/obj/machinery/door/poddoor{ + dir = 4; + id = "colossus_thrusters" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) +/turf/open/floor/plating, +/area/ship/maintenance/port) "Lx" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, @@ -3380,16 +3291,6 @@ "Lz" = ( /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"LE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) "LK" = ( /obj/structure/railing/corner{ dir = 1 @@ -3405,6 +3306,26 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) +"LU" = ( +/obj/structure/frame/machine{ + anchored = 1 + }, +/obj/item/circuitboard/machine/rdserver, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/item/stock_parts/scanning_module, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/newscaster/security_unit/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "Md" = ( /obj/machinery/power/shuttle/engine/electric{ dir = 4 @@ -3414,29 +3335,54 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"Mg" = ( +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) +"Mk" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/item/cigbutt, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) "Mx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"MJ" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +"MD" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/fore) -"ML" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/toilet) +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Engineering" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "MU" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 4 @@ -3465,9 +3411,32 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"NP" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/corner/opaque/yellow, +"NA" = ( +/obj/structure/table, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/item/toy/cards/deck/cas, +/obj/item/toy/cards/deck/cas/black{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"NL" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/item/radio/intercom/directional/south, +/obj/item/cigbutt, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"NP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, @@ -3480,35 +3449,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"NV" = ( -/obj/machinery/light, -/obj/structure/closet/crate/medical, -/obj/machinery/button/door{ - dir = 1; - id = "colossus_starboard"; - name = "Starboard Cargo Door Control"; - pixel_x = -6; - pixel_y = -25 - }, -/obj/effect/turf_decal/industrial/caution{ - dir = 1 - }, -/obj/item/storage/backpack/satchel/med, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/glasses/hud/health, -/obj/item/storage/belt/medical/webbing, -/obj/item/clothing/suit/armor/inteq/corpsman, -/obj/item/clothing/head/soft/inteq/corpsman, -/obj/item/clothing/under/syndicate/inteq/skirt/corpsman, -/obj/item/clothing/under/syndicate/inteq/corpsman, -/obj/machinery/button/shieldwallgen{ - dir = 1; - id = "colossus_cargo_starboard"; - pixel_x = 5; - pixel_y = -25 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "Ob" = ( /obj/machinery/door/window/northright{ req_access_txt = "58" @@ -3604,21 +3544,58 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"OW" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Pb" = ( +/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 }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/trash/chips, +/obj/item/trash/sosjerky, +/obj/item/cigbutt, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"Pl" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ + dir = 10 + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 1 + }, +/obj/effect/turf_decal/corner_techfloor_gray{ dir = 8 }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 +/obj/structure/sign/warning/nosmoking/circle{ + pixel_x = 32 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) +/obj/effect/turf_decal/number/zero{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"Pp" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/corner_techfloor_gray, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 1 + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) "Pv" = ( /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/brown{ @@ -3645,38 +3622,53 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"PP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1{ - dir = 10 - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 1 - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking/circle{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "PV" = ( /obj/structure/sign/number/four, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security/armory) -"Qi" = ( +"PY" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/button/door{ + id = "colossus_port"; + name = "Port Cargo Door Control"; + pixel_x = -6; + pixel_y = 25 + }, +/obj/effect/turf_decal/industrial/caution, +/obj/machinery/button/shieldwallgen{ + id = "colossus_cargo_port"; + pixel_x = 5; + pixel_y = 25 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"Qa" = ( +/obj/structure/table/reinforced, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-8" }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/item/storage/lockbox/medal/sec{ + pixel_y = 5 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Qm" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "Qu" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Starboard Engines" @@ -3695,27 +3687,14 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"Qv" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central7, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 +"QC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) +/obj/effect/turf_decal/corner_techfloor_gray, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/port) "QI" = ( /obj/machinery/door/airlock/external, /obj/structure/cable{ @@ -3750,6 +3729,19 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"QW" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "Rb" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ name = "exhaust injector" @@ -3757,14 +3749,14 @@ /turf/open/floor/engine/hull, /area/ship/engineering) "Rm" = ( -/obj/docking_port/mobile{ - dir = 2; - launch_status = 0; - port_direction = 8; - preferred_direction = 4 +/obj/docking_port/stationary{ + dwidth = 3; + width = 7; + height = 15; + dir = 2 }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/crew/office) +/turf/template_noop, +/area/template_noop) "Rq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3876,22 +3868,28 @@ }, /turf/open/floor/plating, /area/ship/crew/cryo) -"RP" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" +"RS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) +"RU" = ( +/obj/machinery/suit_storage_unit/inherit{ + req_access_txt = "1" }, -/obj/structure/closet/crate{ - icon_state = "radiation"; - name = "fuel crate" +/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 8 }, -/obj/item/stack/sheet/mineral/plasma/twenty, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/item/tank/jetpack/oxygen, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) "RW" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -3951,20 +3949,14 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"Sr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 +"Ss" = ( +/obj/effect/decal/cleanable/oil/streak, +/obj/effect/landmark/start/assistant, +/obj/structure/sign/warning/incident{ + pixel_x = 32 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/fore) +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "Su" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 8 @@ -3983,53 +3975,100 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"Tk" = ( -/obj/effect/turf_decal/industrial/traffic{ - dir = 4 +"SB" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/structure/rack, +/obj/machinery/airalarm/directional/east, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/storage/toolbox/ammo/c10mm{ + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"Tr" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 +/obj/item/storage/toolbox/ammo/c9mm{ + pixel_y = 2 }, +/obj/item/storage/toolbox/ammo/shotgun{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) +"SC" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/door/poddoor{ + dir = 4; + id = "colossus_windows"; + name = "Window Shield" }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/patterned/cargo_one, +/turf/open/floor/plating, +/area/ship/bridge) +"SR" = ( +/obj/structure/rack, +/obj/item/target/syndicate{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/target/syndicate{ + pixel_y = 5 + }, +/obj/item/target/alien{ + pixel_x = 5 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/floordetail/edgedrain, +/turf/open/floor/plasteel/patterned, /area/ship/cargo) -"Tw" = ( -/obj/structure/cable{ +"Th" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable/yellow{ icon_state = "0-8" }, -/obj/machinery/power/smes/shuttle/precharged{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) +"Tk" = ( +/obj/effect/turf_decal/industrial/traffic{ dir = 4 }, -/obj/structure/window/reinforced{ +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Tr" = ( +/obj/effect/turf_decal/box/corners{ dir = 8 }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/poddoor{ - id = "colossus_thrusters" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "TB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4046,29 +4085,6 @@ }, /turf/open/floor/engine/hull, /area/ship/engineering) -"TI" = ( -/obj/effect/turf_decal/box/corners, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central7{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) -"TR" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "TX" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4078,30 +4094,26 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) +"Ui" = ( +/obj/structure/railing, +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) "Ur" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/firedoor, /turf/open/floor/plating, /area/ship/crew/office) -"UE" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor{ - id = "colossus_windows"; - name = "Window Shield" - }, -/turf/open/floor/plating, -/area/ship/bridge) -"UI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/oil/streak, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "UN" = ( /obj/machinery/door/airlock/public/glass{ name = "Office" @@ -4125,8 +4137,19 @@ /obj/effect/turf_decal/siding/thinplating{ dir = 9 }, -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/fore) +"Vd" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/toilet) "Ve" = ( /obj/structure/weightmachine/weightlifter, /turf/open/floor/plasteel/patterned/cargo_one, @@ -4140,24 +4163,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/cryo) -"VD" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" - }, -/obj/machinery/door/poddoor{ - id = "colossus_thrusters" - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "VJ" = ( /obj/structure/chair{ dir = 1 @@ -4169,36 +4174,34 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"VK" = ( -/obj/machinery/light, -/obj/machinery/button/door{ - dir = 1; - id = "colossus_starboard"; - name = "Starboard Cargo Door Control"; - pixel_x = 6; - pixel_y = -25 +"VR" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/turf_decal/industrial/caution{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/button/shieldwallgen{ - dir = 1; - id = "colossus_cargo_starboard"; - pixel_x = -5; - pixel_y = -25 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) -"VU" = ( -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 +/obj/machinery/light/directional/north, +/obj/machinery/turretid{ + pixel_y = 32; + req_access = null; + req_access_txt = "58"; + lethal = 1 }, -/obj/machinery/light{ - dir = 4 +/obj/structure/table/reinforced, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/item/lighter{ + pixel_y = 5 + }, +/obj/item/toy/figure/vanguard{ + pixel_x = -10; + pixel_y = 5 }, /turf/open/floor/plasteel/dark, -/area/ship/crew/office) +/area/ship/bridge) "VY" = ( /obj/structure/toilet{ dir = 4 @@ -4207,201 +4210,82 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/plasteel/patterned/brushed, /area/ship/crew/toilet) -"Wb" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/fore) -"Wc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/rack, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/item/storage/toolbox/ammo/c10mm{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/storage/toolbox/ammo/c9mm{ - pixel_y = 2 - }, -/obj/item/storage/toolbox/ammo/shotgun{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) -"Wm" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"Wn" = ( -/obj/structure/sign/number/four{ - dir = 1 - }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/crew/office) -"Wp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/ship/crew) -"Wr" = ( -/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/suit_storage_unit/inherit{ - req_access_txt = "1" - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central7{ - dir = 4 - }, -/obj/item/tank/jetpack/oxygen, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) -"Wu" = ( -/obj/effect/turf_decal/industrial/traffic{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"WD" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/fore) -"WZ" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line{ +"Wb" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/warning{ dir = 1 }, /obj/effect/turf_decal/siding/thinplating{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "1-2" }, -/obj/effect/turf_decal/steeldecal/steel_decals_central7, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) -"Xa" = ( -/obj/structure/rack, -/obj/item/ammo_box/magazine/m12g/small{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/ammo_box/magazine/m12g/small{ - pixel_y = 5 +"Wl" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/item/ammo_box/magazine/m12g/small{ - pixel_x = -5; - pixel_y = 5 +/obj/effect/turf_decal/steeldecal/steel_decals_central7{ + dir = 4 }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"Wn" = ( +/obj/structure/sign/number/four{ + dir = 1 }, -/obj/structure/sign/poster/contraband/twelve_gauge{ - pixel_y = -32 +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/crew/office) +"Wp" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/gun/ballistic/shotgun/bulldog/inteq{ - pixel_y = -2; - spawnwithmagazine = 0 +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) -"Xn" = ( -/obj/machinery/rnd/production/protolathe/department/security, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) -"Xo" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/carpet/black, +/area/ship/crew) +"Wu" = ( +/obj/effect/turf_decal/industrial/traffic{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"WG" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/status_display/shuttle{ + pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer5{ - dir = 4 +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/storage/firstaid/regular{ + pixel_x = 5 }, -/obj/machinery/door/poddoor{ - id = "colossus_windows"; - name = "Window Shield" +/obj/item/storage/firstaid/medical{ + pixel_x = -5 }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/structure/table/rolling, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "Xq" = ( /obj/effect/turf_decal/trimline/opaque/yellow/warning{ dir = 1 @@ -4444,19 +4328,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/cryo) -"Xx" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/fore) "XB" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4485,6 +4356,19 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"XC" = ( +/obj/machinery/rnd/production/protolathe/department/security, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/oil/streak, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) "XF" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -4505,6 +4389,23 @@ "XJ" = ( /turf/template_noop, /area/template_noop) +"XK" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"XS" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/fore) "Yq" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4518,6 +4419,17 @@ "Yr" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/fore) +"Yt" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/port) "Yv" = ( /obj/structure/sign/number/eight, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -4526,67 +4438,19 @@ /obj/machinery/atmospherics/pipe/layer_manifold/visible, /turf/open/floor/engine/hull, /area/ship/engineering) -"YE" = ( -/obj/structure/table, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/flashlight/lamp/green, -/obj/effect/turf_decal/steeldecal/steel_decals_central7, -/turf/open/floor/carpet/black, -/area/ship/crew) -"YW" = ( +"Zb" = ( /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering" - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"YY" = ( -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 + icon_state = "2-8" }, -/obj/machinery/light{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/newscaster/security_unit{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) -"YZ" = ( -/obj/effect/turf_decal/box/corners{ +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/corner_techfloor_gray{ dir = 8 }, -/obj/machinery/status_display/shuttle{ - pixel_x = -32 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) +/turf/open/floor/plating, +/area/ship/maintenance/port) "Zc" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 4 @@ -4631,7 +4495,7 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /obj/structure/closet/firecloset/wall{ dir = 4; - pixel_x = -32 + pixel_x = -28 }, /turf/open/floor/plating, /area/ship/engineering) @@ -4665,6 +4529,22 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden/layer1, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"ZJ" = ( +/obj/machinery/button/door{ + id = "colossus_port"; + name = "Port Cargo Door Control"; + pixel_x = 6; + pixel_y = 25 + }, +/obj/effect/turf_decal/industrial/caution, +/obj/structure/ore_box, +/obj/machinery/button/shieldwallgen{ + id = "colossus_cargo_port"; + pixel_x = -5; + pixel_y = 25 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "ZQ" = ( /obj/structure/rack, /obj/item/storage/box/emptysandbags{ @@ -4680,24 +4560,11 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"ZT" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/port_gen/pacman, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) (1,1,1) = {" XJ -bo +XJ +ig hQ oO hQ @@ -4718,10 +4585,11 @@ XJ "} (2,1,1) = {" XJ +XJ bo -hX -pq -cc +sF +Ls +sj bo XJ XJ @@ -4731,14 +4599,15 @@ XJ XJ XJ rl -Tw -Eo -VD +re +bS +tp rl XJ "} (3,1,1) = {" XJ +XJ bo iG pv @@ -4752,56 +4621,59 @@ Yx TF II rl -CB -TR -fo +bn +HG +uE rl XJ "} (4,1,1) = {" XJ +XJ bo -iN +Zb pA -uF +Br bo JD JD JD -Xo +dq JD JD JD rl -Dy +ie xx -mP +tK rl XJ "} (5,1,1) = {" XJ +XJ bo -ja +QC pF -uH +Pp bo -Kg +JO Ru Zv zZ -sN +qK tR -aa +bq rl -ps +Ho ei -hr +BP rl XJ "} (6,1,1) = {" XJ +XJ bo jn pV @@ -4823,27 +4695,29 @@ XJ "} (7,1,1) = {" XJ +XJ bo jo -qz -vx +Fw +Pb bo -Kq -RP -ZT +Th +iY +DD fQ -EG +eg GL -ab +gl rl -us -PP -aG +uN +Pl +hc rl XJ "} (8,1,1) = {" XJ +XJ Nb bo bo @@ -4852,7 +4726,7 @@ bo JD JD JD -YW +MD JD JD JD @@ -4867,17 +4741,18 @@ XJ XJ XJ XJ +XJ rh vH -Ba +sb KM -CO -nV +BR +Fl kV -uB +JT ah Ve -YZ +hZ vH rh XJ @@ -4889,8 +4764,9 @@ XJ XJ XJ XJ +XJ vH -BD +ZJ Lm RY rd @@ -4898,7 +4774,7 @@ tg oQ tw dC -VK +Ku vH XJ XJ @@ -4910,6 +4786,7 @@ XJ XJ XJ XJ +XJ on BK Lx @@ -4931,6 +4808,7 @@ XJ XJ XJ XJ +XJ vZ Wu BQ @@ -4952,6 +4830,7 @@ XJ XJ XJ XJ +XJ vZ Cu qR @@ -4963,7 +4842,7 @@ Zc MU Ks pX -XJ +Rm XJ XJ XJ @@ -4973,6 +4852,7 @@ XJ XJ XJ XJ +XJ rb Cy Lz @@ -4994,8 +4874,9 @@ XJ XJ XJ XJ +XJ vH -CJ +PY Mx TB la @@ -5003,7 +4884,7 @@ tg qY lM GR -NV +xV vH XJ XJ @@ -5015,16 +4896,17 @@ XJ XJ XJ XJ +XJ vH -CU -UI -TI -IZ +dU +Ss +Wl +SR tg wA -lX +lg lr -Aw +WG vH XJ XJ @@ -5032,6 +4914,7 @@ XJ XJ "} (17,1,1) = {" +XJ bd ZB ZB @@ -5041,7 +4924,7 @@ ZB ZB ZB lv -pw +uw lv Dq Dq @@ -5053,27 +4936,29 @@ Dq cj "} (18,1,1) = {" +XJ ZB cM -Cx -cs -eZ -wE +Mk +jx +AP +wH NP ZB Ce gJ -lE +oK Dq fT -jy -bl +RU +Eu hf al -Xa +Dj Dq "} (19,1,1) = {" +XJ lU dS jw @@ -5095,6 +4980,7 @@ nE Dq "} (20,1,1) = {" +XJ Gl ej jw @@ -5116,6 +5002,7 @@ nQ Yv "} (21,1,1) = {" +XJ Wn eK jw @@ -5128,15 +5015,16 @@ tY ar CP Dq -sT -Wr -di -Xn -Wc +xY +gs +nh +XC +SB Ci pa "} (22,1,1) = {" +XJ Ow eT jw @@ -5145,9 +5033,9 @@ wm EC Oe ZB -gZ +QW EQ -lF +XK Dq Dq Dq @@ -5158,6 +5046,7 @@ Dq PV "} (23,1,1) = {" +XJ Oo eX jX @@ -5168,45 +5057,47 @@ OV UN Lp dH -oE +NL IS uq VY kI -aD -xu +GC +aN eH JH "} (24,1,1) = {" +XJ ZB fj jw tt jw Fq -OW +GV ZB -xT +xr xd VJ IS -ML -LE +RS +ui kI -gm +zH Je Vr RN "} (25,1,1) = {" +XJ vv gg lA tx xD FQ -Qi +fO ZB Sp Rq @@ -5215,33 +5106,35 @@ vc cT iH kI -Lr +zT Rs Xu RN "} (26,1,1) = {" -Rm -gy -YY -pD +XJ +ZB +LU +iw +hU xF -VU -Qv +Mg +HO ZB -nb +Qm Oc -Wm +Bj IS -kq -qw +Vd +tT kI -EZ -oa +Ui +nC wS kI "} (27,1,1) = {" +XJ Nb hD hD @@ -5257,24 +5150,25 @@ fp IS IS kI -qW +GK kI kI wr "} (28,1,1) = {" -XJ +Hd +cv hO nm -tF -yn +aZ +Yt FW QI Wb bz xB ju -MJ +XS zF AL wg @@ -5285,19 +5179,20 @@ XJ "} (29,1,1) = {" XJ +XJ hD hD hD -zg +mu Hc hD -WD +pO DE jT pP -eJ +iT zF -YE +AF bO Wp qr @@ -5306,19 +5201,20 @@ XJ "} (30,1,1) = {" XJ +XJ tX -qM +KG hD hD hD hD -WZ +KF iq BY gC lV zF -mT +zd GW zm er @@ -5327,11 +5223,12 @@ XJ "} (31,1,1) = {" XJ +XJ HD ny tG -zE -Hr +gr +Gy QL Xq mY @@ -5342,23 +5239,24 @@ bs eD RC rf -Fr +im zF XJ "} (32,1,1) = {" XJ +XJ tX -nZ +VR tI Ae -HB +Qa tX -Xx +Hh fi BA Fa -Sr +sz zF ho oI @@ -5369,19 +5267,20 @@ XJ "} (33,1,1) = {" XJ +XJ HD sI ue AB -HM +iX tX Yr -qq -qq -qq +fN +fN +fN Yr zF -mt +xv vT TX Jl @@ -5390,6 +5289,7 @@ XJ "} (34,1,1) = {" XJ +XJ tX oe uy @@ -5405,16 +5305,17 @@ ot zF Ga DX -sm +NA zF XJ "} (35,1,1) = {" XJ +XJ Lj -UE -UE -UE +SC +SC +SC wr XJ XJ diff --git a/_maps/shuttles/shiptest/inteq_hound.dmm b/_maps/shuttles/shiptest/inteq_hound.dmm index 99f60c039207..aefb6dd69571 100644 --- a/_maps/shuttles/shiptest/inteq_hound.dmm +++ b/_maps/shuttles/shiptest/inteq_hound.dmm @@ -21,6 +21,26 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"ay" = ( +/obj/structure/closet/secure_closet/freezer{ + anchored = 1; + locked = 0; + name = "fridge" + }, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/item/storage/cans/sixbeer, +/obj/item/reagent_containers/food/snacks/icecreamsandwich, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "aX" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor{ @@ -34,8 +54,26 @@ }, /obj/structure/curtain, /obj/structure/window/reinforced/tinted/frosted, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/patterned/brushed, /area/ship/crew/toilet) +"bZ" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/oil/streak, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "cK" = ( /obj/effect/turf_decal/industrial/warning, /obj/machinery/power/shieldwallgen/atmos{ @@ -55,6 +93,29 @@ "cX" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) +"dg" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/curtain, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/patterned/brushed, +/area/ship/crew/toilet) +"dm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/ship/cargo) "dp" = ( /obj/structure/railing/corner{ dir = 8 @@ -75,40 +136,9 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) -"dz" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "dB" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/maintenance/starboard) -"dJ" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/dorm) "dV" = ( /turf/open/floor/engine/hull, /area/ship/maintenance/port) @@ -131,22 +161,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"ei" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/storage/eva) "em" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/cargo) @@ -165,6 +179,25 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"eW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 7 + }, +/turf/open/floor/plasteel/tech, +/area/ship/storage/eva) "fb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -179,22 +212,29 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"fo" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 +"fk" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/effect/turf_decal/corner/opaque/brown{ +/obj/structure/railing/corner{ dir = 8 }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/ship/crew) +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "fq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/navbeacon/wayfinding{ + location = "bridge" + }, /obj/machinery/holopad/emergency/command, -/turf/open/floor/plasteel/dark, +/turf/open/floor/carpet/orange, /area/ship/bridge) "fI" = ( /obj/effect/turf_decal/trimline/opaque/yellow/warning{ @@ -230,6 +270,16 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) +"fX" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/port) "go" = ( /obj/machinery/power/smes/engineering{ charge = 1e+006 @@ -237,29 +287,23 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"gz" = ( -/obj/structure/bed/dogbed{ - anchored = 1; - desc = "A comfy-looking dog bed. It's at least three times the size of its owner."; - name = "Sentinel's bed" - }, -/mob/living/simple_animal/pet/dog/pug{ - desc = "Steadfast defender of the realm, destroyer of countless donuts, and seatwarmer for the Vanguard."; - name = "\proper Sentinel" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "gO" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/storage/eva) +"gR" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/dorm) "gU" = ( /obj/structure/railing{ dir = 4 @@ -282,24 +326,15 @@ "hi" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew) -"hz" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/structure/chair, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/hacking_guide{ - pixel_x = 32 +"hJ" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15; + dir = 8 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/crew) +/turf/template_noop, +/area/template_noop) "hK" = ( /obj/machinery/suit_storage_unit/inherit{ req_access_txt = "1" @@ -335,41 +370,6 @@ "ih" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/port) -"is" = ( -/obj/structure/closet/secure_closet/wall{ - dir = 4; - icon_door = "solgov_wall"; - icon_state = "solgov_wall"; - name = "vanguard's locker"; - pixel_x = -28; - req_access_txt = "58" - }, -/obj/item/clothing/glasses/hud/security/sunglasses/inteq, -/obj/item/clothing/mask/gas/sechailer/inteq, -/obj/item/clothing/gloves/tackler/combat/insulated, -/obj/item/clothing/shoes/combat, -/obj/item/storage/belt/military/assault, -/obj/item/storage/backpack/messenger/inteq, -/obj/item/megaphone/command, -/obj/item/clothing/under/syndicate/inteq/skirt, -/obj/item/clothing/under/syndicate/inteq, -/obj/item/clothing/suit/armor/hos/inteq, -/obj/item/clothing/head/beret/sec/hos/inteq, -/obj/item/radio/headset/inteq/alt/captain, -/obj/item/areaeditor/shuttle, -/obj/item/shield/riot/tele, -/turf/open/floor/carpet/orange, -/area/ship/bridge) -"iD" = ( -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer2{ - dir = 8; - name = "Air to Distro" - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "jb" = ( /obj/structure/table, /obj/effect/turf_decal/corner/opaque/yellow, @@ -383,43 +383,22 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew) -"jq" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light/small{ - dir = 1 +"jG" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/storage/eva) -"jE" = ( -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/railing/corner, -/obj/structure/catwalk/over/plated_catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/stairs{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, /area/ship/cargo) -"jI" = ( -/obj/structure/bed, -/obj/structure/curtain/bounty, -/obj/item/bedsheet/brown, -/obj/structure/sign/poster/contraband/borg_fancy_2{ - pixel_y = 32 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) "jK" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -462,46 +441,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ship/cargo) -"kl" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/catwalk/over/plated_catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) "km" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) -"kN" = ( -/obj/machinery/door/airlock/grunge{ - name = "EVA Storage" - }, -/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 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"kr" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/storage/eva) +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "kU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/effect/turf_decal/corner/opaque/brown{ @@ -512,22 +463,32 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew) -"lm" = ( +"lZ" = ( /obj/machinery/suit_storage_unit/inherit{ req_access_txt = "1" }, /obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/airalarm/directional/west, +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_y = 32 }, /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 8 }, +/obj/effect/decal/cleanable/dirt/dust, /obj/item/tank/jetpack/oxygen, /turf/open/floor/plasteel/tech/grid, /area/ship/storage/eva) -"mx" = ( +"mw" = ( +/obj/structure/bed, +/obj/structure/curtain/bounty, +/obj/item/bedsheet/hos{ + name = "vanguard's bedsheet" + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet/orange, +/area/ship/bridge) +"mI" = ( /obj/structure/cable{ icon_state = "0-2" }, @@ -535,25 +496,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"mR" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ship/maintenance/port) "na" = ( @@ -578,6 +521,19 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) +"ne" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew) "no" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -591,43 +547,64 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/storage/eva) -"ny" = ( -/obj/structure/table, -/obj/machinery/computer/cryopod{ - dir = 8; - pixel_x = 25 +"nq" = ( +/obj/machinery/suit_storage_unit/inherit{ + req_access_txt = "1" }, -/obj/item/radio{ - pixel_y = 7 +/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 8 }, -/obj/item/radio{ - pixel_x = 5; +/obj/item/tank/jetpack/oxygen, +/turf/open/floor/plasteel/tech/grid, +/area/ship/storage/eva) +"nD" = ( +/obj/item/ammo_box/magazine/co9mm{ + pixel_x = 5 + }, +/obj/item/ammo_box/magazine/co9mm, +/obj/item/ammo_box/magazine/co9mm{ + pixel_x = -5 + }, +/obj/item/ammo_box/magazine/co9mm{ + pixel_x = 5 + }, +/obj/item/ammo_box/magazine/co9mm, +/obj/item/ammo_box/magazine/co9mm{ + pixel_x = -5 + }, +/obj/item/gun/ballistic/automatic/pistol/commander/inteq{ pixel_y = 5 }, -/obj/item/radio{ - pixel_y = 3 +/obj/item/gun/ballistic/automatic/pistol/commander/inteq, +/obj/item/gun/ballistic/automatic/pistol/commander/inteq{ + pixel_y = -5 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/obj/item/ammo_box/magazine/ak47{ + pixel_x = -7 }, -/obj/effect/turf_decal/techfloor{ - dir = 4 +/obj/item/ammo_box/magazine/ak47{ + pixel_x = 7 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/dorm) -"nT" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/item/gun/ballistic/automatic/assualt/ak47/inteq{ + pixel_x = -5 }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) +/obj/structure/closet/secure_closet/wall{ + dir = 1; + icon_state = "sec_wall"; + name = "weapons lockup"; + pixel_y = -28; + req_one_access_txt = "58" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/carpet/orange, +/area/ship/bridge) "of" = ( /obj/machinery/door/airlock/command{ name = "Bridge"; @@ -644,21 +621,21 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"or" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/corner_techfloor_gray{ +"oq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/port) "os" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -725,27 +702,6 @@ /obj/item/clothing/under/syndicate/inteq/skirt, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) -"pT" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cargo Bay" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "pU" = ( /obj/structure/railing{ dir = 8 @@ -765,6 +721,16 @@ }, /turf/open/floor/plating, /area/ship/cargo) +"qG" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew) "qR" = ( /obj/structure/chair{ dir = 4 @@ -781,6 +747,15 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) +"qU" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "qY" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -790,39 +765,32 @@ }, /turf/open/floor/plating, /area/ship/cargo) -"rj" = ( -/obj/structure/closet/secure_closet/freezer{ - anchored = 1; - locked = 0; - name = "fridge" - }, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/item/storage/cans/sixbeer, -/obj/item/reagent_containers/food/snacks/icecreamsandwich, -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central4{ +"rh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"rw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/effect/turf_decal/corner_techfloor_gray, +/obj/effect/turf_decal/number/zero, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"rF" = ( +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "2-4" }, -/turf/open/floor/carpet/orange, -/area/ship/bridge) +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "rG" = ( /obj/effect/turf_decal/trimline/opaque/yellow/warning, /obj/effect/turf_decal/siding/thinplating/corner, @@ -862,6 +830,19 @@ }, /turf/open/floor/plasteel/tech, /area/ship/storage/eva) +"sw" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "sx" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/atmospherics/components/unary/tank/air{ @@ -881,49 +862,36 @@ }, /turf/open/floor/plasteel/tech, /area/ship/storage/eva) -"sN" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/layer_manifold{ +"tg" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "hound_windows"; dir = 4 }, -/obj/docking_port/mobile{ - dir = 4; - launch_status = 0; - port_direction = 2; - preferred_direction = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/storage/eva) -"tg" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor{ - id = "hound_windows" - }, /turf/open/floor/plating, /area/ship/maintenance/port) +"tq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/patterned/brushed, +/area/ship/crew/toilet) "tC" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) "tO" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs{ - dir = 4 +/obj/docking_port/mobile{ + dir = 2; + launch_status = 0; + port_direction = 8; + preferred_direction = 4 }, -/area/ship/cargo) +/turf/closed/wall/mineral/plastitanium, +/area/ship/maintenance/port) "tR" = ( /obj/structure/table, /obj/machinery/microwave, @@ -939,6 +907,23 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew) +"tT" = ( +/obj/structure/bed/dogbed{ + anchored = 1; + desc = "A comfy-looking dog bed. It's at least three times the size of its owner."; + name = "Sentinel's bed" + }, +/mob/living/simple_animal/pet/dog/pug{ + desc = "Steadfast defender of the realm, destroyer of countless donuts, and seatwarmer for the Vanguard."; + name = "\proper Sentinel" + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "uj" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 1 @@ -966,6 +951,22 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) +"uD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/storage/eva) "uG" = ( /obj/machinery/navbeacon/wayfinding{ codes_txt = "patrol;next_patrol=eva"; @@ -1037,6 +1038,28 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) +"vI" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4; + name = "EVA Storage" + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/storage/eva) "vW" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 1 @@ -1076,6 +1099,16 @@ /obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/ship/cargo) +"wu" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/advanced_airlock_controller{ + pixel_x = 25; + req_access = null + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech/grid, +/area/ship/storage/eva) "wX" = ( /obj/effect/turf_decal/industrial/traffic, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1093,21 +1126,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"xb" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/item/trash/sosjerky, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "xj" = ( /obj/effect/turf_decal/industrial/traffic, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1130,27 +1148,20 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) -"yH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +"yE" = ( +/obj/structure/railing{ dir = 4 }, +/obj/structure/railing/corner, +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 25; - pixel_y = 7 - }, -/turf/open/floor/plasteel/tech, -/area/ship/storage/eva) +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "yK" = ( /obj/effect/turf_decal/arrows{ dir = 8 @@ -1158,22 +1169,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"zg" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk/over/plated_catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) "zn" = ( /obj/structure/sign/number/eight, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -1247,101 +1242,75 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) -"Bl" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ +"BA" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/dorm) -"Ck" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/button/door{ + id = "hound_cargo_port"; + name = "Cargo Bay Door Control"; + pixel_x = -5; + pixel_y = 25 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/port) -"Cs" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/structure/curtain/bounty, -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) -"CN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - name = "exhaust injector" +/obj/machinery/button/shieldwallgen{ + id = "hound_cargo_port"; + pixel_x = 5; + pixel_y = 25 }, -/turf/open/floor/engine/hull, -/area/ship/maintenance/starboard) -"Dh" = ( -/obj/machinery/power/terminal{ +/turf/open/floor/plasteel/stairs{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/oil/streak, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/structure/chair/plastic{ - dir = 4 +/area/ship/cargo) +"BJ" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "hound_windows" }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, -/area/ship/maintenance/port) -"DB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/navbeacon/wayfinding{ - location = "bridge" +/area/ship/crew) +"BL" = ( +/obj/machinery/light/directional/south, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -7; + pixel_y = -25 }, /turf/open/floor/carpet/orange, /area/ship/bridge) -"DL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +"BQ" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/item/radio/intercom/wideband/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/steeldecal/steel_decals_central4{ + dir = 1 }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"CN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + name = "exhaust injector" }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, +/turf/open/floor/engine/hull, /area/ship/maintenance/starboard) +"DB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/carpet/orange, +/area/ship/bridge) "DU" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 8 @@ -1365,55 +1334,44 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) -"EJ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/storage/eva) -"EM" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4; - name = "Helm" +"EE" = ( +/obj/structure/table, +/obj/machinery/computer/cryopod/directional/east, +/obj/item/radio{ + pixel_y = 7 }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Fm" = ( -/obj/structure/bed, -/obj/structure/curtain/bounty, -/obj/item/bedsheet/hos{ - name = "vanguard's bedsheet" +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/carpet/orange, -/area/ship/bridge) -"Fx" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 +/obj/item/radio{ + pixel_y = 3 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"FJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/techfloor{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/plasteel/stairs{ - dir = 4 +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/dorm) +"EJ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/firedoor/window, +/turf/open/floor/plating, +/area/ship/storage/eva) +"EM" = ( +/obj/effect/landmark/start/head_of_security, +/obj/structure/chair/comfy/shuttle{ + dir = 4; + name = "Helm" }, -/area/ship/cargo) +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "GB" = ( /obj/structure/sign/number/eight{ dir = 1 @@ -1425,6 +1383,33 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"GG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 1; + id = "hound_cargo_starboard"; + name = "Cargo Bay Door Control"; + pixel_x = -5; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/shieldwallgen{ + dir = 1; + id = "hound_cargo_starboard"; + pixel_x = 5; + pixel_y = -25 + }, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/ship/cargo) "Hd" = ( /obj/effect/turf_decal/floordetail/edgedrain{ dir = 4 @@ -1458,6 +1443,41 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) +"HO" = ( +/obj/machinery/door/airlock/grunge{ + dir = 4; + name = "Cargo Bay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"HS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "HV" = ( /obj/machinery/button/door{ id = "hound_windows"; @@ -1475,17 +1495,6 @@ /obj/machinery/computer/cargo/express, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"HW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/corner_techfloor_gray, -/turf/open/floor/plating, -/area/ship/maintenance/port) "HZ" = ( /obj/effect/turf_decal/siding/thinplating/corner{ dir = 8 @@ -1509,7 +1518,8 @@ dir = 4 }, /obj/machinery/door/poddoor{ - id = "hound_windows" + id = "hound_windows"; + dir = 4 }, /obj/structure/window/reinforced{ dir = 8 @@ -1523,6 +1533,28 @@ /turf/open/floor/plating, /area/ship/maintenance/starboard) "Ix" = ( +/obj/structure/closet/secure_closet/wall{ + dir = 4; + icon_door = "solgov_wall"; + icon_state = "solgov_wall"; + name = "vanguard's locker"; + pixel_x = -28; + req_access_txt = "58" + }, +/obj/item/clothing/glasses/hud/security/sunglasses/inteq, +/obj/item/clothing/mask/gas/sechailer/inteq, +/obj/item/clothing/gloves/tackler/combat/insulated, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military/assault, +/obj/item/storage/backpack/messenger/inteq, +/obj/item/megaphone/command, +/obj/item/clothing/under/syndicate/inteq/skirt, +/obj/item/clothing/under/syndicate/inteq, +/obj/item/clothing/suit/armor/hos/inteq, +/obj/item/clothing/head/beret/sec/hos/inteq, +/obj/item/radio/headset/inteq/alt/captain, +/obj/item/areaeditor/shuttle, +/obj/item/shield/riot/tele, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/carpet/orange, /area/ship/bridge) @@ -1530,6 +1562,28 @@ /obj/structure/sign/number/one, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew) +"IZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/structure/curtain/bounty, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) +"Jb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "Jc" = ( /obj/machinery/door/airlock{ name = "Dormitory" @@ -1545,12 +1599,26 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) +"Ju" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/port) "Jv" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, /obj/machinery/door/poddoor{ - id = "hound_windows" + id = "hound_windows"; + dir = 4 }, /obj/structure/window/reinforced{ dir = 8 @@ -1563,12 +1631,26 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) +"JJ" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/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/ship/storage/eva) "JX" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, /obj/machinery/door/poddoor{ - id = "hound_windows" + id = "hound_windows"; + dir = 4 }, /obj/structure/window/reinforced{ dir = 8 @@ -1585,67 +1667,23 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew) "Ki" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/item/ammo_box/magazine/co9mm{ - pixel_x = 5 - }, -/obj/item/ammo_box/magazine/co9mm, -/obj/item/ammo_box/magazine/co9mm{ - pixel_x = -5 - }, -/obj/item/ammo_box/magazine/co9mm{ - pixel_x = 5 - }, -/obj/item/ammo_box/magazine/co9mm, -/obj/item/ammo_box/magazine/co9mm{ - pixel_x = -5 - }, -/obj/item/gun/ballistic/automatic/pistol/commander/inteq{ - pixel_y = 5 - }, -/obj/item/gun/ballistic/automatic/pistol/commander/inteq, -/obj/item/gun/ballistic/automatic/pistol/commander/inteq{ - pixel_y = -5 - }, -/obj/item/ammo_box/magazine/ak47{ - pixel_x = -7 - }, -/obj/item/ammo_box/magazine/ak47{ - pixel_x = 7 - }, -/obj/item/gun/ballistic/automatic/assualt/ak47/inteq{ - pixel_x = -5 - }, -/obj/structure/closet/secure_closet/wall{ - dir = 1; - icon_state = "sec_wall"; - name = "weapons lockup"; - pixel_y = -28; - req_one_access_txt = "58" - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/orange, -/area/ship/bridge) -"KA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" + dir = 6 }, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "0-2" }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/carpet/orange, +/area/ship/bridge) +"Ky" = ( +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ship/storage/eva) @@ -1653,7 +1691,6 @@ /obj/machinery/computer/helm{ dir = 8 }, -/obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/borderfloor{ dir = 4 }, @@ -1662,26 +1699,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Lg" = ( -/obj/structure/table/reinforced, -/obj/item/gps{ - pixel_x = 12 - }, -/obj/item/paper_bin, -/obj/item/folder/syndicate{ - desc = "A slick black folder stamped 'Property of Inteq Risk Management Group.'"; - name = "folder" - }, -/obj/item/pen/fountain, -/obj/item/stamp/hos{ - name = "vanguard's rubber stamp" - }, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/orange, -/area/ship/bridge) "Ln" = ( /obj/effect/turf_decal/floordetail/edgedrain{ dir = 8 @@ -1692,29 +1709,17 @@ "Ls" = ( /obj/structure/bed, /obj/structure/curtain/bounty, -/obj/item/bedsheet/brown, -/obj/structure/sign/poster/contraband/punch_shit{ - pixel_x = -32 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 7; - pixel_y = -25 - }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) -"LR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +/obj/item/bedsheet/brown, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_x = -32 }, -/obj/machinery/light, /obj/machinery/light_switch{ dir = 1; - pixel_x = -7; + pixel_x = 7; pixel_y = -25 }, -/turf/open/floor/carpet/orange, -/area/ship/bridge) +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) "LW" = ( /obj/structure/railing, /obj/effect/turf_decal/floordetail/edgedrain{ @@ -1724,21 +1729,6 @@ /obj/item/storage/toolbox/ammo/c9mm, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"Ma" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/crew) "Mj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/carpet/black, @@ -1794,32 +1784,14 @@ /obj/structure/sign/warning/vacuum/external, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/storage/eva) -"MY" = ( -/obj/machinery/suit_storage_unit/inherit{ - req_access_txt = "1" - }, -/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/tank/jetpack/oxygen, -/turf/open/floor/plasteel/tech/grid, -/area/ship/storage/eva) "Nd" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, /obj/machinery/door/poddoor{ - id = "hound_windows" + id = "hound_windows"; + dir = 4 }, /turf/open/floor/plating, /area/ship/maintenance/starboard) @@ -1853,21 +1825,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"Nk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "NI" = ( /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 @@ -1907,35 +1864,6 @@ /obj/structure/sign/number/four, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/toilet) -"Ol" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "hound_cargo_port"; - name = "Cargo Bay Door Control"; - pixel_x = -5; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/shieldwallgen{ - id = "hound_cargo_port"; - pixel_x = 5; - pixel_y = 25 - }, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/ship/cargo) "Oq" = ( /obj/effect/landmark/observer_start, /turf/open/floor/plasteel/patterned/cargo_one, @@ -1943,18 +1871,6 @@ "Or" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) -"Ou" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "OL" = ( /obj/structure/catwalk/over/plated_catwalk, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1983,10 +1899,35 @@ dir = 4 }, /obj/machinery/door/poddoor{ - id = "hound_windows" + id = "hound_windows"; + dir = 4 }, /turf/open/floor/plating, /area/ship/storage/eva) +"Pc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"Pf" = ( +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ + dir = 8; + name = "Air to Distro" + }, +/obj/effect/turf_decal/number/three, +/turf/open/floor/plating, +/area/ship/maintenance/port) "Pk" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -2007,24 +1948,55 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"PU" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor{ - id = "hound_windows" +"Pz" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 }, -/turf/open/floor/plating, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/item/trash/sosjerky, +/turf/open/floor/plasteel/dark, /area/ship/crew) -"Qt" = ( -/obj/structure/toilet{ +"PO" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"Qn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/obj/structure/curtain, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plasteel/patterned/brushed, -/area/ship/crew/toilet) +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "QU" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -2050,7 +2022,8 @@ dir = 4 }, /obj/machinery/door/poddoor{ - id = "hound_windows" + id = "hound_windows"; + dir = 4 }, /obj/structure/window/reinforced{ dir = 8 @@ -2065,75 +2038,34 @@ /area/ship/maintenance/port) "RM" = ( /obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine/longrange, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Sg" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 1 - }, -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_x = -10; - pixel_y = -22 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 10; - pixel_y = -22 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/steeldecal/steel_decals_central4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, +/obj/machinery/photocopier/faxmachine/longrange, +/turf/open/floor/carpet/orange, /area/ship/bridge) -"SJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"Sh" = ( +/obj/structure/railing{ dir = 4 }, -/obj/machinery/button/door{ - dir = 1; - id = "hound_cargo_starboard"; - name = "Cargo Bay Door Control"; - pixel_x = -5; - pixel_y = -25 - }, +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/button/shieldwallgen{ - dir = 1; - id = "hound_cargo_starboard"; - pixel_x = 5; - pixel_y = -25 - }, -/turf/open/floor/plasteel/stairs{ - dir = 8 + icon_state = "1-2" }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/tech/grid, /area/ship/cargo) -"Tp" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"SO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, /turf/open/floor/plasteel/tech, /area/ship/storage/eva) @@ -2144,28 +2076,17 @@ /obj/machinery/rnd/production/techfab/department/security, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"TM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/brushed, -/area/ship/crew/toilet) -"TP" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/advanced_airlock_controller{ - pixel_x = 25; - req_access = null +"TV" = ( +/obj/structure/bed, +/obj/structure/curtain/bounty, +/obj/item/bedsheet/brown, +/obj/structure/sign/poster/contraband/borg_fancy_2{ + pixel_y = 32 }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech/grid, -/area/ship/storage/eva) +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) "TZ" = ( /obj/effect/turf_decal/floordetail/edgedrain{ dir = 4 @@ -2195,17 +2116,50 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"Uq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + dir = 4; + id = "hound_windows" + }, +/turf/open/floor/plating, +/area/ship/crew) "UA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"Vg" = ( -/obj/machinery/door/poddoor{ - id = "hound_windows" +"UJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/sign/warning/nosmoking{ + icon_state = "nosmoking2_b"; + pixel_y = 28 + }, +/obj/item/cigbutt{ + pixel_y = 13 + }, +/obj/item/cigbutt{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_x = 3; + pixel_y = -8 + }, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = -3 + }, +/obj/effect/turf_decal/kfp_small/left, +/obj/effect/turf_decal/no, /turf/open/floor/plating, -/area/ship/crew) +/area/ship/maintenance/port) "Vk" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) @@ -2270,35 +2224,6 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"Wn" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/crew) -"WM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "WR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -2338,6 +2263,52 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"Xh" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew) +"Xn" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + dir = 4; + id = "hound_windows" + }, +/turf/open/floor/plating, +/area/ship/bridge) +"XH" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/spacecash/bundle/c1000{ + pixel_y = 9 + }, +/obj/item/spacecash/bundle/c1000, +/obj/item/folder/syndicate{ + desc = "A slick black folder stamped 'Property of Inteq Risk Management Group.'"; + name = "folder" + }, +/obj/item/paper_bin, +/obj/item/gps{ + pixel_x = 12 + }, +/obj/item/stamp/hos{ + name = "vanguard's rubber stamp" + }, +/obj/item/pen/fountain, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "XK" = ( /obj/effect/turf_decal/floordetail/edgedrain{ dir = 8 @@ -2359,22 +2330,11 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) -"YC" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/catwalk/over/plated_catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, +"YE" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) +/area/ship/storage/eva) "Za" = ( /obj/structure/sink{ dir = 8; @@ -2389,6 +2349,19 @@ /obj/item/mop, /turf/open/floor/plasteel/patterned/brushed, /area/ship/crew/toilet) +"Zh" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/dorm) "Zm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -2401,36 +2374,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"Zr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/sign/warning/nosmoking{ - icon_state = "nosmoking2_b"; - pixel_y = 32 - }, -/obj/item/cigbutt{ - pixel_y = 13 - }, -/obj/item/cigbutt{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/cigbutt{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/cigbutt, -/obj/item/cigbutt{ - pixel_x = 3; - pixel_y = -8 - }, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "Zy" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/cigarettes/cigars{ @@ -2461,6 +2404,26 @@ /area/ship/maintenance/port) (1,1,1) = {" +ib +ib +ib +ib +ib +ib +ib +ib +hJ +ib +ib +ib +ib +ib +ib +ib +ib +ib +"} +(2,1,1) = {" ih Po Po @@ -2469,7 +2432,7 @@ ib ib xm xm -sN +Ky OP xm xm @@ -2480,7 +2443,7 @@ MB MB cX "} -(2,1,1) = {" +(3,1,1) = {" ih Jv Rh @@ -2488,10 +2451,10 @@ ih ib gO xm -jq +YE no sM -TP +wu xm gO ib @@ -2500,76 +2463,76 @@ JX Iw cX "} -(3,1,1) = {" +(4,1,1) = {" ih -mx -mR +mI +Ju ih dV xm xm MW jK -Tp +JJ xm xm xm CN cX -dz -Fx +rF +qU cX "} -(4,1,1) = {" +(5,1,1) = {" ih ZR -Ck +oq ih tg ih -MY +lZ VO WR sv hK -lm +nq cX Nd cX -DL +Qn go cX "} -(5,1,1) = {" +(6,1,1) = {" ih -Dh -HW -Nk +bZ +rh +Jb Zm eb MC -ei +SO Wf NK -yH -KA +eW +uD Ub fb -WM +HS VC -or +sw cX "} -(6,1,1) = {" +(7,1,1) = {" ih -Zr -iD +UJ +Pf ih ih ih xm xm -kN +vI EJ xm xm @@ -2580,39 +2543,39 @@ at Nh cX "} -(7,1,1) = {" +(8,1,1) = {" Ao -Ou +fX HD Ao ib Or AQ -zg +Sh gU vE -jE +yE fS Or ib cX sx -nT +kr cX "} -(8,1,1) = {" -Ao +(9,1,1) = {" +tO ih ih Ao ib Or -tO +jG XK Ln AP id -FJ +dm Or ib dB @@ -2620,7 +2583,7 @@ cX cX dB "} -(9,1,1) = {" +(10,1,1) = {" ib ib ib @@ -2640,7 +2603,7 @@ ib ib ib "} -(10,1,1) = {" +(11,1,1) = {" ib ib ib @@ -2660,7 +2623,7 @@ ib ib ib "} -(11,1,1) = {" +(12,1,1) = {" ib ib ib @@ -2680,19 +2643,19 @@ ib ib ib "} -(12,1,1) = {" +(13,1,1) = {" ib ib ib ib ib Or -Ol +BA TZ TE Hd LW -SJ +GG Or ib ib @@ -2700,7 +2663,7 @@ ib ib ib "} -(13,1,1) = {" +(14,1,1) = {" ib ib ib @@ -2708,10 +2671,10 @@ ib em Or dp -kl +Pc pU zO -YC +fk OL Or em @@ -2720,7 +2683,7 @@ ib ib ib "} -(14,1,1) = {" +(15,1,1) = {" ib ib ib @@ -2730,7 +2693,7 @@ Vk Vk Vk vY -pT +HO Or Vv Vv @@ -2740,27 +2703,27 @@ ib ib ib "} -(15,1,1) = {" +(16,1,1) = {" ib ib ib Vk -jI -Cs +TV +IZ Ls Vk -Wn +Xh HZ -Ma +qG Vv bm -Qt +dg Vv ib ib ib "} -(16,1,1) = {" +(17,1,1) = {" ib ib ib @@ -2773,21 +2736,21 @@ fI Hr rG vC -TM +tq Za Aj ib ib ib "} -(17,1,1) = {" +(18,1,1) = {" ib ib ib Rf -Bl -ny -dJ +gR +EE +Zh Vk pL uo @@ -2800,7 +2763,7 @@ ib ib ib "} -(18,1,1) = {" +(19,1,1) = {" ib ib ib @@ -2812,44 +2775,44 @@ Vk vW DU Vo -xb -fo +Pz +PO os zn ib ib ib "} -(19,1,1) = {" +(20,1,1) = {" ib ib ib GB -Fm -is -rw +mw +Ix +Ki of NI qR vn kU na -rj +ay ID ib ib ib "} -(20,1,1) = {" +(21,1,1) = {" ib ib ib Yj Zy -Ix -Ki +DB +nD pe -hz +ne Pk AW ve @@ -2860,34 +2823,34 @@ ib ib ib "} -(21,1,1) = {" +(22,1,1) = {" ib ib ib aX -Lg -DB -LR +RM +fq +BL pe Kd -PU -PU -PU -Vg +Uq +Uq +Uq +BJ Kd Kd ib ib ib "} -(22,1,1) = {" +(23,1,1) = {" ib ib ib aX -RM -fq -gz +XH +EM +tT pe hi ib @@ -2900,14 +2863,14 @@ ib ib ib "} -(23,1,1) = {" +(24,1,1) = {" ib ib ib pe HV -EM -Sg +KK +BQ pe ib ib @@ -2920,14 +2883,14 @@ ib ib ib "} -(24,1,1) = {" +(25,1,1) = {" ib ib ib km -aX -KK -aX +Xn +Xn +Xn km ib ib @@ -2940,23 +2903,3 @@ ib ib ib "} -(25,1,1) = {" -ib -ib -ib -ib -aX -aX -aX -ib -ib -ib -ib -ib -ib -ib -ib -ib -ib -ib -"} diff --git a/_maps/shuttles/shiptest/inteq_talos.dmm b/_maps/shuttles/shiptest/inteq_talos.dmm index e78c8b54cedd..98e00b50e8b6 100644 --- a/_maps/shuttles/shiptest/inteq_talos.dmm +++ b/_maps/shuttles/shiptest/inteq_talos.dmm @@ -3,21 +3,6 @@ /obj/structure/sign/number/four, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) -"ad" = ( -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 1; - id = "talos_tank_burn" - }, -/obj/machinery/door/poddoor{ - id = "talos_tank_burn" - }, -/obj/effect/turf_decal/industrial/fire/fulltile, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/engine/hull/reinforced/interior, -/area/ship/engineering/engine) "ae" = ( /obj/structure/cable{ icon_state = "4-8" @@ -74,19 +59,6 @@ /obj/item/tank/jetpack/oxygen, /turf/open/floor/plasteel/dark, /area/ship/engineering/communications) -"aq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "as" = ( /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/brown{ @@ -108,46 +80,12 @@ /obj/machinery/atmospherics/pipe/manifold/purple/visible, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"av" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/rnd/production/circuit_imprinter/department/engi, +"au" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) -"ax" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating/airless, -/area/ship/maintenance/starboard) -"aB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/structure/closet/crate, -/turf/open/floor/plating/airless, -/area/ship/maintenance/starboard) -"aC" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/telecomms/server{ - dir = 1; - network = "irmg_commnet" - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) "aH" = ( /obj/machinery/button/door{ dir = 4; @@ -184,21 +122,37 @@ /obj/machinery/door/window/eastright{ name = "Engine Access" }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_thrusters_starboard" + }, /turf/open/floor/plating, /area/ship/engineering/engine) -"aL" = ( -/obj/machinery/light{ +"aM" = ( +/obj/effect/turf_decal/borderfloor{ dir = 4 }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Crew Quarters" }, -/obj/structure/closet/crate/bin, -/obj/item/cigbutt, -/obj/item/trash/popcorn, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/port) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew) "aT" = ( /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 1 @@ -216,6 +170,26 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ship/maintenance/starboard) +"bb" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/grunge{ + dir = 4; + name = "Cargo Bay" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "bx" = ( /obj/structure/cable{ icon_state = "2-8" @@ -237,6 +211,46 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) +"bA" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 1; + id = "talos_tank_fuel" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_tank_fuel" + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/engine) +"bF" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/telecomms/relay/preset/mining{ + freq_listening = list(1347); + id = "IRMG Relay"; + name = "IRMG Relay"; + network = "irmg_commnet" + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/ship/engineering/communications) +"bI" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) "bK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/mopbucket, @@ -256,18 +270,26 @@ /obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/hallway/central) -"cc" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 +"bU" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/port) +"bX" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = 28 +/obj/structure/rack, +/obj/machinery/light/directional/south, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "ce" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -290,16 +312,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"cp" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/maintenance_hatch, +"cj" = ( /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/hardline_small, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"ck" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating/airless, /area/ship/cargo/port) +"cn" = ( +/obj/machinery/light/directional/south, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "cA" = ( /obj/effect/turf_decal/borderfloor{ dir = 1 @@ -319,41 +364,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"cB" = ( -/obj/item/clothing/glasses/hud/security/sunglasses/inteq, -/obj/item/clothing/mask/gas/sechailer/inteq, -/obj/item/clothing/gloves/tackler/combat/insulated, -/obj/item/clothing/shoes/combat, -/obj/item/storage/belt/military/assault, -/obj/item/storage/backpack/messenger/inteq, -/obj/item/megaphone/command, -/obj/item/clothing/under/syndicate/inteq/skirt, -/obj/item/clothing/under/syndicate/inteq, -/obj/item/clothing/suit/armor/hos/inteq, -/obj/item/clothing/head/beret/sec/hos/inteq, -/obj/item/areaeditor/shuttle, -/obj/item/shield/riot/tele, -/obj/structure/closet/secure_closet{ - anchored = 1; - can_be_unanchored = 1; - icon_state = "cap"; - name = "vanguard's locker"; - req_access_txt = "20" - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "cC" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -402,27 +412,21 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"cI" = ( -/obj/effect/turf_decal/corner/opaque/yellow, +"cR" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 }, +/obj/item/cigbutt, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"cL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/plasma, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ship/cargo/port) +/area/ship/security) "cT" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/window/northleft{ @@ -440,22 +444,6 @@ "cV" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/storage) -"dg" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "talos_tank_air" - }, -/obj/machinery/door/poddoor{ - id = "talos_tank_air" - }, -/turf/open/floor/engine/hull/reinforced/interior, -/area/ship/engineering/engine) "dh" = ( /obj/structure/cable{ icon_state = "1-2" @@ -470,7 +458,32 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"dk" = ( +"di" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering"; + normalspeed = 0; + req_access_txt = "10" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"dk" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 }, @@ -497,27 +510,23 @@ }, /turf/open/floor/engine/vacuum, /area/ship/engineering/engine) -"dB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"dv" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/hatch{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/ship/cargo/starboard) +"dD" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/port) +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/ship/cargo/starboard) "dE" = ( /obj/structure/chair/comfy/shuttle{ dir = 4; @@ -526,14 +535,6 @@ /obj/effect/landmark/start/head_of_security, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"dR" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/port) "dZ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -546,28 +547,18 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"ed" = ( -/obj/structure/cable{ - icon_state = "1-8" +"ef" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, +/obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/pen/fourcolor, -/obj/machinery/computer/helm/viewscreen{ - dir = 1; - pixel_y = -32 + icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/security) +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating/airless, +/area/ship/cargo/starboard) "ej" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 4 @@ -587,6 +578,10 @@ /obj/structure/cable{ icon_state = "0-8" }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_thrusters_starboard" + }, /turf/open/floor/plating, /area/ship/engineering/engine) "ek" = ( @@ -623,16 +618,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"et" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew/toilet) "eu" = ( /obj/machinery/cryopod{ dir = 4 @@ -658,23 +643,14 @@ /obj/structure/table/reinforced, /turf/open/floor/plasteel/tech/grid, /area/ship/security/armory) -"eB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +"eC" = ( +/obj/structure/table, +/obj/item/mecha_parts/mecha_equipment/rcd, +/obj/item/mecha_parts/mecha_equipment/cable_layer, +/obj/item/radio/intercom/directional/west, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/tech/grid, +/area/ship/storage) "eI" = ( /obj/machinery/porta_turret/centcom_shuttle/weak{ dir = 9 @@ -703,16 +679,51 @@ /obj/effect/landmark/start/warden, /turf/open/floor/plasteel/dark, /area/ship/security) -"eV" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/maintenance_hatch, +"eO" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/door/airlock{ + dir = 4; + name = "Restroom" + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating/airless, -/area/ship/cargo/starboard) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/toilet) +"eT" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/west, +/obj/structure/closet/firecloset/full{ + anchored = 1; + can_be_unanchored = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"eW" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew/toilet) "ff" = ( /obj/structure/cable{ icon_state = "4-8" @@ -790,6 +801,16 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/external/dark) +"fE" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew/toilet) "fF" = ( /obj/structure/cable{ icon_state = "1-8" @@ -806,35 +827,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/airless, /area/ship/cargo/port) -"fQ" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/ship/cargo/starboard) -"fS" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/backpack/satchel/med, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/glasses/hud/health, -/obj/item/storage/belt/medical/webbing, -/obj/item/clothing/suit/armor/inteq/corpsman, -/obj/item/clothing/head/soft/inteq/corpsman, -/obj/item/clothing/under/syndicate/inteq/skirt/corpsman, -/obj/item/clothing/under/syndicate/inteq/corpsman, -/obj/structure/railing, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/item/storage/box/bodybags, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "fU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/maintenance, @@ -854,6 +846,15 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security/armory) +"fY" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "ge" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ @@ -880,22 +881,33 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"gl" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -8; - pixel_y = 5 +"gk" = ( +/obj/item/storage/backpack/industrial, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/under/syndicate/inteq/artificer, +/obj/item/clothing/under/syndicate/inteq/skirt/artificer, +/obj/item/clothing/head/soft/inteq, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/utility/full, +/obj/effect/turf_decal/techfloor{ + dir = 4 }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -25 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -32 +/obj/item/clothing/glasses/meson, +/obj/item/radio/intercom/directional/east, +/obj/structure/closet/secure_closet{ + anchored = 1; + icon_state = "eng_secure"; + name = "artificer's locker"; + req_access_txt = "11"; + req_one_access = null }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "gm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -909,6 +921,25 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ship/cargo/port) +"gp" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/port) +"gr" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "gz" = ( /obj/structure/cable{ icon_state = "1-2" @@ -925,58 +956,34 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"gB" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/folder/syndicate{ - desc = "A slick black folder stamped 'Property of Inteq Risk Management Group.'"; - name = "folder" +"gG" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/pen/fountain, -/obj/item/gps{ - pixel_x = 12 +/obj/machinery/atmospherics/pipe/simple/dark/visible/layer1, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ + dir = 9 }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/item/stamp/hos{ - name = "vanguard's rubber stamp" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"gE" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/shuttle/engine/electric{ +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"gN" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/door/poddoor{ - id = "talos_thrusters_port" - }, -/turf/open/floor/plating, -/area/ship/engineering) -"gF" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 4 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/effect/turf_decal/siding/thinplating{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/machinery/camera/autoname{ - dir = 8 +/obj/machinery/door/airlock/grunge{ + dir = 4; + name = "Cargo Bay" }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "gP" = ( /obj/structure/cable{ icon_state = "1-4" @@ -991,6 +998,14 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) +"gR" = ( +/obj/effect/turf_decal/industrial/fire/fulltile, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_tank_burn" + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/engine) "gS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1003,31 +1018,33 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"gU" = ( +"gT" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/railing, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) +"gY" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, /obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 + dir = 4 }, -/obj/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster{ - dir = 1; - pixel_y = -32 - }, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"gV" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "talos_thrusters_starboard" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/area/ship/security) "gZ" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -1046,6 +1063,23 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"hc" = ( +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/trash/raisins, +/obj/item/trash/can, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "hg" = ( /obj/structure/cable{ icon_state = "1-4" @@ -1056,31 +1090,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"hk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - normalspeed = 0; - req_access_txt = "10" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/ship/engineering) "hl" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1095,6 +1104,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ship/maintenance/starboard) +"hw" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/airless, +/area/ship/cargo/starboard) "hz" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table/wood, @@ -1152,32 +1165,22 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"hT" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/hallway/central) -"hV" = ( -/obj/structure/cable{ - icon_state = "4-8" +"hQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -8; + pixel_y = 5 }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/airalarm/all_access{ +/obj/machinery/light_switch{ dir = 1; pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/grid, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"hT" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) -"hZ" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/ship/maintenance/port) "ia" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1185,14 +1188,6 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/external/dark) -"id" = ( -/obj/machinery/light, -/obj/item/analyzer, -/obj/structure/sign/poster/official/moth/piping{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) "ie" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering/engine) @@ -1215,6 +1210,10 @@ /obj/machinery/door/window/eastleft{ name = "Engine Access" }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_thrusters_port" + }, /turf/open/floor/plating, /area/ship/engineering) "ik" = ( @@ -1224,20 +1223,22 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/airless, /area/ship/maintenance/starboard) -"im" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 +"iu" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/item/trash/can, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/starboard) "iy" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 1 @@ -1316,6 +1317,10 @@ /obj/machinery/door/window/eastleft{ name = "Engine Access" }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_thrusters_starboard" + }, /turf/open/floor/plating, /area/ship/engineering/engine) "iN" = ( @@ -1335,21 +1340,6 @@ /obj/item/cigbutt, /turf/open/floor/plating/airless, /area/ship/cargo/port) -"iQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_access = null; - req_access_txt = "11"; - req_one_access = null - }, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "iW" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1373,21 +1363,6 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"ja" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "jc" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1397,6 +1372,28 @@ }, /turf/open/floor/carpet/orange, /area/ship/bridge) +"jd" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dir = 4; + dwidth = 15 + }, +/turf/template_noop, +/area/template_noop) +"jf" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/secure_closet/engineering_welding{ + req_access = null; + req_access_txt = "11"; + req_one_access = null + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "jg" = ( /obj/machinery/porta_turret/centcom_shuttle/weak{ dir = 10 @@ -1407,51 +1404,36 @@ /obj/structure/sign/warning/vacuum, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/port) -"jm" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/ship/cargo/port) -"jo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, +"jl" = ( /obj/structure/cable{ - icon_state = "1-10" - }, -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 1; - icon_state = "pump_map-1"; - name = "burn chamber exhaust pump"; - piping_layer = 1 + icon_state = "4-8" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "jp" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"js" = ( +"jt" = ( /obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating/airless, -/area/ship/cargo/port) +/area/ship/maintenance/port) "jw" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1464,70 +1446,6 @@ }, /turf/open/floor/carpet/orange, /area/ship/bridge) -"jx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 10 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/cryo) -"jy" = ( -/obj/machinery/door/poddoor{ - id = "talos_thrusters_starboard" - }, -/obj/machinery/power/shuttle/engine/fueled/plasma{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"jz" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/machinery/button/door{ - dir = 4; - id = "talos_armory"; - name = "Door Control"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/machinery/button/door{ - dir = 4; - id = "talos_armory"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = 6; - req_access_txt = "3"; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"jC" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/ship/cargo/starboard) "jH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1547,45 +1465,11 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/communications) -"jM" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, +"jJ" = ( +/obj/machinery/light/directional/east, +/obj/machinery/rnd/production/circuit_imprinter/department/engi, /turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) -"jN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/sign/warning/coldtemp{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/ship/engineering/communications) -"jO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer1, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 9 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) +/area/ship/storage) "jP" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -1599,6 +1483,20 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/cryo) +"jS" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/number/five, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "jT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1614,18 +1512,91 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"jV" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer1{ - dir = 9 +"jU" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"jW" = ( +/obj/machinery/light/directional/east, +/obj/machinery/computer/telecomms/server{ + dir = 1; + network = "irmg_commnet" + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) "jX" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) +"jY" = ( +/obj/item/storage/backpack/industrial, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/under/syndicate/inteq/artificer, +/obj/item/clothing/under/syndicate/inteq/skirt/artificer, +/obj/item/clothing/head/soft/inteq, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/shoes/combat, +/obj/structure/closet/secure_closet{ + anchored = 1; + icon_state = "eng_secure"; + name = "artificer's locker"; + req_access_txt = "11"; + req_one_access = null + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/directional/north, +/obj/item/storage/belt/utility/full, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"jZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering"; + normalspeed = 0; + req_access_txt = "10" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating, +/area/ship/engineering) "kg" = ( /obj/effect/turf_decal/box/corners, /obj/effect/decal/cleanable/dirt, @@ -1637,24 +1608,6 @@ /obj/structure/closet/crate/secure/loot, /turf/open/floor/plating/airless, /area/ship/cargo/starboard) -"ki" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/bin, -/obj/item/trash/can, -/obj/item/cigbutt, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "ks" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1662,29 +1615,6 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating/airless, /area/ship/cargo/starboard) -"ku" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "talos_thrusters_port" - }, -/turf/open/floor/plating, -/area/ship/engineering) -"kv" = ( -/obj/structure/chair/office, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) "kD" = ( /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) @@ -1715,27 +1645,41 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input, /turf/open/floor/engine/vacuum, /area/ship/engineering/engine) +"kW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/ship/hallway/central) "la" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/toilet) -"lg" = ( -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/suit/space/hardsuit/engine, -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"ll" = ( -/obj/machinery/power/shuttle/engine/fueled/plasma{ +"lq" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "talos_tank_air" + }, /obj/machinery/door/poddoor{ - id = "talos_thrusters_port" + dir = 4; + id = "talos_tank_air" }, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/engine) "ls" = ( /obj/machinery/telecomms/server/presets/inteq{ freq_listening = list(1347); @@ -1775,22 +1719,47 @@ /obj/machinery/atmospherics/pipe/simple/purple/visible, /turf/open/floor/plating, /area/ship/engineering/engine) +"lB" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/backpack/satchel/med, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/glasses/hud/health, +/obj/item/storage/belt/medical/webbing, +/obj/item/clothing/suit/armor/inteq/corpsman, +/obj/item/clothing/head/soft/inteq/corpsman, +/obj/item/clothing/under/syndicate/inteq/skirt/corpsman, +/obj/item/clothing/under/syndicate/inteq/corpsman, +/obj/structure/railing, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/item/storage/box/bodybags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "lC" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/port) -"lG" = ( -/obj/machinery/power/apc/auto_name/east, +"lF" = ( /obj/structure/cable{ - icon_state = "0-8" + icon_state = "4-8" }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 4 + dir = 1 }, /obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, /turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/area/ship/hallway/port) "lI" = ( /obj/structure/grille, /turf/open/floor/plating/airless, @@ -1829,6 +1798,21 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"lQ" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "lS" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ @@ -1839,25 +1823,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"mc" = ( -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/obj/item/cigbutt, -/obj/item/trash/raisins, -/obj/item/trash/can, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) "mh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -1908,23 +1873,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"mr" = ( +"ms" = ( +/obj/machinery/light/directional/west, +/obj/machinery/power/smes/engineering, /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 8 + icon_state = "0-2" }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 +/obj/structure/sign/warning/coldtemp{ + pixel_x = -32 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/turf/open/floor/plating, +/area/ship/engineering/communications) "mw" = ( /obj/effect/turf_decal/borderfloor{ dir = 1 @@ -1975,14 +1934,36 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"mD" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 +"mI" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating/airless, +/area/ship/cargo/starboard) +"mJ" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 1; + id = "talos_tank_air" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_tank_air" + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/engine) "mK" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) @@ -2022,6 +2003,31 @@ }, /turf/open/floor/plating, /area/ship/crew) +"mV" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/sign/poster/contraband/inteq_nt{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "mX" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) @@ -2058,6 +2064,22 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"nt" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 1; + id = "talos_tank_burn" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_tank_burn" + }, +/obj/effect/turf_decal/industrial/fire/fulltile, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/engine) "nz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2103,6 +2125,42 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating/airless, /area/ship/maintenance/port) +"nJ" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"nS" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"nT" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/nuclearbomb/beer{ + desc = "An evidently-decommissioned nuclear warhead. It has traces of blood-red paint on it, but a much-newer graffiti of the IRMG Shield logo has been painted on top. A drink tap has been drilled directly into the metal."; + name = "comemmorative nuclear fission explosive" + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "nY" = ( /obj/effect/turf_decal/industrial/traffic{ dir = 1 @@ -2172,26 +2230,6 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"ok" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "om" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2220,23 +2258,40 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"oq" = ( +"oo" = ( +/obj/structure/chair/stool{ + dir = 1 + }, /obj/effect/turf_decal/siding/thinplating/dark, /obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/machinery/light, -/obj/structure/closet/secure_closet{ - anchored = 1; - can_be_unanchored = 1; - icon_state = "sec"; - name = "equipment locker"; - req_access_txt = "1" +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 }, -/obj/item/clothing/mask/gas/sechailer/inteq, -/obj/item/storage/belt/security/webbing/inteq, -/obj/item/clothing/glasses/hud/security/sunglasses/inteq, -/obj/item/storage/box/handcuffs, -/turf/open/floor/plasteel/tech/grid, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/tech, /area/ship/security/armory) +"os" = ( +/obj/machinery/computer/cargo/express{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + freqlock = 1; + frequency = 1347; + name = "IRMG shortwave intercom" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "ot" = ( /obj/structure/rack, /obj/effect/turf_decal/techfloor{ @@ -2265,21 +2320,11 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) -"ox" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating/airless, -/area/ship/cargo/port) +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) "oD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2295,16 +2340,6 @@ /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plating/airless, /area/ship/cargo/starboard) -"oK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "oR" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -2346,15 +2381,24 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating/airless, /area/ship/security) +"oW" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "oY" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ship/maintenance/port) -"pa" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/ship/maintenance/starboard) "pb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/jukebox/boombox{ @@ -2363,6 +2407,27 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"pf" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/suit_storage_unit/inherit{ + req_access_txt = "1" + }, +/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, +/obj/item/tank/jetpack/oxygen, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "pk" = ( /obj/structure/cable{ icon_state = "2-4" @@ -2378,24 +2443,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"pl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - heat_capacity = 500; - name = "thermo-electric cooler" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible/layer5{ - dir = 5 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) "pm" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 5 @@ -2416,10 +2463,30 @@ }, /turf/open/floor/plating/airless, /area/ship/cargo/port) +"pu" = ( +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer{ + anchored = 1; + locked = 0; + name = "fridge" + }, +/obj/item/storage/cans/sixbeer, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_orange, +/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_orange, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "pA" = ( /turf/open/floor/plasteel/dark, /area/ship/hallway/port) -"pF" = ( +"pD" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, @@ -2429,10 +2496,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "pG" = ( @@ -2440,21 +2504,29 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating/airless, /area/ship/maintenance/starboard) -"pS" = ( -/obj/machinery/light{ - dir = 4 +"pL" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/folder/syndicate{ + desc = "A slick black folder stamped 'Property of Inteq Risk Management Group.'"; + name = "folder" }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 4 +/obj/item/pen/fountain, +/obj/item/gps{ + pixel_x = 12 }, -/obj/effect/turf_decal/siding/thinplating{ +/obj/effect/turf_decal/corner/opaque/brown{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/obj/item/stamp/hos{ + name = "vanguard's rubber stamp" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "pU" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/engine) @@ -2530,6 +2602,19 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"qm" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "qo" = ( /obj/machinery/shower{ dir = 1 @@ -2545,19 +2630,6 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating/airless, /area/ship/cargo/port) -"qq" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) "qr" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2586,24 +2658,27 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"qt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/item/radio/intercom{ +"qs" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/railing, +/obj/machinery/airalarm/directional/north, +/obj/structure/closet/wall{ dir = 4; - pixel_x = -22 + icon_door = "grey_wall"; + pixel_x = -32 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) "qB" = ( /obj/effect/turf_decal/industrial/traffic, /obj/effect/decal/cleanable/dirt, @@ -2651,27 +2726,14 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"qV" = ( -/obj/machinery/door/airlock{ - name = "Dormitory" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"qT" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/dark/visible/layer1{ + dir = 9 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew/dorm) +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) "qW" = ( /obj/effect/turf_decal/trimline/opaque/yellow/line, /obj/effect/turf_decal/siding/thinplating, @@ -2683,62 +2745,31 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/port) -"rh" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 5 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 +"rc" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/obj/structure/closet/emcloset/wall{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew/toilet) +"rj" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/candy, +/obj/item/trash/can, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "rk" = ( /obj/structure/grille, /obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/engineering/engine) -"rs" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/warning/incident{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"rt" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - dir = 1; - id = "talos_cargo"; - locked = 1 - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/poddoor{ - id = "talos_cargo" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/reinforced, -/area/ship/cargo) "rv" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2833,17 +2864,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"rW" = ( -/obj/structure/table, -/obj/item/mecha_parts/mecha_equipment/rcd, -/obj/item/mecha_parts/mecha_equipment/cable_layer, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/tech/grid, -/area/ship/storage) "sa" = ( /obj/effect/turf_decal/box/corners, /obj/structure/cable{ @@ -2851,44 +2871,43 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"sf" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 10 +"sc" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/folder/syndicate{ + desc = "A slick black folder stamped 'Property of Inteq Risk Management Group.'"; + name = "folder" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +/obj/item/pen, +/obj/item/multitool{ + pixel_x = 12; + pixel_y = 8 }, -/obj/structure/closet/secure_closet{ - anchored = 1; - can_be_unanchored = 1; - icon_state = "armory"; - name = "armor locker"; - req_access_txt = "1" +/obj/item/radio/intercom/directional/north{ + freerange = 1; + freqlock = 1; + frequency = 1347; + name = "IRMG shortwave intercom" }, -/obj/item/clothing/suit/armor/vest/alt, -/obj/item/clothing/head/helmet/inteq, -/obj/item/clothing/gloves/combat, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) "si" = ( /obj/structure/sign/warning/vacuum, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) -"sk" = ( -/obj/machinery/light/small{ - dir = 8 +"sl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, +/obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 + icon_state = "4-8" }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating/airless, +/area/ship/cargo/port) "sn" = ( /obj/structure/chair/stool{ dir = 1 @@ -2902,6 +2921,19 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) +"sq" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/inteq_gec{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "su" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -3010,6 +3042,14 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/external/dark) +"sQ" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_cargo" + }, +/turf/open/floor/engine/hull/reinforced, +/area/ship/cargo) "sT" = ( /obj/structure/chair{ dir = 4 @@ -3032,6 +3072,51 @@ "sW" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) +"sY" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Canteen" + }, +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/canteen) +"sZ" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"ta" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/obj/structure/closet/crate/bin, +/obj/item/cigbutt, +/obj/item/trash/popcorn, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/port) "tb" = ( /obj/machinery/power/terminal{ dir = 8 @@ -3062,21 +3147,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating/airless, /area/ship/cargo/starboard) -"tn" = ( -/obj/machinery/computer/helm{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "tp" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -3092,6 +3162,24 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security/armory) +"tq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/item/instrument/harmonica, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) "tr" = ( /obj/structure/cable{ icon_state = "1-4" @@ -3102,39 +3190,22 @@ /obj/structure/sign/number/one, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) -"tz" = ( -/obj/machinery/light, -/obj/machinery/telecomms/bus/preset_four{ - network = "irmg_commnet" +"tu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/turf/open/floor/circuit/telecomms/mainframe, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, /area/ship/engineering/communications) "tA" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) -"tB" = ( -/obj/structure/closet/emcloset/empty{ - anchored = 1; - can_be_unanchored = 1; - name = "oxygen closet" - }, -/obj/item/tank/internals/plasmaman/full, -/obj/item/tank/internals/plasmaman/full, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech/grid, -/area/ship/maintenance/port) "tF" = ( /obj/structure/table, /obj/item/storage/fancy/donut_box, @@ -3157,29 +3228,17 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"tJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) -"tL" = ( -/obj/machinery/door/airlock/hatch, +"tK" = ( /obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/port) +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating/airless, +/area/ship/cargo/port) "tO" = ( /obj/machinery/computer/telecomms/monitor{ dir = 1; @@ -3187,6 +3246,21 @@ }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/engineering/communications) +"tT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "ua" = ( /obj/effect/turf_decal/industrial/traffic, /obj/structure/cable{ @@ -3197,12 +3271,36 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"ub" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating/airless, +/area/ship/maintenance/starboard) "uc" = ( /obj/structure/sign/poster/contraband/random{ pixel_y = 32 }, /turf/open/floor/carpet, /area/ship/maintenance/starboard) +"ud" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/number/four, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "ue" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3224,31 +3322,16 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/security/armory) -"un" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/folder/syndicate{ - desc = "A slick black folder stamped 'Property of Inteq Risk Management Group.'"; - name = "folder" - }, -/obj/item/pen, -/obj/item/multitool{ - pixel_x = 12; - pixel_y = 8 - }, -/obj/item/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1347; - name = "IRMG shortwave intercom"; - pixel_y = 22 +"ul" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 +/obj/machinery/camera/autoname{ + dir = 10 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/crew/cryo) "uo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -3275,13 +3358,16 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"ut" = ( -/obj/structure/dresser, -/obj/machinery/light/small{ - dir = 4 +"uv" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "uC" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 @@ -3298,23 +3384,13 @@ /obj/machinery/door/window/eastright{ name = "Engine Access" }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/ship/engineering) -"uD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer1, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_thrusters_port" }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) +/turf/open/floor/plating, +/area/ship/engineering) "uE" = ( /obj/structure/cable{ icon_state = "2-8" @@ -3324,19 +3400,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/storage) -"uF" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) "uI" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) @@ -3347,30 +3410,6 @@ /obj/machinery/iv_drip, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"uV" = ( -/obj/structure/catwalk/over/plated_catwalk, -/obj/structure/railing, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) -"uY" = ( -/obj/machinery/door/poddoor{ - id = "talos_thrusters_starboard" - }, -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) "vi" = ( /obj/structure/sign/number/eight{ dir = 1 @@ -3406,25 +3445,6 @@ "vp" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering/communications) -"vt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/starboard) "vv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3443,7 +3463,7 @@ /turf/open/floor/plating, /area/ship/engineering/engine) "vE" = ( -/turf/closed/wall/mineral/plastitanium, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/external/dark) "vF" = ( /obj/item/toy/plush/slimeplushie, @@ -3578,13 +3598,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/port) -"wo" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet, -/area/ship/maintenance/starboard) "wp" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -3592,17 +3605,6 @@ /obj/structure/weightmachine/stacklifter, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"ws" = ( -/obj/structure/closet/toolcloset/empty, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/electrical, -/obj/item/rcl/pre_loaded, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plasteel/tech/grid, -/area/ship/storage) "wu" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -3700,6 +3702,54 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"wU" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"wY" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"xb" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + dir = 4; + id_tag = "talos_armory"; + name = "Armory"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) "xc" = ( /obj/structure/sign/poster/retro/we_watch{ pixel_x = 32 @@ -3769,21 +3819,6 @@ /obj/structure/tank_dispenser, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"xs" = ( -/obj/machinery/power/terminal, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/analyzer{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) "xz" = ( /obj/machinery/telecomms/broadcaster/preset_right{ network = "irmg_commnet" @@ -3796,6 +3831,13 @@ }, /turf/open/floor/circuit/telecomms/mainframe, /area/ship/engineering/communications) +"xB" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew/toilet) "xD" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3841,6 +3883,27 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) +"xT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + freqlock = 1; + frequency = 1347; + name = "IRMG shortwave intercom" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) "xV" = ( /obj/effect/turf_decal/trimline/opaque/yellow/warning{ dir = 1 @@ -3872,27 +3935,13 @@ /obj/machinery/power/terminal, /turf/open/floor/plasteel/dark, /area/ship/engineering/communications) -"yd" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/suit_storage_unit/inherit{ - req_access_txt = "1" +"yj" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/obj/item/tank/jetpack/oxygen, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/crew/cryo) "yl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/opaque/yellow/warning{ @@ -3900,6 +3949,27 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/external/dark) +"yn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) +"yo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "yp" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/port) @@ -3916,94 +3986,38 @@ /obj/machinery/door/window/eastleft{ name = "Engine Access" }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"yx" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/secure_data/laptop, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"yz" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"yC" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/rack, -/obj/item/melee/baton{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/pepper{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/item/reagent_containers/spray/pepper{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) -"yD" = ( -/obj/item/storage/backpack/industrial, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/under/syndicate/inteq/artificer, -/obj/item/clothing/under/syndicate/inteq/skirt/artificer, -/obj/item/clothing/head/soft/inteq, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/shoes/combat, -/obj/structure/closet/secure_closet{ - anchored = 1; - icon_state = "eng_secure"; - name = "artificer's locker"; - req_access_txt = "11"; - req_one_access = null - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/belt/utility/full, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_thrusters_starboard" + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"yr" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"yF" = ( -/obj/structure/catwalk/over/plated_catwalk, -/obj/structure/railing, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/landmark/start/chief_engineer, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/communications) +"yx" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/secure_data/laptop, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"yz" = ( +/obj/structure/chair{ + dir = 8 }, -/obj/machinery/computer/cryopod{ - pixel_y = 25 +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "yL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -4044,33 +4058,38 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ship/security) -"za" = ( -/obj/machinery/light, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ +"yU" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4 }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"ze" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/poddoor{ - id = "talos_thrusters_starboard" +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating/airless, +/area/ship/cargo/port) +"zf" = ( +/obj/item/storage/backpack/messenger/inteq, +/obj/item/storage/backpack/messenger/inteq, +/obj/item/storage/backpack/messenger/inteq, +/obj/item/clothing/head/beret/sec/inteq, +/obj/item/clothing/head/beret/sec/inteq, +/obj/item/clothing/head/beret/sec/inteq, +/obj/item/clothing/head/soft/inteq, +/obj/item/clothing/head/soft/inteq, +/obj/item/clothing/head/soft/inteq, +/obj/structure/closet{ + icon_door = "orange"; + name = "inteq wardrobe" }, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "0-2" }, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) "zg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -4107,18 +4126,33 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering/communications) +"zu" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 8; + id = "talos_cargo"; + name = "Cargo Door Control"; + pixel_x = 25; + pixel_y = 4 + }, +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "talos_cargo"; + pixel_x = 25; + pixel_y = -6 + }, +/obj/structure/weightmachine/weightlifter, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "zw" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/airlock/external, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"zy" = ( -/obj/effect/turf_decal/industrial/fire/fulltile, -/obj/machinery/door/poddoor{ - id = "talos_tank_burn" - }, -/turf/open/floor/engine/hull/reinforced/interior, -/area/ship/engineering/engine) "zz" = ( /obj/machinery/light_switch{ dir = 1; @@ -4158,19 +4192,75 @@ }, /turf/open/floor/carpet/black, /area/ship/crew/dorm) +"zH" = ( +/obj/machinery/button/door{ + dir = 4; + id = "talos_tank_burn"; + name = "Access Door Control"; + pixel_x = -25; + pixel_y = -6; + req_access = null; + req_access_txt = "56" + }, +/obj/machinery/button/shieldwallgen{ + dir = 4; + id = "talos_tank_burn"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "56" + }, +/obj/structure/cable{ + icon_state = "5-10" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -36; + pixel_y = -4 + }, +/obj/structure/sign/warning{ + pixel_x = -40; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"zK" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/incident{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "zL" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/plating/airless, /area/ship/cargo/port) -"zS" = ( -/obj/machinery/light{ - dir = 4 +"zR" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/tech/grid, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, /area/ship/storage) "zT" = ( /obj/structure/chair/stool/bar{ @@ -4255,13 +4345,6 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/engineering/engine) -"As" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "Ax" = ( /obj/structure/cable{ icon_state = "2-8" @@ -4288,6 +4371,15 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) +"AB" = ( +/obj/docking_port/stationary{ + width = 6; + height = 15; + dir = 4; + dwidth = 4 + }, +/turf/template_noop, +/area/template_noop) "AC" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -4319,104 +4411,37 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"AF" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) -"AL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/crate/large, -/obj/item/mop, -/obj/item/pushbroom, -/turf/open/floor/plating/airless, -/area/ship/maintenance/port) -"AO" = ( -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/suit/space/hardsuit/engine, -/obj/item/tank/jetpack/carbondioxide, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/inteq_nt{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"AS" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/toilet) -"AV" = ( -/obj/machinery/computer/cargo/express{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - freqlock = 1; - frequency = 1347; - name = "IRMG shortwave intercom"; - pixel_x = 22 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"AX" = ( +"AK" = ( /obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil/slippery, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_cargo" }, -/obj/machinery/door/poddoor{ - id = "talos_tank_fuel" +/turf/open/floor/engine/hull/reinforced, +/area/ship/cargo) +"AL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/large, +/obj/item/mop, +/obj/item/pushbroom, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"AO" = ( +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/suit/space/hardsuit/engine, +/obj/item/tank/jetpack/carbondioxide, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "talos_tank_fuel" +/obj/structure/sign/poster/contraband/inteq_nt{ + pixel_y = 32 }, -/turf/open/floor/engine/hull/reinforced/interior, -/area/ship/engineering/engine) +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "AY" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -4436,6 +4461,10 @@ /obj/machinery/door/window/eastright{ name = "Engine Access" }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_thrusters_port" + }, /turf/open/floor/plating, /area/ship/engineering) "AZ" = ( @@ -4464,20 +4493,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/engine) -"Bg" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/nuclearbomb/beer{ - desc = "An evidently-decommissioned nuclear warhead. It has traces of blood-red paint on it, but a much-newer graffiti of the IRMG Shield logo has been painted on top. A drink tap has been drilled directly into the metal."; - name = "comemmorative nuclear fission explosive" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) "Bh" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4549,30 +4564,30 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"BV" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, +"BY" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/door_assembly/door_assembly_mhatch{ - anchored = 1; - can_be_unanchored = 1 +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 8 }, -/turf/open/floor/plating/airless, -/area/ship/cargo/starboard) -"Co" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/weldingtool/largetank, -/obj/item/clothing/glasses/welding, -/obj/item/multitool, -/turf/open/floor/plasteel/tech/grid, -/area/ship/storage) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"Cp" = ( +/obj/machinery/vending/cola/random, +/obj/structure/sign/poster/contraband/inteq{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "Cs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -4585,6 +4600,17 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/engineering) +"Cu" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/railing, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) "Cy" = ( /obj/machinery/cryopod{ dir = 8 @@ -4601,25 +4627,6 @@ "CF" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) -"CH" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/grunge{ - name = "Cargo Bay" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "CJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -4680,90 +4687,78 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"De" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, +"Dc" = ( /obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 1; - id = "talos_tank_air" - }, -/obj/machinery/door/poddoor{ - id = "talos_tank_air" + icon_state = "5-10" }, -/turf/open/floor/engine/hull/reinforced/interior, -/area/ship/engineering/engine) -"Di" = ( -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer1{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/turf/open/floor/plasteel/stairs{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/port) -"Dj" = ( -/obj/effect/turf_decal/industrial/fire/fulltile, +/area/ship/engineering/engine) +"Dd" = ( /obj/structure/cable{ - icon_state = "0-4" + icon_state = "1-8" }, -/obj/machinery/door/poddoor{ - id = "talos_tank_burn" +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "talos_tank_burn" +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 }, -/turf/open/floor/engine/hull/reinforced/interior, -/area/ship/engineering/engine) -"Dp" = ( -/obj/structure/cable{ - icon_state = "2-5" +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 }, +/obj/item/pen/fourcolor, +/obj/machinery/computer/helm/viewscreen/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"Dg" = ( /obj/structure/cable{ - icon_state = "5-8" + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/machinery/camera/autoname{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/dark/visible/layer1, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Dl" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 }, -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 8 +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 }, -/obj/machinery/button/shieldwallgen{ - dir = 8; - id = "talos_tank_fuel"; - pixel_x = 25; - pixel_y = 4; - req_access_txt = "24" +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"Dq" = ( +/obj/machinery/cryopod{ + dir = 4 }, -/obj/machinery/button/door{ - dir = 8; - id = "talos_tank_fuel"; - name = "Access Door Control"; - pixel_x = 25; - pixel_y = -6; - req_access_txt = "24" +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/techfloor{ + dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) "Dr" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -4774,6 +4769,18 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) +"Ds" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) "Dw" = ( /obj/structure/sign/number/four{ dir = 1 @@ -4801,17 +4808,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"DK" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) "DO" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/maintenance/starboard) @@ -4833,15 +4829,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security) -"DU" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/poddoor{ - id = "talos_cargo" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/engine/hull/reinforced, -/area/ship/cargo) "DY" = ( /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 1 @@ -4854,24 +4841,6 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"Ee" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer1{ - dir = 6 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) "Eg" = ( /obj/machinery/mech_bay_recharge_port, /turf/open/floor/plasteel/tech/grid, @@ -4879,27 +4848,8 @@ "Ep" = ( /obj/item/trash/can, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"Er" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew/toilet) -"Et" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "Ev" = ( /obj/structure/cable{ icon_state = "1-8" @@ -4923,22 +4873,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/storage) -"ED" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ship/storage) "EL" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4948,42 +4882,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"ES" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) -"Fa" = ( -/obj/structure/cable{ - icon_state = "5-10" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/ship/engineering/engine) "Fe" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ dir = 8 @@ -5003,6 +4901,14 @@ /obj/structure/sign/number/nine, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) +"Fh" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/cigbutt, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) "Fi" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -5046,6 +4952,28 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) +"Fo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 1; + icon_state = "pump_map-1"; + name = "burn chamber exhaust pump"; + piping_layer = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) "Fp" = ( /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 8 @@ -5092,26 +5020,6 @@ /obj/effect/turf_decal/corner/opaque/yellow, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"FA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/port) "FC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/opaque/yellow/warning{ @@ -5122,25 +5030,14 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/external/dark) -"FH" = ( -/obj/effect/turf_decal/box/corners, -/obj/machinery/button/shieldwallgen{ - dir = 8; - id = "talos_cargo"; - pixel_x = 25; - pixel_y = 4 - }, -/obj/machinery/button/door{ - dir = 8; - id = "talos_cargo"; - name = "Cargo Door Control"; - pixel_x = 25; - pixel_y = -6 +"FK" = ( +/obj/machinery/light/directional/south, +/obj/item/analyzer, +/obj/structure/sign/poster/official/moth/piping{ + pixel_y = -32 }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) "FL" = ( /obj/structure/catwalk/over/plated_catwalk, /obj/structure/cable{ @@ -5150,18 +5047,28 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/cryo) -"FU" = ( -/obj/machinery/light/small{ +"FO" = ( +/obj/structure/closet/emcloset/empty{ + anchored = 1; + can_be_unanchored = 1; + name = "oxygen closet" + }, +/obj/item/tank/internals/plasmaman/full, +/obj/item/tank/internals/plasmaman/full, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/effect/turf_decal/techfloor{ dir = 1 }, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/ship/cargo/port) +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) "FV" = ( /obj/structure/catwalk/over/plated_catwalk, /obj/structure/railing, @@ -5170,15 +5077,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/cryo) -"FW" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/port) "Ga" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5199,6 +5097,22 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/port) +"Gl" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/port) "Gm" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/airlock/external, @@ -5206,6 +5120,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"Gq" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating/airless, +/area/ship/cargo/starboard) "Gr" = ( /obj/effect/turf_decal/industrial/fire{ dir = 4 @@ -5215,36 +5135,25 @@ }, /turf/open/floor/engine/vacuum, /area/ship/engineering/engine) -"Gs" = ( -/obj/item/storage/backpack/industrial, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/under/syndicate/inteq/artificer, -/obj/item/clothing/under/syndicate/inteq/skirt/artificer, -/obj/item/clothing/head/soft/inteq, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/shoes/combat, -/obj/item/storage/belt/utility/full, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/item/clothing/glasses/meson, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 +"Gt" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 10 }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, /obj/structure/closet/secure_closet{ anchored = 1; - icon_state = "eng_secure"; - name = "artificer's locker"; - req_access_txt = "11"; - req_one_access = null + can_be_unanchored = 1; + icon_state = "armory"; + name = "armor locker"; + req_access_txt = "1" }, +/obj/item/clothing/suit/armor/vest/alt, +/obj/item/clothing/head/helmet/inteq, +/obj/item/clothing/gloves/combat, /turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/area/ship/security/armory) "Gu" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/techfloor{ @@ -5276,19 +5185,33 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"GK" = ( +"Gz" = ( +/obj/machinery/light/directional/south, +/obj/machinery/telecomms/bus/preset_four{ + network = "irmg_commnet" + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/ship/engineering/communications) +"GG" = ( +/obj/machinery/light/small/directional/west, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) "GL" = ( /obj/item/cigbutt, /turf/open/floor/plasteel/grimy, /area/ship/crew) +"GN" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/port) "GQ" = ( /obj/structure/cable{ icon_state = "1-8" @@ -5328,6 +5251,15 @@ }, /turf/open/floor/plating/airless, /area/ship/cargo/port) +"He" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) "Hh" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -5343,6 +5275,15 @@ /obj/effect/decal/cleanable/robot_debris, /turf/open/floor/plating/airless, /area/ship/maintenance/port) +"Hl" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/weldingtool/largetank, +/obj/item/clothing/glasses/welding, +/obj/item/multitool, +/turf/open/floor/plasteel/tech/grid, +/area/ship/storage) "Ho" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -5361,45 +5302,17 @@ "Hq" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security/armory) -"HF" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 8; - id = "talos_cargo"; - name = "Cargo Door Control"; - pixel_x = 25; - pixel_y = 4 - }, -/obj/machinery/button/shieldwallgen{ - dir = 8; - id = "talos_cargo"; - pixel_x = 25; - pixel_y = -6 - }, -/obj/structure/weightmachine/weightlifter, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) -"HH" = ( +"HB" = ( /obj/machinery/suit_storage_unit/inherit/industrial, /obj/item/clothing/suit/space/hardsuit/engine, -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/camera/autoname{ - dir = 6 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"HD" = ( +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "HI" = ( /obj/structure/catwalk, /obj/structure/marker_beacon{ @@ -5408,37 +5321,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/ship/external/dark) -"HJ" = ( -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/structure/closet/firecloset/full{ - anchored = 1; - can_be_unanchored = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"HM" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/autolathe, -/obj/item/stack/sheet/metal/five, -/obj/item/stack/sheet/glass/five, -/turf/open/floor/plasteel/tech/grid, -/area/ship/storage) "HN" = ( /obj/structure/sink{ dir = 1; @@ -5452,42 +5334,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/ship/crew/toilet) -"HP" = ( -/obj/structure/closet/emcloset/empty{ - anchored = 1; - can_be_unanchored = 1; - name = "oxygen closet" - }, -/obj/item/tank/internals/plasmaman/full, -/obj/item/tank/internals/plasmaman/full, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech/grid, -/area/ship/maintenance/starboard) -"HQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) "Ic" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -5515,6 +5361,38 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/engine) +"Ir" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/machinery/button/door{ + dir = 4; + id = "talos_armory"; + name = "Door Control"; + normaldoorcontrol = 1; + pixel_x = -29; + pixel_y = -6; + req_access_txt = "3" + }, +/obj/machinery/button/door{ + dir = 4; + id = "talos_armory"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -29; + pixel_y = 6; + req_access_txt = "3"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) "Iv" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -5566,31 +5444,6 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating/airless, /area/ship/cargo/port) -"IG" = ( -/obj/structure/chair/stool{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) -"IH" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/obj/item/trash/can, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) "IJ" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -5604,32 +5457,28 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) +"IR" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + id = "talos_cargo"; + locked = 1 + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_cargo" + }, +/turf/open/floor/engine/hull/reinforced, +/area/ship/cargo) "IT" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/opaque/yellow/line, /obj/effect/turf_decal/siding/thinplating, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/port) -"IY" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"Ja" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew/toilet) "Je" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -5652,6 +5501,40 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/airless, /area/ship/cargo/starboard) +"Jo" = ( +/obj/structure/cable{ + icon_state = "2-5" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/tank/mix_tank{ + dir = 8 + }, +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "talos_tank_fuel"; + pixel_x = 25; + pixel_y = 4; + req_access_txt = "24" + }, +/obj/machinery/button/door{ + color = "red"; + dir = 8; + id = "talos_tank_fuel"; + name = "Access Door Control (DANGER) (EXTREMELY DANGEROUS) (DO NOT PRESS)"; + pixel_x = 25; + pixel_y = -6; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) "Jq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -5679,6 +5562,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/port) +"JG" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_engine_vent"; + name = "Combustion Chamber Vent" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/engine/hull/reinforced, +/area/ship/engineering/engine) "JI" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/effect/decal/cleanable/dirt/dust, @@ -5686,87 +5578,81 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating/airless, /area/ship/maintenance/port) -"JT" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/crew) -"JZ" = ( -/obj/effect/turf_decal/box/corners, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) -"Kd" = ( +"JP" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) -"Ke" = ( -/obj/structure/table, -/obj/machinery/jukebox/boombox{ - pixel_x = -10 +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 9 }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 8 +/obj/machinery/firealarm/directional/north, +/obj/structure/rack, +/obj/item/melee/baton{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"Kf" = ( -/turf/open/floor/plasteel/dark, -/area/ship/storage) -"Kk" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 10; + pixel_y = 7 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/item/reagent_containers/spray/pepper{ + pixel_x = -1; + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) +"JT" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ship/crew) +"JU" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/ship/hallway/central) -"Kr" = ( /obj/structure/cable{ - icon_state = "1-4" + icon_state = "0-8" }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_tank_fuel" }, -/obj/machinery/light{ - dir = 8 +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "talos_tank_fuel" }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 8 +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/engine) +"JZ" = ( +/obj/effect/turf_decal/box/corners, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"Kd" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) +"Ke" = ( +/obj/structure/table, +/obj/machinery/jukebox/boombox{ + pixel_x = -10 }, -/obj/structure/sign/poster/contraband/inteq_nt{ - pixel_x = -32 +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"Kf" = ( +/turf/open/floor/plasteel/dark, +/area/ship/storage) "Ks" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5785,17 +5671,32 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/port) -"Kx" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/hatch, +"Kz" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/layer_manifold{ +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/port) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/autoname{ + dir = 10 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"KB" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/ship/cargo/port) "KF" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -5817,41 +5718,33 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"KK" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" - }, -/obj/effect/turf_decal/borderfloor{ +"KQ" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/hatch{ dir = 4 }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/starboard) +"KR" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, /turf/open/floor/plasteel/tech, -/area/ship/crew/canteen) -"KP" = ( -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +/area/ship/engineering) "KT" = ( /obj/structure/cable{ icon_state = "1-8" @@ -5882,30 +5775,6 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"Li" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/suit_storage_unit/inherit{ - req_access_txt = "1" - }, -/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/obj/item/tank/jetpack/oxygen, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Lm" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5927,37 +5796,12 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/plating, /area/ship/engineering) -"Lt" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/inherit{ - req_access_txt = "1" - }, -/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, -/obj/item/tank/jetpack/oxygen, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security/armory) "Lu" = ( /obj/machinery/atmospherics/components/binary/circulator/cold{ dir = 1 }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/engine) -"LD" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/poddoor{ - id = "talos_cargo" - }, -/turf/open/floor/engine/hull/reinforced, -/area/ship/cargo) "LF" = ( /obj/machinery/door/airlock/maintenance_hatch{ welded = 1 @@ -5992,37 +5836,6 @@ /obj/item/cigbutt, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"LN" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/grunge{ - name = "Cargo Bay" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"LP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) "LQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/opaque/yellow/warning, @@ -6031,6 +5844,18 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/external/dark) +"LS" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_engine_vent"; + name = "Combustion Chamber Vent" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/ship/engineering/engine) "LT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -6115,12 +5940,40 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"Mt" = ( -/obj/machinery/light/small{ - dir = 8 +"Mn" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plating/airless, -/area/ship/cargo/starboard) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/starboard) +"Mx" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/inherit{ + req_access_txt = "1" + }, +/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, +/obj/item/tank/jetpack/oxygen, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) "My" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6145,21 +5998,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/storage) -"MD" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - id = "talos_cargo"; - locked = 1 - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/poddoor{ - id = "talos_cargo" - }, -/turf/open/floor/engine/hull/reinforced, -/area/ship/cargo) "MK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -6172,6 +6010,17 @@ /obj/structure/closet/crate/secure/loot, /turf/open/floor/plating/airless, /area/ship/maintenance/port) +"MS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/hardline_small/right, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "MV" = ( /obj/structure/catwalk, /turf/open/floor/plating/airless, @@ -6186,53 +6035,24 @@ /obj/structure/ore_box, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"Nc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - normalspeed = 0; - req_access_txt = "10" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"Ne" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters" - }, +"MX" = ( +/obj/machinery/light/directional/east, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Nd" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plasteel/grimy, /area/ship/crew) "Nf" = ( /obj/structure/cable{ @@ -6250,30 +6070,30 @@ /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/plating/airless, /area/ship/cargo/starboard) +"Nj" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "talos_cargo"; + pixel_x = 25; + pixel_y = 4 + }, +/obj/machinery/button/door{ + dir = 8; + id = "talos_cargo"; + name = "Cargo Door Control"; + pixel_x = 25; + pixel_y = -6 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) "Nk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/opaque/yellow/warning, /turf/open/floor/engine/hull/reinforced, /area/ship/external/dark) -"Np" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) -"Nq" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/cigbutt, -/turf/open/floor/plating/airless, -/area/ship/maintenance/port) "NF" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6281,20 +6101,41 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/airless, /area/ship/maintenance/port) -"NI" = ( -/obj/machinery/door/poddoor{ - id = "talos_engine_vent"; - name = "Combustion Chamber Vent" +"NK" = ( +/turf/open/floor/engine/air, +/area/ship/engineering/engine) +"NN" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/trash/can, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"NW" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 1; + id = "talos_cargo"; + locked = 1 }, /obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_cargo" }, /turf/open/floor/engine/hull/reinforced, -/area/ship/engineering/engine) -"NK" = ( -/turf/open/floor/engine/air, -/area/ship/engineering/engine) +/area/ship/cargo) "NY" = ( /obj/structure/chair{ dir = 8 @@ -6319,45 +6160,17 @@ /obj/machinery/rnd/server, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) -"Ol" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"Oy" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/corner/opaque/yellow, +"Oq" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, /obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet/chestdrawer, -/obj/item/radio/intercom{ - dir = 4; - freerange = 1; - freqlock = 1; - frequency = 1347; - name = "IRMG shortwave intercom"; - pixel_x = -22 + dir = 4 }, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, -/area/ship/security) +/area/ship/crew/canteen) "OD" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -6371,6 +6184,17 @@ "OF" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) +"OK" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) "OM" = ( /obj/structure/cable{ icon_state = "1-8" @@ -6412,19 +6236,6 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating/airless, /area/ship/cargo/port) -"OX" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/telecomms/relay/preset/mining{ - freq_listening = list(1347); - id = "IRMG Relay"; - name = "IRMG Relay"; - network = "irmg_commnet" - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/ship/engineering/communications) "Pf" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -6453,6 +6264,18 @@ /obj/machinery/air_sensor/atmos/incinerator_tank, /turf/open/floor/engine/vacuum, /area/ship/engineering/engine) +"Ps" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) +"Pt" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/structure/closet/crate, +/turf/open/floor/plating/airless, +/area/ship/maintenance/starboard) "Py" = ( /obj/structure/cable{ icon_state = "1-2" @@ -6472,57 +6295,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"PE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) "PF" = ( /obj/structure/sign/number/one{ dir = 1 }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/port) -"PG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"PI" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) "PJ" = ( /obj/effect/turf_decal/techfloor{ dir = 1 @@ -6531,9 +6309,7 @@ /obj/machinery/shower{ dir = 8 }, -/obj/structure/sign/poster/official/moth/hardhats{ - pixel_y = 32 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) "PL" = ( @@ -6571,23 +6347,6 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"PP" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor{ - id = "talos_tank_fuel" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 1; - id = "talos_tank_fuel" - }, -/turf/open/floor/engine/hull/reinforced/interior, -/area/ship/engineering/engine) "PX" = ( /obj/structure/marker_beacon{ picked_color = "Yellow" @@ -6673,31 +6432,33 @@ /obj/structure/table, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"QD" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 8 +"Qy" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/engine/air, -/area/ship/engineering/engine) -"QF" = ( -/obj/machinery/light{ - dir = 8 +/obj/structure/door_assembly/door_assembly_mhatch{ + anchored = 1; + can_be_unanchored = 1; + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/yellow{ +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"QC" = ( +/obj/structure/chair/stool{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/brown{ +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) +"QD" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ dir = 8 }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/item/cigbutt, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) +/turf/open/floor/engine/air, +/area/ship/engineering/engine) "QR" = ( /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/brown{ @@ -6712,6 +6473,21 @@ /obj/structure/sign/number/eight, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) +"QU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + heat_capacity = 500; + name = "thermo-electric cooler" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer5{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) "QV" = ( /obj/structure/cable{ icon_state = "2-8" @@ -6732,20 +6508,10 @@ "QZ" = ( /obj/effect/turf_decal/industrial/fire{ dir = 4 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input, -/turf/open/floor/engine/vacuum, -/area/ship/engineering/engine) -"Rb" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating/airless, -/area/ship/cargo/starboard) + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input, +/turf/open/floor/engine/vacuum, +/area/ship/engineering/engine) "Rc" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 5 @@ -6781,15 +6547,42 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ship/maintenance/starboard) -"Rr" = ( -/obj/effect/turf_decal/industrial/warning{ +"Rs" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_mhatch{ + anchored = 1; + can_be_unanchored = 1; dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 +/turf/open/floor/plating/airless, +/area/ship/cargo/starboard) +"Rx" = ( +/obj/effect/turf_decal/industrial/fire/fulltile, +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/cryo) +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_tank_burn" + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "talos_tank_burn" + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/engine) +"Ry" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "RC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -6806,6 +6599,22 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"RF" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/analyzer{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/effect/turf_decal/number/zero, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "RL" = ( /obj/machinery/light_switch{ dir = 8; @@ -6820,12 +6629,26 @@ "RT" = ( /turf/open/floor/plating/airless, /area/ship/maintenance/port) -"Sf" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/port) +"RV" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/plasma, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/ship/cargo/port) +"RY" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/port) "Si" = ( /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 1 @@ -6841,17 +6664,19 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"Sn" = ( -/obj/machinery/vending/cola/random, -/obj/structure/sign/poster/contraband/inteq{ - pixel_x = 32 +"Sj" = ( +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/suit/space/hardsuit/engine, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/camera/autoname{ + dir = 6 }, -/obj/machinery/light{ +/obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "So" = ( /obj/structure/cable{ icon_state = "0-8" @@ -6871,32 +6696,16 @@ /obj/structure/window/reinforced{ dir = 8 }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "talos_thrusters_port" + }, /turf/open/floor/plating, /area/ship/engineering) "Su" = ( /obj/machinery/computer/mech_bay_power_console, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) -"Sw" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/item/instrument/harmonica, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) "SB" = ( /obj/structure/cable{ icon_state = "1-8" @@ -6921,6 +6730,11 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) +"SH" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/ship/maintenance/starboard) "SI" = ( /obj/structure/cable{ icon_state = "2-8" @@ -6942,6 +6756,21 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/port) +"SK" = ( +/obj/structure/closet/toolcloset/empty, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical, +/obj/item/rcl/pre_loaded, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel/tech/grid, +/area/ship/storage) +"SL" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "SN" = ( /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 1 @@ -6954,29 +6783,19 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"ST" = ( -/obj/machinery/door/poddoor{ - id = "talos_engine_vent"; - name = "Combustion Chamber Vent" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/engine/hull/reinforced, -/area/ship/engineering/engine) -"SV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/inteq_gec{ - pixel_y = 32 +"SS" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"SY" = ( +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "SZ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6992,29 +6811,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"Tb" = ( -/obj/structure/catwalk/over/plated_catwalk, -/obj/structure/railing, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/structure/closet/wall{ - dir = 4; - icon_door = "grey_wall"; - pixel_x = -32 - }, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/cryo) "Tg" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 @@ -7033,61 +6829,15 @@ }, /turf/open/floor/carpet/orange, /area/ship/bridge) -"Tp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) "Tq" = ( /obj/effect/turf_decal/box/corners, /obj/effect/landmark/start/medical_doctor, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) -"Ts" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/ship/security) "TA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"TB" = ( -/obj/machinery/door/poddoor{ - id = "talos_thrusters_port" - }, -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ship/engineering) "TC" = ( /obj/structure/cable{ icon_state = "0-8" @@ -7126,18 +6876,6 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating/airless, /area/ship/cargo/starboard) -"TJ" = ( -/obj/structure/chair/stool{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) "TK" = ( /obj/structure/window/reinforced{ dir = 4 @@ -7177,6 +6915,21 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/plating/airless, /area/ship/maintenance/starboard) +"TS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "TV" = ( /obj/structure/cable{ icon_state = "2-4" @@ -7185,37 +6938,26 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) -"TW" = ( -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer{ - anchored = 1; - locked = 0; - name = "fridge" - }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/obj/item/storage/cans/sixbeer, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_orange, -/obj/item/reagent_containers/food/snacks/popsicle/creamsicle_orange, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) "Ub" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/secure/loot, /turf/open/floor/plating/airless, /area/ship/maintenance/starboard) +"Uc" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/hardline_small/left, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "Ug" = ( /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 @@ -7228,6 +6970,9 @@ dir = 4; pixel_x = -12 }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) "Uh" = ( @@ -7283,15 +7028,6 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"Uo" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/storage) "Uq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7319,60 +7055,14 @@ }, /turf/open/floor/carpet/orange, /area/ship/bridge) -"Uv" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating/airless, -/area/ship/cargo/starboard) "Uy" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating/airless, /area/ship/maintenance/port) -"UC" = ( -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/security{ - id_tag = "talos_armory"; - name = "Armory"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) "UD" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/maintenance/port) -"UE" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) "UG" = ( /obj/machinery/button/door{ dir = 4; @@ -7403,6 +7093,25 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"UP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/port) "UQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/reagent_dispensers/watertank, @@ -7427,6 +7136,25 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"Ve" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/suit_storage_unit/inherit{ + req_access_txt = "1" + }, +/obj/item/clothing/suit/space/hardsuit/security/independent/inteq, +/obj/item/tank/jetpack/oxygen, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) "Vg" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -7444,6 +7172,27 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) +"Vk" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible/layer1{ + dir = 6 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Vp" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) "Vr" = ( /obj/item/trash/boritos, /turf/open/floor/plasteel/grimy, @@ -7459,46 +7208,30 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/crew) -"VF" = ( -/obj/machinery/button/door{ - dir = 4; - id = "talos_tank_burn"; - name = "Access Door Control"; - pixel_x = -25; - pixel_y = -6; - req_access = null; - req_access_txt = "56" - }, -/obj/machinery/button/shieldwallgen{ - dir = 4; - id = "talos_tank_burn"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "56" - }, +"VG" = ( /obj/structure/cable{ - icon_state = "5-10" + icon_state = "4-8" }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/sign/warning/fire{ - pixel_x = -36; - pixel_y = -4 - }, -/obj/structure/sign/warning{ - pixel_x = -40; - pixel_y = 9 + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"VO" = ( +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "VS" = ( /obj/effect/turf_decal/trimline/opaque/yellow/line{ dir = 1 @@ -7507,6 +7240,7 @@ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) "VX" = ( @@ -7544,6 +7278,23 @@ /obj/structure/sign/warning/vacuum/external, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo/starboard) +"Wh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/port) "Wp" = ( /obj/structure/window/reinforced{ dir = 4 @@ -7557,15 +7308,51 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/grid, /area/ship/security/armory) -"Wx" = ( -/obj/machinery/light{ +"Wr" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/ship/maintenance/starboard) +"Wz" = ( +/obj/machinery/computer/helm{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/effect/turf_decal/corner/opaque/brown{ dir = 4 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/wideband/directional/east, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"WC" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet/black, +/area/ship/crew/dorm) +"WF" = ( +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"WG" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/obj/item/trash/can, +/obj/item/cigbutt, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/security) "WH" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer4, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -7587,12 +7374,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"WP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ship/maintenance/port) "WR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -7608,35 +7389,15 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) -"Xb" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/hatch, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/starboard) -"Xc" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/structure/rack, -/obj/machinery/light, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/item/pickaxe/mini, -/obj/item/pickaxe/mini, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo) "Xg" = ( /turf/open/floor/carpet/black, /area/ship/crew/dorm) +"Xl" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Xn" = ( /obj/structure/cable{ icon_state = "2-9" @@ -7657,15 +7418,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) -"Xv" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew/toilet) "XA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ dir = 8 @@ -7674,18 +7426,7 @@ pixel_x = 32 }, /turf/open/floor/engine/fuel, -/area/ship/engineering/engine) -"XB" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/door_assembly/door_assembly_mhatch{ - anchored = 1; - can_be_unanchored = 1 - }, -/turf/open/floor/plating/airless, -/area/ship/maintenance/port) +/area/ship/engineering/engine) "XH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull/reinforced, @@ -7693,30 +7434,23 @@ "XJ" = ( /turf/open/floor/engine/hull/reinforced, /area/ship/external/dark) -"XU" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"XW" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"XV" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/machinery/light/directional/south, +/obj/structure/closet/secure_closet{ + anchored = 1; + can_be_unanchored = 1; + icon_state = "sec"; + name = "equipment locker"; + req_access_txt = "1" }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/starboard) +/obj/item/clothing/mask/gas/sechailer/inteq, +/obj/item/storage/belt/security/webbing/inteq, +/obj/item/clothing/glasses/hud/security/sunglasses/inteq, +/obj/item/storage/box/handcuffs, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) "Ya" = ( /obj/effect/turf_decal/industrial/traffic, /obj/structure/cable{ @@ -7760,49 +7494,57 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"Yx" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Yz" = ( +/obj/item/clothing/glasses/hud/security/sunglasses/inteq, +/obj/item/clothing/mask/gas/sechailer/inteq, +/obj/item/clothing/gloves/tackler/combat/insulated, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military/assault, +/obj/item/storage/backpack/messenger/inteq, +/obj/item/megaphone/command, +/obj/item/clothing/under/syndicate/inteq/skirt, +/obj/item/clothing/under/syndicate/inteq, +/obj/item/clothing/suit/armor/hos/inteq, +/obj/item/clothing/head/beret/sec/hos/inteq, +/obj/item/areaeditor/shuttle, +/obj/item/shield/riot/tele, +/obj/structure/closet/secure_closet{ + anchored = 1; + can_be_unanchored = 1; + icon_state = "cap"; + name = "vanguard's locker"; + req_access_txt = "20" }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 }, -/obj/machinery/camera/autoname{ - dir = 10 +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "YC" = ( /obj/structure/table, /obj/item/flashlight/lamp/green, /turf/open/floor/carpet/black, /area/ship/crew/dorm) -"YH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, +"YI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/ship/maintenance/starboard) +"YU" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/engine) -"YI" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating/airless, /area/ship/maintenance/starboard) "YX" = ( @@ -7810,21 +7552,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/ship/cargo/starboard) -"YY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew/toilet) "YZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -7846,6 +7573,28 @@ }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/storage) +"Zd" = ( +/obj/machinery/door/airlock{ + dir = 4; + name = "Dormitory" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/dorm) "Ze" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/firecloset, @@ -7875,36 +7624,68 @@ }, /turf/open/floor/engine/vacuum, /area/ship/engineering/engine) -"Zp" = ( -/obj/item/storage/backpack/messenger/inteq, -/obj/item/storage/backpack/messenger/inteq, -/obj/item/storage/backpack/messenger/inteq, -/obj/item/clothing/head/beret/sec/inteq, -/obj/item/clothing/head/beret/sec/inteq, -/obj/item/clothing/head/beret/sec/inteq, -/obj/item/clothing/head/soft/inteq, -/obj/item/clothing/head/soft/inteq, -/obj/item/clothing/head/soft/inteq, -/obj/structure/closet{ - icon_door = "orange"; - name = "inteq wardrobe" +"Zn" = ( +/obj/structure/closet/emcloset/empty{ + anchored = 1; + can_be_unanchored = 1; + name = "oxygen closet" }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +/obj/item/tank/internals/plasmaman/full, +/obj/item/tank/internals/plasmaman/full, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/turf/open/floor/carpet/black, -/area/ship/crew/dorm) +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"Zo" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/yellow/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "Zq" = ( /obj/effect/turf_decal/corner/opaque/yellow, /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) +"Zu" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/autolathe, +/obj/item/stack/sheet/metal/five, +/obj/item/stack/sheet/glass/five, +/turf/open/floor/plasteel/tech/grid, +/area/ship/storage) +"ZB" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew/toilet) "ZE" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ @@ -7916,33 +7697,22 @@ /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer1, /turf/open/floor/plasteel/tech, /area/ship/engineering/engine) -"ZL" = ( -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "4-8" +"ZJ" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating/airless, -/area/ship/maintenance/starboard) -"ZT" = ( /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/plating, +/area/ship/engineering/engine) +"ZU" = ( +/obj/machinery/light/directional/west, +/obj/machinery/computer/rdconsole/core{ dir = 4 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) +/turf/open/floor/plasteel/tech/grid, +/area/ship/storage) "ZV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -7967,10 +7737,10 @@ sw sw tA OF -gE -TB -ku -ll +Ry +sZ +sZ +SL OF tA sw @@ -7979,10 +7749,10 @@ sw sw ie pU -jy -gV -uY -ze +Xl +ZJ +ZJ +ZJ pU ie sw @@ -8039,14 +7809,14 @@ UM lO tb KI -za +cn pU -ST -NI -ST +JG +LS +JG pU pU -Ee +Vk Qt dl pm @@ -8068,9 +7838,9 @@ sw sw vE OF -iQ +jf ak -XU +Uc hO Fu Lo @@ -8085,9 +7855,9 @@ Bb WL Lu ou -id +FK +pU pU -ie sw sw MV @@ -8104,9 +7874,9 @@ sV sV sV AO -GK +cj ek -IY +jS AZ ge Zl @@ -8119,7 +7889,7 @@ jT lA cF xK -pl +QU ao ao ao @@ -8131,16 +7901,16 @@ sw (6,1,1) = {" cV sV -Uo -rW -HM -ws +ZU +eC +Zu +SK Ok sV -lg -oK +HB +MS yL -xs +RF TC ge Ma @@ -8148,7 +7918,7 @@ Gr QZ lS RC -Dp +Jo Qu su qr @@ -8156,7 +7926,7 @@ vX em jH yc -jN +ms xz ls ao @@ -8171,25 +7941,25 @@ My LT zz sV -HH +Sj Qq ek -UE +ud xo pU -Dj -zy -ad +Rx +gR +nt pU -Fa +Dc pU -AX -PP +JU +bA pU -dg -De +lq +mJ ao -Tp +tu ap ag Oi @@ -8206,7 +7976,7 @@ iW om CP dh -aq +KR GY Cs tG @@ -8214,7 +7984,7 @@ cA PL TD vv -VF +zH LJ rk hl @@ -8227,7 +7997,7 @@ qc wx cT Oi -tz +Gz ao "} (9,1,1) = {" @@ -8237,19 +8007,19 @@ Rc Tg Tg MC -ED +zR sV -yD -Gs +jY +gk iE Xn gP qh -YH -jO -jo -uD -jV +MX +gG +Fo +Dg +qT rk XA vF @@ -8267,16 +8037,16 @@ ao (10,1,1) = {" cV sV -zS +au fo -Co -av +Hl +jJ sV sV sW sW sW -rs +zK xn xI xI @@ -8291,10 +8061,10 @@ pU NK NK ao -kv +yr tO LV -OX +bF ao vp "} @@ -8311,22 +8081,22 @@ YC yb sW OF -hk +jZ xI Yt IJ Ug -pF +pD sT Mf -im +NN xI pU NK NK ao -un -aC +sc +jW ao ao WW @@ -8338,22 +8108,22 @@ sw sw cV sW -Zp -sk +zf +GG tr Xg -Et +Ps sW -HJ +eT ft xI -PI +Oq kD kD EL Qx sA -cI +VO xI pU pU @@ -8375,13 +8145,13 @@ sW mL RL ow -ut +WC GR sW PJ AD xI -TW +pu kD tF rP @@ -8391,7 +8161,7 @@ Zq xI vJ vJ -et +ZB An la sw @@ -8408,12 +8178,12 @@ JT sW sW sW -qV +Zd sW sW sW jX -Nc +di xI sF kD @@ -8421,11 +8191,11 @@ Ke BJ nZ jp -KP +SY xI -Ja +eW ne -Xv +xB qo la sw @@ -8441,23 +8211,23 @@ sw mU hg Um -Wx +Nd dZ Vj -gl +hQ Bv hG -Kk +kW xI -qq +nS Ep CA gS Qx Qx -gU +WF xI -Er +fE HN hT hT @@ -8481,9 +8251,9 @@ wB zT Vz iN -ZT +yo xI -mc +hc vn Gx wy @@ -8491,7 +8261,7 @@ NY yz vT xI -YY +rc cD hT wD @@ -8515,20 +8285,20 @@ GL nl Vz iN -PG +jU xI xI xI xI -KK +sY Uh Uh xI xI -AS +eO la hT -PE +Zo Fe zw sw @@ -8550,15 +8320,15 @@ ue KY rv bx -qt -mr +tT +BY vQ LU pZ gz Fm Py -Kr +mV Ui Fp Gm @@ -8575,29 +8345,29 @@ sw sw sw mU -Bg +nT nl dZ Vr -Sn -mD +Cp +SS Bv -rh -gF +wY +nJ SC SC mC iZ SC -pS -lG +gr +qm eK xD xc mi ce Xs -jM +He hT sw sw @@ -8610,9 +8380,9 @@ sw sw JT Bv -DK +fY zV -IH +rj mX mX mX @@ -8620,8 +8390,8 @@ mX mX CF CF -CH -LN +bb +gN CF CF hT @@ -8645,25 +8415,25 @@ sw sw JT Bv -Ne +aM Bv mX no -cB -Li +Yz +pf mX -ja -fS +uv +lB xf KF BS -Xc +bX hT -SV +sq Rg Hq sM -Np +bI ug Hq sw @@ -8728,11 +8498,11 @@ MW Dr bN iN -eB +VG Hq -yC +JP oR -sf +Gt Hq sw sw @@ -8748,7 +8518,7 @@ sw sw lC ae -Sf +bU mX Us WR @@ -8759,14 +8529,14 @@ nh iy qB Oc -As +HD hT VS -Yx +Kz Hq ey Kd -oq +XV Hq sw sw @@ -8796,7 +8566,7 @@ gZ DC bN iN -LP +TS Hq wu Iv @@ -8818,7 +8588,7 @@ lC Ks Zj mX -gB +pL dE Ax Lc @@ -8832,9 +8602,9 @@ bN LM Rg Hq -Lt +Mx tp -TJ +QC Hq sw sw @@ -8849,26 +8619,26 @@ sw sw sw lC -Di -FW +UP +gp mX -ok -tn -AV +lQ +Wz +os mX -HF +zu sa up Ya OD -FH +Nj hT -cc +iN Rg Hq -yd +Ve AC -IG +oo Hq sw sw @@ -8883,25 +8653,25 @@ sw lC lC lC -dB -dR +lF +GN mX mX mX mX mX CF -MD -DU -LD -rt +IR +AK +sQ +NW CF hT -HQ -hV +Dl +jl Hq Hq -UC +xb Hq Hq mK @@ -8916,12 +8686,12 @@ sw sw zE sJ -tJ +yn qe Jz xj -Tb -uF +qs +Dq eu xj fC @@ -8934,11 +8704,11 @@ hT DY Rg mK -QF +cR rJ PY -jz -Oy +Ir +xT Wf sw sw @@ -8949,7 +8719,7 @@ sw sw sw lC -Sw +tq AA wc Jz @@ -8972,7 +8742,7 @@ Hh pk Lm eN -ed +Dd mK sw sw @@ -8990,7 +8760,7 @@ JC ID FL jP -jx +ul xj xV XH @@ -9017,14 +8787,14 @@ sw sw sw lC -AF +Ds lt Ga -aL +ta xj -yF +Cu dk -Rr +yj xj sw PX @@ -9033,7 +8803,7 @@ rB VX sw hT -Ol +oW fg mK kM @@ -9053,27 +8823,27 @@ sw Ye yp jj -tL +Gl yp xj -uV -ES +gT +OK Cy xj sw sw sw -sw +AB sw sw uI si -XW +iu uI -Ts +gY as QR -ki +WG mK WW sw @@ -9120,8 +8890,8 @@ sw sw sw vi -tB -FA +Zn +Wh yp AL Aa @@ -9135,10 +8905,10 @@ sw sw sw uI -HP -vt +FO +Mn uI -aB +Pt uI Ng CJ @@ -9155,11 +8925,11 @@ sw sw Dw yp -Kx +RY yp yp yp -JI +jt yp yp sw @@ -9170,7 +8940,7 @@ sw sw uI uI -Xb +KQ uI TO uI @@ -9194,7 +8964,7 @@ nH Ex RT fr -hZ +Vp yp sw sw @@ -9208,7 +8978,7 @@ Nf oD oS uI -wo +Wr pb ab sw @@ -9259,7 +9029,7 @@ UD yp yp yp -XB +Qy yp yp yp @@ -9274,7 +9044,7 @@ uI uI uI uI -ZL +YU uI uI uI @@ -9341,7 +9111,7 @@ sw uI uI uI -ax +ub uI uI uI @@ -9361,9 +9131,9 @@ sw yp uo JI -Nq +Fh TE -WP +wU UQ yp sw @@ -9376,7 +9146,7 @@ uI pG BN QV -pa +SH Ho hm uI @@ -9396,7 +9166,7 @@ Pp Pp Pp Pp -js +tK Pp Pp Pp @@ -9409,7 +9179,7 @@ sw fK fK fK -eV +mI fK fK fK @@ -9442,7 +9212,7 @@ sw sw fK YZ -Mt +hw ff fK ti @@ -9462,7 +9232,7 @@ sw sw Pp Pp -ox +sl Pp Pp Pp @@ -9531,7 +9301,7 @@ Pf Ap Pp Pp -cp +yU Pp Pp Pp @@ -9545,7 +9315,7 @@ sw fK fK fK -BV +Rs fK fK fK @@ -9601,7 +9371,7 @@ Pp Wd sC Pp -cL +RV CN Pp sw @@ -9612,7 +9382,7 @@ sw sw fK fK -Rb +ef fK fK fK @@ -9632,7 +9402,7 @@ sw Fi sw Pp -FU +KB iO LF Wd @@ -9645,7 +9415,7 @@ sw sw sw fK -jC +dD GQ Jk If @@ -9680,7 +9450,7 @@ sw sw sy fK -Uv +Gq If YZ fK @@ -9736,7 +9506,7 @@ sw sw Ap od -jm +ck Pp sw sw @@ -9749,7 +9519,7 @@ sw sw sw fK -fQ +dv Wg sy sw @@ -9760,3 +9530,37 @@ sw sw sw "} +(54,1,1) = {" +sw +sw +sw +sw +sw +sw +sw +sw +sw +jd +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +"} diff --git a/_maps/shuttles/shiptest/minutemen_asclepius.dmm b/_maps/shuttles/shiptest/minutemen_asclepius.dmm index 685c9153cd19..dc5ea25666dd 100644 --- a/_maps/shuttles/shiptest/minutemen_asclepius.dmm +++ b/_maps/shuttles/shiptest/minutemen_asclepius.dmm @@ -1,40 +1,25 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/directional/east, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/item/camera, +/obj/item/firing_pin, +/obj/item/folder/red, +/obj/item/taperecorder, +/turf/open/floor/carpet/red, +/area/ship/security) "ae" = ( /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, /turf/open/floor/plating, /area/ship/engineering) -"ak" = ( -/obj/structure/table/reinforced, -/obj/effect/gibspawner/larva, -/obj/item/organ/heart/gland/spiderman{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/research_notes/loot/small{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/flashlight/pen{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/scalpel{ - pixel_y = 19 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = -32 - }, -/obj/item/organ/alien/plasmavessel/small, -/obj/item/bodypart/head/alien{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) "am" = ( /obj/machinery/door/airlock/medical{ name = "Mourge" @@ -47,47 +32,25 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/ship/medical/morgue) -"aq" = ( -/obj/structure/chair/office{ - dir = 8; - name = "tactical swivel chair" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 23; - pixel_y = 9 - }, -/obj/machinery/light_switch{ - pixel_x = 20; +"ay" = ( +/obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/hallway/central) -"av" = ( -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -32 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, +/obj/effect/turf_decal/steeldecal/steel_decals1, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white/corner{ - dir = 4 +/obj/machinery/door/poddoor/shutters/preopen{ + id = "asclepius_reception_lockdown"; + name = "Lockdown Shutters" }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) "aJ" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) @@ -114,6 +77,17 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, /area/ship/crew/office) +"aU" = ( +/obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/machinery/medical_kiosk, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) "aW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -128,48 +102,6 @@ }, /turf/open/floor/carpet/red, /area/ship/security) -"aX" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4; - color = "#808080" - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -21; - dir = 4; - pixel_y = 8 - }, -/obj/machinery/button/door{ - dir = 4; - id = "asclepius_reception_lockdown"; - name = "Reception Lockdown"; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"bc" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "be" = ( /obj/machinery/computer/helm{ dir = 8 @@ -180,53 +112,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"bn" = ( -/obj/structure/table/reinforced, -/obj/item/stack/medical/splint{ - pixel_x = 8 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -10; - pixel_y = 5 - }, -/obj/machinery/door/window/eastright{ - dir = 2 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/office) "bp" = ( /obj/structure/sign/number/eight, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) -"bq" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "bx" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 @@ -243,20 +132,6 @@ "bG" = ( /turf/open/floor/engine/plasma, /area/ship/engineering) -"bM" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/machinery/computer/cryopod{ - dir = 8; - pixel_x = 21 - }, -/obj/effect/turf_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew) "bQ" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 9 @@ -303,24 +178,31 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"cj" = ( -/obj/effect/turf_decal/corner_techfloor_gray/diagonal{ - dir = 8 +"ce" = ( +/obj/structure/table/glass, +/obj/machinery/door/window/southleft{ + dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 5 +/obj/item/reagent_containers/glass/bottle/diethylamine{ + pixel_x = 6; + pixel_y = 4 }, -/obj/machinery/light/small{ - dir = 4 +/obj/item/reagent_containers/glass/bottle/polonium{ + pixel_x = -4; + pixel_y = 4 }, -/obj/item/circuitboard/machine/rdserver{ - pixel_x = -6; - pixel_y = 6 +/obj/item/reagent_containers/glass/bottle/ethanol{ + pixel_x = 1 }, -/obj/item/circuitboard/computer/rdconsole, -/obj/structure/closet/crate/science, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) +/obj/item/reagent_containers/glass/bottle/hydrogen{ + pixel_x = -9 + }, +/obj/item/reagent_containers/glass/bottle/carbon{ + pixel_x = 11 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/surgery) "ck" = ( /obj/item/rcl/ghetto{ pixel_x = 6; @@ -383,32 +265,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"cK" = ( -/obj/effect/turf_decal/siding/white{ +"dh" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/effect/turf_decal/siding/white, -/obj/machinery/door/airlock/hatch, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"dk" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 5 }, -/turf/open/floor/plasteel, -/area/ship/crew/office) -"cQ" = ( -/obj/effect/turf_decal/siding/white, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/emcloset/wall{ + pixel_y = 28 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -418,98 +289,29 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -20 +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"cS" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/stamp/cmo{ - pixel_x = 6; - pixel_y = 9 +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"dl" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/obj/item/stamp{ - pixel_x = 6; - pixel_y = 4 +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/item/stamp/denied{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/pen{ - pixel_y = 3; - pixel_x = -6 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "asclepius_reception_lockdown"; - name = "Lockdown Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"dd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/morgue) -"dh" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"dk" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/emcloset/wall{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/machinery/door/window/eastleft{ + name = "Engine Access" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/door/poddoor{ + id = "asclepius_engineering_shutters"; + name = "Engineering Blast Doors"; dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/tech/techmaint, +/turf/open/floor/plating, /area/ship/engineering) -"du" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/techfloor{ - dir = 6 - }, -/obj/machinery/recharger{ - pixel_y = 2; - pixel_x = 7 - }, -/obj/item/desk_flag{ - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/areaeditor/shuttle{ - pixel_x = -1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) "dJ" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 4 @@ -526,23 +328,39 @@ /obj/structure/sign/minutemen, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical/surgery) -"ei" = ( -/obj/effect/turf_decal/techfloor, -/obj/effect/turf_decal/techfloor{ - dir = 1 +"dY" = ( +/obj/machinery/vending/cigarette, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel{ + icon_state = "ridged" }, -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/suit/space/hardsuit/combatmedic, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/gas/sechailer, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 +/area/ship/hallway/central) +"el" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 }, -/obj/machinery/camera/autoname{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + 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/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/engineering) "eo" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -560,6 +378,38 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel, /area/ship/hallway/central) +"eU" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/door/poddoor{ + id = "asclepius_engineering_shutters"; + name = "Engineering Blast Doors"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"eW" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_scanner{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/clothing/glasses/science{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/surgery) "fb" = ( /obj/structure/sign/number/one, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -576,37 +426,14 @@ }, /turf/open/floor/wood, /area/ship/crew) -"fz" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/industrial/warning{ - dir = 4; - color = "#808080" - }, -/turf/open/floor/engine{ - icon_state = "reinforced" - }, -/area/ship/medical) -"fL" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ - dir = 6 - }, -/obj/machinery/button/door{ - id = "asclepius_extcargo"; - name = "Cargo hatch"; - pixel_x = 23; - pixel_y = 10; - dir = 8 - }, -/obj/machinery/button/shieldwallgen{ - id = "asclepius_cargoholo"; - pixel_x = 21; - dir = 8 +"fx" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 }, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) +/obj/machinery/camera/autoname, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "fU" = ( /obj/machinery/computer/crew/syndie{ dir = 1 @@ -619,6 +446,27 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech/grid, /area/ship/medical/morgue) +"fY" = ( +/obj/structure/railing{ + dir = 1; + layer = 4.1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals3, +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "ga" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -627,30 +475,45 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"gx" = ( -/obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ - dir = 1 +"gm" = ( +/obj/effect/turf_decal/corner_techfloor_gray/diagonal{ + dir = 8 }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 +/obj/effect/turf_decal/industrial/warning{ + dir = 5 }, -/obj/machinery/status_display/shuttle{ - pixel_y = 32 +/obj/machinery/light/small/directional/east, +/obj/item/circuitboard/machine/rdserver{ + pixel_x = -6; + pixel_y = 6 }, -/obj/machinery/medical_kiosk, -/turf/open/floor/plasteel/patterned/dirty, +/obj/item/circuitboard/computer/rdconsole, +/obj/structure/closet/crate/science, +/turf/open/floor/plasteel/dark, /area/ship/cargo) -"gJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 +"gw" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/clothing/gloves/color/latex{ + pixel_y = -4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/turf_decal/corner/opaque/blue/full, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = -3; + pixel_y = 9 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) -"gL" = ( +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"gE" = ( /obj/structure/railing{ layer = 4.1 }, @@ -658,10 +521,7 @@ dir = 6 }, /obj/effect/turf_decal/industrial/loading, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /obj/effect/decal/cleanable/xenoblood/xgibs/larva, /obj/item/stack/sheet/animalhide/xeno, /obj/effect/decal/cleanable/xenoblood/xgibs, @@ -673,28 +533,39 @@ icon_state = "steel_dirty" }, /area/ship/medical/morgue) -"gO" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +"gG" = ( +/obj/effect/turf_decal/trimline/opaque/bottlegreen/line, +/obj/structure/chair/greyscale{ + dir = 1 }, -/obj/effect/turf_decal/techfloor/hole/right{ - dir = 4 +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/decal/cleanable/blood/old, +/obj/item/trash/candy{ + layer = 2.5; + pixel_x = 7; + pixel_y = 2 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"gP" = ( -/obj/machinery/light{ +/obj/effect/turf_decal/minutemen{ dir = 1 }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) +"gJ" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/techfloor{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/structure/noticeboard{ - pixel_y = 30 +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) +"gQ" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/steeldecal/steel_decals3, +/obj/effect/turf_decal/steeldecal/steel_decals_central6{ + pixel_y = -4 }, /turf/open/floor/plasteel/dark, /area/ship/cargo) @@ -703,30 +574,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/ship/crew) -"hc" = ( -/obj/structure/closet/wall{ - dir = 1; - pixel_y = -28 - }, -/obj/item/reagent_containers/syringe/contraband/methamphetamine, -/obj/item/reagent_containers/syringe/contraband/fentanyl{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/reagent_containers/syringe/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/glass{ - pixel_x = -9; - pixel_y = 5; - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/central) "hh" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 8 @@ -734,6 +581,19 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/mono/dark, /area/ship/medical/surgery) +"hi" = ( +/obj/effect/turf_decal/corner/opaque/blue/three_quarters{ + dir = 4 + }, +/obj/structure/bed/roller, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/structure/sign/departments/examroom{ + pixel_y = 25 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical) "hr" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -746,14 +606,48 @@ icon_state = "wood-broken6" }, /area/ship/hallway/central) -"hz" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/machinery/firealarm{ - pixel_y = 22; - pixel_x = -10 +"hu" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/machinery/light/directional/west, +/obj/item/paicard{ + pixel_x = 5; + pixel_y = 18 + }, +/turf/open/floor/wood, /area/ship/crew) +"hF" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel, +/area/ship/crew/office) "hG" = ( /obj/structure/filingcabinet/security{ pixel_x = -10 @@ -777,28 +671,22 @@ /obj/item/spacecash/bundle/c100, /turf/open/floor/wood, /area/ship/bridge) -"hJ" = ( -/obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 +"hH" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 }, -/obj/effect/turf_decal/steeldecal/steel_decals1, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/obj/machinery/light{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "asclepius_reception_lockdown"; - name = "Lockdown Shutters" +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 20 }, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) +/turf/open/floor/plasteel, +/area/ship/hallway/central) "hL" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 10 @@ -808,102 +696,37 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"hM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/minutemen/middle, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) -"hN" = ( -/obj/structure/table/wood, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/bottle/kahlua{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -21; - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/bridge) -"hO" = ( -/obj/machinery/sleeper, -/obj/effect/turf_decal/industrial/outline, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"ib" = ( -/obj/item/clothing/gloves/color/latex/nitrile/evil, -/obj/item/storage/belt/medical/webbing, -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/secure_closet/medical3{ - anchored = 1 - }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/crew/office) -"im" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/chair/stool{ - dir = 1; - pixel_y = 12; - pixel_x = -5 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"ip" = ( -/obj/structure/table/reinforced, -/obj/item/detective_scanner{ - pixel_y = 8 - }, -/obj/item/pen/survival{ - pixel_x = -4 - }, -/obj/structure/sign/warning/chemdiamond{ - pixel_x = -32 - }, -/obj/item/storage/firstaid/toxin{ - pixel_y = 1; - pixel_x = 10 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/organ/liver/alien{ - pixel_y = -11; - pixel_x = -4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) -"iy" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/turf/open/floor/plasteel/white, +/area/ship/medical) +"hO" = ( +/obj/machinery/sleeper, +/obj/effect/turf_decal/industrial/outline, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"ib" = ( +/obj/item/clothing/gloves/color/latex/nitrile/evil, +/obj/item/storage/belt/medical/webbing, +/obj/machinery/airalarm/directional/north, +/obj/structure/closet/secure_closet/medical3{ + anchored = 1 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/turf/open/floor/plasteel/patterned/ridged, +/area/ship/crew/office) "iH" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical/morgue) +"iL" = ( +/obj/structure/chair/office{ + dir = 8; + name = "tactical swivel chair" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/central) "iP" = ( /obj/effect/turf_decal/siding/white/corner{ dir = 1 @@ -915,22 +738,34 @@ /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plasteel, /area/ship/crew/office) -"jh" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 5 +"iQ" = ( +/obj/machinery/door/airlock/medical/glass{ + dir = 4 }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "asclepius_medbay_lockdown"; + name = "Lockdown Shutters" }, -/obj/structure/cable{ - icon_state = "0-8" +/turf/open/floor/plasteel/patterned/monofloor, +/area/ship/cargo) +"iX" = ( +/obj/machinery/suit_storage_unit/inherit, +/obj/effect/turf_decal/industrial/warning/cee{ + dir = 1 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/hardsuit/security/independent, +/turf/open/floor/plasteel/dark, +/area/ship/security) "jl" = ( /obj/structure/railing{ layer = 4.1 @@ -947,23 +782,17 @@ icon_state = "steel_dirty" }, /area/ship/medical/morgue) -"jn" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"jm" = ( +/obj/machinery/cryopod{ + dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/machinery/computer/cryopod/directional/east, +/obj/effect/turf_decal/industrial/warning/cee{ dir = 1 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) "jo" = ( /obj/structure/closet/wall/white/med{ name = "Chemistry Tools"; @@ -1032,28 +861,6 @@ "jG" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical/surgery) -"jO" = ( -/obj/structure/table/glass, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_y = 9; - pixel_x = -4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 6 - }, -/obj/item/reagent_containers/glass/bottle/dexalin{ - pixel_y = 3; - pixel_x = 8 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "jR" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -1093,42 +900,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"ks" = ( -/obj/structure/railing{ - dir = 1; - layer = 4.1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/steeldecal/steel_decals3, -/obj/effect/turf_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/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/ship/bridge) -"kt" = ( -/obj/effect/turf_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters{ - id = "asclepius_intcargo"; - name = "Cargo Hatch" - }, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) -"ku" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) "kx" = ( /obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel/tech/grid, @@ -1149,30 +920,34 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) -"lo" = ( -/obj/structure/table/reinforced, -/obj/item/storage/pill_bottle/dice{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/flask/det{ - pixel_y = 4; - pixel_x = -6 +"kV" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_x = 2; - pixel_y = -7 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/machinery/light/directional/west{ + light_color = "#e8eaff" }, -/turf/open/floor/plasteel/grimy, +/turf/open/floor/plasteel, /area/ship/hallway/central) +"kW" = ( +/obj/effect/turf_decal/corner_techfloor_gray/diagonal{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/stack/wrapping_paper, +/obj/item/sales_tagger, +/obj/item/pushbroom, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "lr" = ( /obj/structure/bodycontainer/morgue{ dir = 2 @@ -1190,41 +965,22 @@ "lu" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew/office) -"lM" = ( +"lx" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light/small{ - 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/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ + dir = 1 }, -/obj/structure/tank_dispenser/oxygen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/closet/firecloset, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) "lR" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew) -"lU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light_switch{ - pixel_x = -22; - dir = 4; - pixel_y = 12 - }, -/turf/open/floor/plasteel/white{ - icon_state = "ridged" - }, -/area/ship/medical) "lW" = ( /obj/effect/decal/cleanable/robot_debris{ color = "#808080" @@ -1242,97 +998,37 @@ pixel_x = -4; pixel_y = 1 }, -/obj/effect/decal/cleanable/greenglow{ - color = "#808080" - }, -/obj/item/trash/cheesie{ - color = "#808080"; - pixel_x = 21; - pixel_y = 1 - }, -/obj/structure/railing{ - layer = 4.1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black, -/obj/effect/decal/fakelattice{ - color = "#808080" - }, -/turf/open/floor/plasteel/elevatorshaft{ - color = "#808080" - }, -/area/ship/hallway/central) -"lY" = ( -/obj/machinery/autolathe, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/item/radio/intercom{ - pixel_x = -21; - dir = 4; - pixel_y = -5 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -23; - pixel_y = 8 - }, -/obj/item/stack/sheet/metal/twenty{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/stack/sheet/glass/twenty, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/engineering) -"lZ" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/door/poddoor{ - id = "asclepius_engineering_shutters"; - name = "Engineering Blast Doors" - }, -/turf/open/floor/plating, -/area/ship/engineering) -"mf" = ( -/obj/machinery/chem_master, -/obj/machinery/camera/autoname, -/obj/item/toy/figure/chemist{ - pixel_y = 16; - pixel_x = -5 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 22; - pixel_y = -8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) -"mF" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4; - pixel_x = 7 +/obj/effect/decal/cleanable/greenglow{ + color = "#808080" }, -/obj/item/paper/pamphlet/violent_video_games{ - pixel_y = 3; - pixel_x = -1 +/obj/item/trash/cheesie{ + color = "#808080"; + pixel_x = 21; + pixel_y = 1 }, /obj/structure/railing{ - dir = 8; layer = 4.1 }, -/turf/open/floor/carpet/red, -/area/ship/security) +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/effect/decal/fakelattice{ + color = "#808080" + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/hallway/central) +"mt" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 20 + }, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/machinery/vending/cola, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "mI" = ( /obj/effect/turf_decal/corner/opaque/blue/full, /obj/machinery/stasis, @@ -1361,6 +1057,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"mQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-04"; + pixel_x = -7; + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/ship/crew) +"mR" = ( +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/storage/bag/trash{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "mT" = ( /obj/effect/turf_decal/corner/opaque/blue/full, /obj/machinery/vending/medical/syndicate_access, @@ -1374,6 +1091,19 @@ }, /turf/open/floor/engine/plasma, /area/ship/engineering) +"ne" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/decal/cleanable/plasma, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/number/zero{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "ni" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew) @@ -1397,19 +1127,6 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) -"no" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 6; - color = "#808080" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/engine{ - icon_state = "reinforced" - }, -/area/ship/medical) "nt" = ( /obj/effect/turf_decal/siding/white, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1426,29 +1143,42 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"nv" = ( -/obj/structure/railing{ - dir = 1; - layer = 4.1 +"nw" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 +/obj/item/flashlight/lamp{ + pixel_x = -8; + pixel_y = 13 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/item/pen{ + pixel_x = 5; + pixel_y = 1 }, -/obj/machinery/light, -/obj/structure/sign/poster/contraband/xenofauna_parasite{ - pixel_y = -32 +/obj/item/folder/yellow{ + pixel_x = 7; + pixel_y = 5 }, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 8 +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/storage/fancy/donut_box{ + pixel_x = -2; + pixel_y = 5 }, -/area/ship/bridge) +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/obj/machinery/button/door{ + id = "asclepius_engineering_shutters"; + name = "Engineering Lockdown"; + pixel_x = 10; + pixel_y = 23 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/engineering) "nF" = ( /obj/machinery/computer/monitor{ dir = 1 @@ -1472,26 +1202,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"nH" = ( -/obj/effect/decal/cleanable/glass{ - dir = 8; - pixel_y = 1; - color = "#808080" - }, -/obj/structure/railing{ - dir = 6; - layer = 4.1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 6 - }, -/obj/effect/decal/fakelattice{ - color = "#808080" - }, -/turf/open/floor/plasteel/elevatorshaft{ - color = "#808080" - }, -/area/ship/hallway/central) "nI" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1527,24 +1237,52 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"oh" = ( -/obj/effect/turf_decal/industrial/warning{ +"oc" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/obj/machinery/mineral/ore_redemption{ - dir = 4 +/obj/effect/decal/cleanable/xenoblood{ + pixel_x = -5; + pixel_y = 10 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 +/obj/structure/table/reinforced{ + color = "#c1b6a5" }, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_x = -32 +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_castes{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_adult{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -8 }, /turf/open/floor/plasteel/dark{ icon_state = "grid" }, -/area/ship/cargo) +/area/ship/medical/morgue) "ok" = ( /obj/structure/chair/office{ dir = 4; @@ -1564,6 +1302,26 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) +"oo" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/ship/crew/office) "op" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -1576,17 +1334,16 @@ /obj/machinery/atmospherics/pipe/layer_manifold/visible, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) -"oJ" = ( -/obj/effect/turf_decal/trimline/opaque/bottlegreen/line, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/light, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/minutemen/corner{ +"oV" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor{ dir = 1 }, -/turf/open/floor/plasteel/patterned/dirty, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, /area/ship/cargo) "oZ" = ( /obj/structure/chair/comfy/black{ @@ -1619,17 +1376,19 @@ /obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"pB" = ( -/obj/machinery/vending/cigarette, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30; - pixel_x = 7 +"pD" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel{ - icon_state = "ridged" +/obj/machinery/mineral/ore_redemption{ + dir = 4 }, -/area/ship/hallway/central) +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark{ + icon_state = "grid" + }, +/area/ship/cargo) "pL" = ( /obj/effect/turf_decal/techfloor{ dir = 4 @@ -1641,41 +1400,12 @@ /turf/open/floor/plasteel/tech, /area/ship/crew/office) "pQ" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"pR" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-10" - }, -/obj/structure/closet/wall{ - name = "uniform closet"; - dir = 8; - pixel_x = 28 - }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 6 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/white, +/area/ship/medical) "pV" = ( /obj/effect/turf_decal/siding/white, /obj/effect/decal/cleanable/dirt/dust, @@ -1691,24 +1421,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"pW" = ( -/obj/docking_port/mobile{ - can_move_docking_ports = 1; - launch_status = 0; - port_direction = 4; - preferred_direction = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/poddoor{ - id = "asclepius_extcargo"; - name = "Cargo Bay Blast Door" - }, -/turf/open/floor/plasteel{ - icon_state = "steel_monofloor" - }, -/area/ship/cargo) "ql" = ( /obj/effect/turf_decal/industrial/warning{ color = "#808080" @@ -1819,56 +1531,62 @@ }, /turf/open/floor/carpet/red, /area/ship/security) -"qO" = ( -/obj/item/clothing/gloves/color/latex/nitrile/evil, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/item/storage/belt/medical/webbing, -/obj/structure/closet/secure_closet/medical3{ - anchored = 1 - }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/crew/office) "qZ" = ( /obj/structure/sign/number/six, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) -"rj" = ( -/mob/living/simple_animal/pet/penguin/baby{ - name = "Corporal Duke"; - desc = "Despite his cute appearance, there is something missing in his eyes... He was never the same after that Xenomorph Hive assault" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/bed/dogbed, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"rt" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/obj/effect/decal/cleanable/plasma, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"rv" = ( +"ro" = ( /obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 + dir = 6 }, /obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ - dir = 4 + dir = 6 }, -/obj/structure/sign/departments/cargo{ - pixel_x = 32 +/obj/machinery/button/door{ + dir = 8; + id = "asclepius_extcargo"; + name = "Cargo hatch"; + pixel_x = 23; + pixel_y = 10 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "asclepius_cargoholo"; + pixel_x = 21 }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) +"rs" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/closet/crate/internals, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/structure/cable, +/obj/structure/sign/poster/official/moth/hardhats{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "rw" = ( /obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ dir = 9 @@ -1931,6 +1649,25 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) +"rU" = ( +/obj/structure/table/reinforced, +/obj/item/stack/medical/splint{ + pixel_x = 8 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = -10; + pixel_y = 5 + }, +/obj/machinery/door/window/eastright{ + dir = 2 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/ship/crew/office) "rV" = ( /obj/effect/turf_decal/siding/white, /obj/effect/decal/cleanable/dirt/dust, @@ -1945,30 +1682,10 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"rW" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/button/door{ - dir = 8; - id = "asclepius_medbay_lockdown"; - name = "Medical Lockdown"; - pixel_x = 23; - pixel_y = -10 - }, -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel, -/area/ship/crew/office) +"rY" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "rZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -1977,24 +1694,38 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical/morgue) -"sd" = ( -/obj/effect/turf_decal/corner_techfloor_gray/diagonal{ +"se" = ( +/obj/machinery/chem_heater, +/obj/structure/sign/poster/official/moth/meth{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/obj/machinery/airalarm/directional/east, -/obj/item/poster/random_official{ - pixel_x = 4; - pixel_y = 3 +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/surgery) +"sl" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/grass/jungle/b{ + pixel_x = 1; + pixel_y = -10 }, -/obj/item/poster/random_official{ - pixel_y = -2; - pixel_x = 2 +/obj/structure/railing{ + dir = 4; + layer = 4.1; + pixel_x = 7 }, -/obj/item/poster/random_official, -/turf/open/floor/plasteel/dark, +/obj/machinery/light/small/directional/west, +/obj/structure/sign/poster/official/here_for_your_safety{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/grass, /area/ship/cargo) "sp" = ( /obj/effect/turf_decal/techfloor/orange{ @@ -2009,35 +1740,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/mono/dark, /area/ship/medical/surgery) -"st" = ( -/obj/machinery/door/airlock/hatch, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) -"sv" = ( -/obj/machinery/chem_heater, -/obj/structure/sign/poster/official/moth/meth{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) "sy" = ( /obj/structure/table/reinforced{ color = "#c1b6a5" @@ -2068,6 +1770,20 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/engineering) +"sB" = ( +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "sN" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/medical/surgery) @@ -2084,113 +1800,54 @@ "te" = ( /turf/open/floor/plasteel/dark, /area/ship/cargo) -"tk" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"tl" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/effect/turf_decal/siding/wood{ +"th" = ( +/obj/effect/turf_decal/techfloor/orange{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/wood, -/area/ship/crew) -"tm" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/plasteel/grimy, -/area/ship/hallway/central) -"tq" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -9; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_y = 4; - pixel_x = -10 - }, -/obj/effect/turf_decal/techfloor{ - dir = 9 - }, -/obj/item/radio/intercom{ - pixel_y = 22; - pixel_x = -6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 +/obj/effect/decal/cleanable/greenglow{ + pixel_y = -10 }, -/obj/machinery/computer/med_data/laptop{ - pixel_x = 7; - pixel_y = 3 +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 }, -/obj/machinery/firealarm{ - pixel_y = 24; - pixel_x = 7 +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_x = -8; + pixel_y = 17 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/office) -"tA" = ( +/obj/item/storage/box/maid{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"tk" = ( /obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 + dir = 5 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"tC" = ( -/obj/effect/turf_decal/techfloor{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24; - pixel_y = -9 - }, -/obj/machinery/newscaster{ - pixel_y = 32; - pixel_x = -32 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/frame/computer, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) -"tF" = ( -/obj/structure/closet/wall/white/med{ - name = "Chemistry locker"; - pixel_y = -28; - dir = 1 +/turf/open/floor/plasteel/white, +/area/ship/medical) +"tm" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/central) +"tn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/east{ + light_color = "#d8b1b1" }, -/obj/item/clothing/under/rank/medical/chemist/pharmacist, -/obj/item/clothing/under/rank/medical/chemist/pharmacist/skirt, -/obj/item/clothing/under/rank/medical/chemist/pharmacologist/skirt, -/obj/item/clothing/under/rank/medical/chemist/pharmacologist, -/obj/item/clothing/suit/longcoat/chemist, -/obj/item/clothing/suit/toggle/labcoat/chemist/side, -/obj/item/clothing/head/beret/chem, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/central) +"tA" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, /turf/open/floor/plasteel/white, /area/ship/medical) "tH" = ( @@ -2199,27 +1856,25 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) -"tU" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 2 +"tO" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/item/megaphone, -/obj/item/toy/figure/md{ - pixel_x = 14 +/obj/structure/cable{ + icon_state = "0-5" }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/evacuation{ - pixel_x = -15 +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 4; + id = "asclepius_cargoholo"; + locked = 1 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "asclepius_reception_lockdown"; - name = "Lockdown Shutters" +/obj/machinery/door/poddoor{ + id = "asclepius_extcargo"; + name = "Cargo Bay Blast Door" }, -/obj/item/reagent_containers/food/snacks/donut/jelly/blumpkin{ - pixel_x = -14; - pixel_y = 9 +/turf/open/floor/plasteel{ + icon_state = "steel_monofloor" }, -/turf/open/floor/plasteel/dark, /area/ship/cargo) "ub" = ( /obj/structure/table/glass, @@ -2266,17 +1921,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"uk" = ( -/obj/machinery/light_switch{ - pixel_x = 20; - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 5 - }, -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "uu" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -2325,6 +1969,31 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/telecomms_floor, /area/ship/bridge) +"uU" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/stamp/cmo{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/stamp{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "uW" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -2387,45 +2056,56 @@ /obj/item/defibrillator/compact/loaded, /turf/open/floor/plasteel, /area/ship/crew/office) -"vo" = ( +"vi" = ( +/mob/living/simple_animal/pet/penguin/baby{ + desc = "Despite his cute appearance, there is something missing in his eyes... He was never the same after that Xenomorph Hive assault"; + name = "Corporal Duke" + }, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/railing{ - dir = 1; - layer = 4.1 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/bed/dogbed, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"vm" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "asclepius_window_shutters"; + name = "Blast Shutters"; + dir = 4 }, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -3; - pixel_x = 3 +/turf/open/floor/plating, +/area/ship/medical/surgery) +"vs" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 }, -/obj/item/storage/toolbox/electrical{ - pixel_y = -1; - pixel_x = -1 +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"vt" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 }, -/obj/item/multitool{ - pixel_x = 9 +/obj/effect/turf_decal/siding/white, +/obj/machinery/door/airlock/hatch{ + dir = 4 }, -/obj/item/clothing/glasses/welding{ - pixel_y = 5 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/effect/turf_decal/techfloor{ - dir = 9 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/power/terminal{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/structure/cable{ - icon_state = "0-6" +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"vs" = ( -/obj/effect/turf_decal/techfloor{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) +/turf/open/floor/plasteel, +/area/ship/crew/office) "vw" = ( /obj/effect/turf_decal/trimline/opaque/bottlegreen/corner{ dir = 1 @@ -2440,6 +2120,18 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) +"vO" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/effect/turf_decal/number/five{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "vP" = ( /obj/structure/railing{ dir = 4; @@ -2449,99 +2141,50 @@ dir = 6 }, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1; - piping_layer = 2 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"vQ" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-5" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 4; - locked = 1; - id = "asclepius_cargoholo" - }, -/obj/machinery/door/poddoor{ - id = "asclepius_extcargo"; - name = "Cargo Bay Blast Door" - }, -/turf/open/floor/plasteel{ - icon_state = "steel_monofloor" - }, -/area/ship/cargo) -"vY" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/cargo) -"wb" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/wood, -/area/ship/bridge) -"wg" = ( -/obj/effect/turf_decal/corner/opaque/blue/full, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"wh" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/grass/jungle/b{ - pixel_x = 1; - pixel_y = -10 - }, -/obj/structure/railing{ - dir = 4; - layer = 4.1; - pixel_x = 7 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating/grass, -/area/ship/cargo) -"wi" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/flashlight/lamp{ - pixel_y = 11; - pixel_x = -6 - }, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -5; - pixel_y = -3 +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1; + piping_layer = 2 }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"vY" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/cargo) +"wb" = ( /obj/effect/turf_decal/siding/wood{ - dir = 9 + dir = 6 }, -/obj/machinery/keycard_auth{ - pixel_x = -26; - pixel_y = 23 +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/wood, +/area/ship/bridge) +"wg" = ( +/obj/effect/turf_decal/corner/opaque/blue/full, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"wk" = ( +/obj/structure/table/reinforced, +/obj/item/detective_scanner{ + pixel_y = 8 }, -/obj/machinery/newscaster{ - pixel_y = 32 +/obj/item/pen/survival{ + pixel_x = -4 }, -/obj/structure/plaque/static_plaque/golden/captain{ +/obj/structure/sign/warning/chemdiamond{ pixel_x = -32 }, -/turf/open/floor/wood, -/area/ship/bridge) +/obj/item/storage/firstaid/toxin{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/organ/liver/alien{ + pixel_x = -4; + pixel_y = -11 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/surgery) "wm" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2550,22 +2193,6 @@ }, /turf/open/floor/plating, /area/ship/security) -"wn" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "wr" = ( /obj/effect/turf_decal/corner/opaque/blue/full, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -2593,22 +2220,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"wz" = ( -/obj/machinery/light_switch{ - pixel_x = -21; - dir = 4; - pixel_y = 9 - }, -/obj/item/radio/intercom/wideband{ - pixel_y = -3; - pixel_x = -24; - dir = 4 - }, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 1 - }, -/area/ship/bridge) "wD" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 5 @@ -2630,33 +2241,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/hallway/central) -"wJ" = ( -/obj/structure/table/wood/reinforced, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_y = 6; - pixel_x = -2 - }, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_y = 10; - pixel_x = -2 - }, -/obj/item/lighter{ - pixel_y = -1; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -10; - pixel_y = -6 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/wood, -/area/ship/hallway/central) "wM" = ( /obj/machinery/vending/boozeomat/syndicate_access{ density = 0; @@ -2682,44 +2266,80 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"xj" = ( -/obj/structure/table/reinforced, -/obj/item/trash/raisins{ - pixel_x = 2; - pixel_y = 10 +"wU" = ( +/obj/item/gps{ + pixel_x = -6; + pixel_y = 4 }, -/obj/item/trash/sosjerky{ - pixel_y = 6; - pixel_x = -3 +/obj/structure/table/reinforced{ + color = "#c1b6a5" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/siding/wood/corner, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = 10; - pixel_y = -1 +/obj/effect/turf_decal/techfloor{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/grimy, -/area/ship/hallway/central) -"xB" = ( -/obj/structure/table/glass, -/obj/item/hand_labeler{ - pixel_y = 8 +/obj/item/megaphone/command{ + pixel_x = 3; + pixel_y = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/reagent_scanner{ - pixel_y = 5; - pixel_x = 4 +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = -12; + pixel_y = -3 }, -/obj/item/clothing/glasses/science{ - pixel_y = -2; - pixel_x = -1 +/obj/machinery/button/door{ + dir = 1; + id = "asclepius_internalbridge_shutters"; + name = "Internal Shutters"; + pixel_x = -10; + pixel_y = -23 }, -/obj/effect/turf_decal/techfloor{ - dir = 9 +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"wX" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet/green, +/area/ship/crew) +"xz" = ( +/obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ + dir = 10 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/airalarm/directional/west, +/obj/item/desk_flag/trans{ + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/paper/pamphlet/violent_video_games{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/paper/pamphlet/violent_video_games{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) +"xE" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -21; + pixel_y = 12 + }, +/obj/item/radio/intercom/wideband/directional/west, +/turf/open/floor/plasteel/stairs{ + dir = 1; + icon = 'icons/obj/stairs.dmi' + }, +/area/ship/bridge) "xP" = ( /obj/effect/turf_decal/atmos/plasma{ dir = 8; @@ -2730,74 +2350,55 @@ }, /turf/open/floor/engine/plasma, /area/ship/engineering) -"yb" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/paper_bin{ - pixel_y = 3; - pixel_x = -12 - }, -/obj/item/pen{ - pixel_x = -12; - pixel_y = 1 +"xT" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/techfloor{ + dir = 10 }, -/obj/item/stamp/cmo{ - pixel_x = -9; - pixel_y = 9 +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/effect/turf_decal/siding/wood{ - dir = 5 +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"ye" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 }, -/obj/machinery/status_display/evac{ - pixel_y = 32 +/obj/effect/turf_decal/techfloor/hole{ + dir = 4 }, -/obj/machinery/light_switch{ - pixel_x = 22; +/obj/structure/closet/wall{ dir = 8; - pixel_y = -12 - }, -/turf/open/floor/wood, -/area/ship/bridge) -"yg" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 + icon_door = "yellow_wall"; + name = "engineering closet"; + pixel_x = 28 }, -/obj/effect/decal/cleanable/greenglow{ - pixel_y = -10 +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/accessory/armband/engine, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat/dblue, +/obj/item/radio/headset/headset_eng, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/backpack/industrial, +/obj/item/clothing/shoes/workboots, +/obj/effect/turf_decal/techfloor/hole/right{ + dir = 4 }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 +/obj/item/clothing/head/beret/eng/hazard, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -8; - pixel_y = 17 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/item/storage/box/maid{ - pixel_y = 11; - pixel_x = -10 +/obj/effect/turf_decal/number/four{ + dir = 8 }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"yk" = ( -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 5; - color = "#808080" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) "yl" = ( /obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ dir = 4 @@ -2861,6 +2462,18 @@ /mob/living/simple_animal/bot/cleanbot/medbay, /turf/open/floor/plasteel/tech, /area/ship/crew/office) +"yO" = ( +/obj/structure/chair/office{ + dir = 8; + name = "tactical swivel chair" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/central) "yQ" = ( /obj/effect/turf_decal/trimline/opaque/bottlegreen/line, /obj/structure/chair/greyscale{ @@ -2924,6 +2537,65 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) +"zw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -22; + pixel_y = 12 + }, +/turf/open/floor/plasteel/white{ + icon_state = "ridged" + }, +/area/ship/medical) +"zy" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/item/radio/intercom/directional/west, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/engine{ + icon_state = "reinforced" + }, +/area/ship/medical) +"zB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/closet/secure_closet/wall{ + dir = 4; + icon_state = "sec_wall"; + name = "BARD Equipment"; + pixel_x = -28 + }, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/flamethrower/full/tank, +/obj/item/gun/energy/e_gun/mini{ + pixel_x = 3; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"zC" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) "zD" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 6 @@ -2935,31 +2607,30 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"zJ" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4; - color = "#808080" - }, -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/techfloor{ +"zZ" = ( +/obj/effect/turf_decal/siding/white{ dir = 8 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) -"zQ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/kirbyplants{ - icon_state = "plant-04"; - pixel_x = -7; - pixel_y = 22 +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Af" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/grille/broken, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -22; + pixel_y = 12 }, -/turf/open/floor/wood, -/area/ship/crew) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Aj" = ( /obj/structure/sign/warning/gasmask{ pixel_x = -31 @@ -2999,24 +2670,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Ay" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/roller{ - pixel_y = 5 - }, -/obj/item/roller{ - pixel_y = 12; - pixel_x = 2 - }, -/obj/item/roller{ - pixel_y = 18; - pixel_x = 5 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "AH" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -3030,51 +2683,6 @@ /obj/effect/landmark/start/medical_doctor, /turf/open/floor/plasteel, /area/ship/crew/office) -"AL" = ( -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) -"AM" = ( -/obj/effect/turf_decal/corner/opaque/blue/three_quarters{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"AU" = ( -/obj/effect/turf_decal/siding/white, -/obj/structure/sign/departments/security{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "AV" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -3116,18 +2724,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/ship/hallway/central) -"Bj" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "Bx" = ( /obj/effect/decal/cleanable/leaper_sludge{ color = "#808080" @@ -3195,40 +2791,45 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"BT" = ( -/obj/item/gps{ - pixel_x = -6; - pixel_y = 4 +"BQ" = ( +/obj/machinery/door/airlock/external, +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + launch_status = 0; + port_direction = 4; + preferred_direction = 4 }, -/obj/structure/table/reinforced{ - color = "#c1b6a5" +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) +"BR" = ( +/obj/structure/table/reinforced, +/obj/effect/gibspawner/larva, +/obj/item/organ/heart/gland/spiderman{ + pixel_x = 3; + pixel_y = 1 }, -/obj/effect/turf_decal/techfloor{ - dir = 4 +/obj/item/research_notes/loot/small{ + pixel_x = -6; + pixel_y = -2 }, -/obj/item/megaphone/command{ - pixel_y = 4; - pixel_x = 3 +/obj/item/flashlight/pen{ + pixel_x = -7; + pixel_y = 6 }, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_x = -12; - pixel_y = -3 +/obj/item/scalpel{ + pixel_y = 19 }, -/obj/machinery/button/door{ - id = "asclepius_internalbridge_shutters"; - name = "Internal Shutters"; - pixel_x = -10; - pixel_y = -23; - dir = 1 +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = -32 }, -/obj/machinery/light{ - dir = 4 +/obj/item/organ/alien/plasmavessel/small, +/obj/item/bodypart/head/alien{ + pixel_x = -5; + pixel_y = 5 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/surgery) "BW" = ( /obj/effect/turf_decal/techfloor{ dir = 8 @@ -3261,29 +2862,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/hallway/central) -"BY" = ( -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/turf_decal/steeldecal/steel_decals2, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "BZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -3293,22 +2871,41 @@ /obj/machinery/igniter/on, /turf/open/floor/plasteel/dark, /area/ship/medical/morgue) -"Cc" = ( -/obj/effect/turf_decal/corner_techfloor_gray/diagonal{ - dir = 8 +"Cf" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/sign/departments/security{ + pixel_y = -32 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/structure/closet/crate, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Ci" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/toy/toy_xeno{ + pixel_x = 8; + pixel_y = 10 }, -/obj/item/stack/wrapping_paper, -/obj/item/sales_tagger, -/obj/item/pushbroom, /turf/open/floor/plasteel/dark, -/area/ship/cargo) +/area/ship/medical/morgue) "Cr" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -3318,62 +2915,96 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"Cu" = ( -/obj/structure/table/wood, -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 28 +"Cw" = ( +/obj/machinery/newscaster/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" }, -/obj/effect/turf_decal/siding/wood{ - dir = 9 +/obj/effect/turf_decal/siding/white{ + dir = 8 }, -/obj/item/flashlight/lamp{ - pixel_x = -5; - pixel_y = 5 +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 }, -/obj/item/reagent_containers/glass/maunamug{ - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"CB" = ( +/obj/docking_port/stationary{ + dwidth = 7; + width = 15; + height = 15; + dir = 2 }, -/obj/item/storage/fancy/cigarettes/cigpack_uplift{ - pixel_y = -12; - pixel_x = -9 +/turf/template_noop, +/area/template_noop) +"CV" = ( +/obj/machinery/door/airlock/medical/glass{ + dir = 4 }, -/obj/item/storage/fancy/cigarettes/cigpack_uplift{ - pixel_y = -10; - pixel_x = -6 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/item/lighter{ - pixel_x = -6; - pixel_y = -16 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/wood, -/area/ship/crew) +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "asclepius_medbay_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plasteel/patterned/monofloor{ + dir = 1 + }, +/area/ship/cargo) "CW" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) -"Dd" = ( -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/advanced_airlock_controller{ - pixel_x = 24 - }, -/obj/item/clothing/shoes/cowboy/lizard{ - pixel_y = -8; - pixel_x = 2 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) "Di" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/door/airlock/external, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) +"Dp" = ( +/obj/structure/railing{ + dir = 1; + layer = 4.1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/contraband/xenofauna_parasite{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/stairs{ + dir = 8; + icon = 'icons/obj/stairs.dmi' + }, +/area/ship/bridge) +"Dx" = ( +/obj/machinery/door/airlock/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/plasteel/patterned/dirty, +/area/ship/cargo) "DF" = ( /obj/structure/table/glass, /obj/item/stock_parts/micro_laser{ @@ -3404,24 +3035,20 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/medical/surgery) -"Ec" = ( +"DP" = ( /obj/effect/turf_decal/siding/white{ dir = 1 }, /obj/item/kirbyplants{ - pixel_y = 18; + layer = 3.9; pixel_x = -3; - layer = 3.9 + pixel_y = 18 }, /obj/structure/sign/poster/official/moth/epi{ pixel_y = 32 }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"Ed" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) "Ef" = ( /obj/effect/turf_decal/steeldecal/steel_decals_central2{ pixel_y = 2 @@ -3518,6 +3145,15 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"Ex" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/structure/frame/computer, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "EA" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -3553,6 +3189,19 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/ship/hallway/central) +"EL" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ + dir = 4 + }, +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) "EN" = ( /obj/structure/cable{ icon_state = "1-10" @@ -3563,6 +3212,36 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel/stairs, /area/ship/engineering) +"EO" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"EV" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/surgery) "Fd" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 9 @@ -3609,10 +3288,30 @@ }, /turf/open/floor/plasteel/stairs, /area/ship/security) -"Fy" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/white, +"Fv" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "asclepius_window_shutters"; + name = "Blast Shutters"; + dir = 4 + }, +/turf/open/floor/plating, /area/ship/medical) +"FA" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/item/radio/intercom/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/item/stack/sheet/metal/twenty{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/stack/sheet/glass/twenty, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/engineering) "FB" = ( /obj/effect/turf_decal/siding/white/corner, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -3658,6 +3357,25 @@ /obj/effect/landmark/start/medical_doctor, /turf/open/floor/plasteel, /area/ship/crew/office) +"FW" = ( +/obj/structure/table/wood/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/storage/wallet/random{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/ship/hallway/central) "FZ" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) @@ -3695,48 +3413,10 @@ icon_state = "steel_monofloor" }, /area/ship/cargo) -"Gh" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "Gj" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) -"Gm" = ( -/obj/structure/filingcabinet/medical{ - pixel_x = -10 - }, -/obj/effect/turf_decal/techfloor, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/item/storage/pill_bottle/happy{ - pixel_x = -9 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10"; - pixel_x = 6 - }, -/obj/item/folder{ - pixel_x = -3; - pixel_y = -6 - }, -/obj/item/healthanalyzer, -/obj/item/key, -/obj/item/lighter, -/obj/item/storage/wallet/random, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "Gq" = ( /obj/effect/turf_decal/siding/white, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -3762,40 +3442,6 @@ }, /turf/open/floor/carpet/royalblue, /area/ship/bridge) -"GC" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor/hole{ - dir = 4 - }, -/obj/structure/closet/wall{ - dir = 8; - icon_door = "yellow_wall"; - name = "engineering closet"; - pixel_x = 28 - }, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/accessory/armband/engine, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/head/hardhat/dblue, -/obj/item/radio/headset/headset_eng, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/backpack/industrial, -/obj/item/clothing/shoes/workboots, -/obj/effect/turf_decal/techfloor/hole/right{ - dir = 4 - }, -/obj/item/clothing/head/beret/eng/hazard, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "GU" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -3807,29 +3453,32 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"GV" = ( -/obj/machinery/door/airlock/hatch, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"Hc" = ( +/obj/structure/filingcabinet/medical{ + pixel_x = -10 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/item/storage/pill_bottle/happy{ + pixel_x = -9 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/item/kirbyplants{ + icon_state = "plant-10"; + pixel_x = 6 }, -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/siding/white{ - dir = 1 +/obj/item/folder{ + pixel_x = -3; + pixel_y = -6 }, -/turf/open/floor/plasteel, -/area/ship/engineering) +/obj/item/healthanalyzer, +/obj/item/key, +/obj/item/lighter, +/obj/item/storage/wallet/random, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Hk" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -3837,7 +3486,21 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/ship/hallway/central) -"Hu" = ( +"Hq" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"Hv" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, @@ -3850,7 +3513,8 @@ }, /obj/machinery/door/poddoor{ id = "asclepius_engineering_shutters"; - name = "Engineering Blast Doors" + name = "Engineering Blast Doors"; + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) @@ -3964,30 +3628,73 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"HQ" = ( +"Il" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/wood, +/area/ship/crew) +"Im" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 10 }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/structure/table/reinforced, +/obj/item/roller{ + pixel_y = 5 + }, +/obj/item/roller{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/roller{ + pixel_x = 5; + pixel_y = 18 }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Ik" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 +"Iu" = ( +/obj/structure/table/reinforced, +/obj/item/trash/raisins{ + pixel_x = 2; + pixel_y = 10 }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light{ - dir = 1 +/obj/item/trash/sosjerky{ + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/engine{ - icon_state = "reinforced" +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/reagent_containers/food/drinks/mug{ + pixel_x = 10; + pixel_y = -1 }, -/area/ship/medical) +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/central) +"Ix" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) "Iz" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) @@ -4008,30 +3715,45 @@ "IQ" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) -"IU" = ( -/obj/item/organ_storage, -/obj/item/organ_storage, -/obj/item/organ_storage, -/obj/item/organ_storage, -/obj/item/organ_storage, -/obj/structure/closet/crate/freezer, -/obj/item/organ_storage, -/obj/item/organ_storage, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark{ - icon_state = "grid" - }, -/area/ship/medical/morgue) "IV" = ( /obj/effect/turf_decal/corner/opaque/blue/full, /turf/open/floor/plasteel/white, /area/ship/medical) +"Jd" = ( +/obj/vehicle/ridden/wheelchair{ + dir = 1 + }, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/moth/smokey{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) +"Jf" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/circuitboard/machine/shuttle/engine/electric{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/circuitboard/machine/shuttle/engine/electric{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/machinery/light/directional/east, +/obj/structure/plaque/static_plaque/atmos{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/engineering) "Jj" = ( /obj/structure/chair/office{ name = "tactical swivel chair" @@ -4045,6 +3767,20 @@ /obj/effect/decal/cleanable/robot_debris, /turf/open/floor/plasteel/tech/grid, /area/ship/medical/surgery) +"Jm" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Js" = ( /obj/machinery/status_display/evac{ pixel_y = 32 @@ -4063,43 +3799,49 @@ }, /turf/open/floor/plasteel, /area/ship/crew/office) -"JD" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 +"Jy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 1; + layer = 4.1 }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = -3 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = -1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/multitool{ + pixel_x = 9 }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel, -/area/ship/crew/office) -"JE" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 +/obj/item/clothing/glasses/welding{ + pixel_y = 5 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22; - pixel_y = -5 +/obj/effect/turf_decal/techfloor{ + dir = 9 }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 22; - pixel_y = 8 +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +/obj/structure/cable{ + icon_state = "0-6" }, -/turf/open/floor/wood, -/area/ship/crew) +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"JA" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "JI" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -4107,6 +3849,34 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) +"JM" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/flashlight/lamp{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 23 + }, +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_x = -32 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/ship/bridge) "JN" = ( /obj/effect/turf_decal/minutemen{ dir = 4 @@ -4131,6 +3901,28 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"JX" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/button/door{ + dir = 8; + id = "asclepius_medbay_lockdown"; + name = "Medical Lockdown"; + pixel_x = 23; + pixel_y = -10 + }, +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel, +/area/ship/crew/office) "JY" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 @@ -4143,6 +3935,13 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Ka" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 9 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Kd" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -4151,6 +3950,50 @@ }, /turf/open/floor/plating, /area/ship/crew/office) +"Ke" = ( +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/structure/closet/wall{ + dir = 8; + name = "uniform closet"; + pixel_x = 28 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/item/radio/headset/minutemen, +/obj/item/radio/headset/minutemen, +/obj/item/radio/headset/minutemen, +/obj/item/radio/headset/minutemen, +/turf/open/floor/wood, +/area/ship/crew) +"Ki" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "asclepius_bridge_shutters"; + name = "Blast Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/bridge) "Kj" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 10 @@ -4187,6 +4030,15 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"KD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/isf_small{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) "KL" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/storage/backpack, @@ -4220,6 +4072,24 @@ }, /turf/open/floor/carpet/red, /area/ship/security) +"KM" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 2 + }, +/obj/item/megaphone, +/obj/item/toy/figure/md{ + pixel_x = 14 + }, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/evacuation{ + pixel_x = -15 + }, +/obj/item/reagent_containers/food/snacks/donut/jelly/blumpkin{ + pixel_x = -14; + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "KN" = ( /obj/structure/table/optable, /obj/machinery/defibrillator_mount/loaded{ @@ -4262,20 +4132,6 @@ }, /turf/open/floor/wood, /area/ship/crew) -"Ln" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "Ls" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 9 @@ -4289,79 +4145,84 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Lu" = ( -/obj/structure/chair/office{ - dir = 8; - name = "tactical swivel chair" +"Lv" = ( +/obj/structure/closet/wall{ + dir = 1; + pixel_y = -28 }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 +/obj/item/reagent_containers/syringe/contraband/methamphetamine, +/obj/item/reagent_containers/syringe/contraband/fentanyl{ + pixel_x = -3; + pixel_y = 4 }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, +/obj/item/reagent_containers/syringe/charcoal{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/glass{ + dir = 8; + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/plasteel/showroomfloor, /area/ship/hallway/central) +"Lw" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "Ly" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/office) -"LB" = ( -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/obj/structure/closet/wall{ - name = "uniform closet"; +"LH" = ( +/obj/effect/decal/cleanable/glass{ + color = "#808080"; dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/obj/structure/railing{ + dir = 6; + layer = 4.1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/item/radio/headset/minutemen, -/obj/item/radio/headset/minutemen, -/obj/item/radio/headset/minutemen, -/obj/item/radio/headset/minutemen, -/turf/open/floor/wood, -/area/ship/crew) -"LK" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/computer/secure_data/laptop{ - dir = 1; - pixel_y = 7; - pixel_x = 3 +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 6 }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -9; - pixel_y = 6 +/obj/effect/decal/fakelattice{ + color = "#808080" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "asclepius_reception_lockdown"; - name = "Lockdown Shutters" +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) +/area/ship/hallway/central) "Mb" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 }, /turf/open/floor/plating, /area/ship/engineering) +"Mi" = ( +/obj/effect/turf_decal/corner_techfloor_gray/diagonal{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/item/poster/random_official{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/poster/random_official{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/poster/random_official, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Mn" = ( /obj/effect/turf_decal/borderfloorblack{ dir = 8 @@ -4443,38 +4304,6 @@ icon_state = "panelscorched" }, /area/ship/hallway/central) -"MJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/central) -"MT" = ( -/obj/structure/table/reinforced{ - color = "#c1b6a5" - }, -/obj/item/circuitboard/machine/shuttle/engine/electric{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/circuitboard/machine/shuttle/engine/electric{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/plaque/static_plaque/atmos{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/engineering) "Nd" = ( /obj/effect/turf_decal/trimline/opaque/bottlegreen/warning{ dir = 1 @@ -4500,50 +4329,34 @@ }, /turf/open/floor/plasteel, /area/ship/crew/office) -"No" = ( -/obj/effect/turf_decal/trimline/opaque/bottlegreen/line{ - dir = 10 - }, -/obj/structure/table, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/item/radio/intercom{ +"Nk" = ( +/obj/structure/closet/wall/white/med{ dir = 1; - pixel_y = -22 + name = "Chemistry locker"; + pixel_y = -28 }, -/obj/machinery/airalarm/directional/west, -/obj/item/desk_flag/trans{ - pixel_x = -10; - pixel_y = 1 +/obj/item/clothing/under/rank/medical/chemist/pharmacist, +/obj/item/clothing/under/rank/medical/chemist/pharmacist/skirt, +/obj/item/clothing/under/rank/medical/chemist/pharmacologist/skirt, +/obj/item/clothing/under/rank/medical/chemist/pharmacologist, +/obj/item/clothing/suit/longcoat/chemist, +/obj/item/clothing/suit/toggle/labcoat/chemist/side, +/obj/item/clothing/head/beret/chem, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 }, -/obj/item/paper/pamphlet/violent_video_games{ - pixel_x = 5; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/paper/pamphlet/violent_video_games{ - pixel_x = 1; - pixel_y = 2 +/turf/open/floor/plasteel/white, +/area/ship/medical) +"NE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/isf_small/right{ + dir = 4 }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) -"Nx" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/machinery/door/poddoor{ - id = "asclepius_engineering_shutters"; - name = "Engineering Blast Doors" - }, -/turf/open/floor/plating, -/area/ship/engineering) "NH" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 9 @@ -4557,6 +4370,21 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"NN" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "NR" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -4627,34 +4455,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/ship/hallway/central) -"Od" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"Oe" = ( -/obj/structure/chair/office{ - dir = 4; - name = "tactical swivel chair" - }, -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 28 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/grimy, -/area/ship/hallway/central) "Ot" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 5 @@ -4696,31 +4496,57 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"OC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +"OB" = ( +/obj/structure/table/wood/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/lighter{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -10; + pixel_y = -6 }, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "0-2" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +/turf/open/floor/wood, +/area/ship/hallway/central) +"OJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/pill_bottle/dice{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/closet/secure_closet/wall{ - dir = 4; - icon_state = "sec_wall"; - name = "BARD Equipment"; - pixel_x = -28 +/obj/item/reagent_containers/food/drinks/flask/det{ + pixel_x = -6; + pixel_y = 4 }, -/obj/item/clothing/suit/bio_suit/security, -/obj/item/clothing/head/bio_hood/security, -/obj/item/flamethrower/full/tank, -/obj/item/gun/energy/e_gun/mini{ - pixel_y = -5; - pixel_x = 3 +/obj/effect/decal/cleanable/dirt, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = -7 }, -/turf/open/floor/plasteel/dark, -/area/ship/security) +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/central) "OK" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -4739,47 +4565,45 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) -"Pr" = ( -/obj/effect/turf_decal/techfloor/orange, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/storage/bag/trash{ - pixel_y = 8; - pixel_x = 5 +"OR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"PF" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/turf/open/floor/plasteel/white{ - icon_state = "ridged" +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/chair/stool{ + dir = 1; + pixel_x = -5; + pixel_y = 12 }, -/area/ship/medical) -"PN" = ( +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Pe" = ( /obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/item/cigbutt/cigarbutt{ + pixel_x = 8; + pixel_y = 11 }, -/obj/item/paper_bin{ +/obj/item/reagent_containers/food/drinks/bottle/kahlua{ pixel_x = -6; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_y = 4; - pixel_x = -6 + pixel_y = 6 }, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 1 +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 2; + pixel_y = 4 }, -/obj/machinery/light{ +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/item/paicard{ - pixel_x = 5; - pixel_y = 18 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/wood, -/area/ship/crew) +/area/ship/bridge) +"PF" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plasteel/white{ + icon_state = "ridged" + }, +/area/ship/medical) "PP" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 1 @@ -4834,6 +4658,60 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/mono/dark, /area/ship/medical/surgery) +"Qf" = ( +/obj/machinery/door/airlock/medical/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "asclepius_medbay_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plasteel, +/area/ship/crew/office) +"Qi" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/minutemen/middle, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) +"Qk" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -21; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Qn" = ( /obj/item/clothing/gloves/color/latex/nitrile/evil, /obj/item/storage/belt/medical/webbing, @@ -4862,33 +4740,30 @@ "QT" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/medical) -"Ra" = ( -/obj/vehicle/ridden/wheelchair{ - dir = 1 - }, -/obj/structure/sign/departments/medbay/alt{ - pixel_x = 32 +"Rb" = ( +/obj/effect/turf_decal/techfloor{ + dir = 5 }, -/obj/machinery/light{ +/obj/machinery/rnd/production/protolathe/department/medical, +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"Ro" = ( +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"Rs" = ( +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/structure/sign/poster/official/moth/smokey{ - pixel_y = 32 +/obj/machinery/door/poddoor{ + id = "asclepius_extcargo"; + name = "Cargo Bay Blast Door" }, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) -"Rb" = ( -/obj/effect/turf_decal/techfloor{ - dir = 5 +/turf/open/floor/plasteel{ + icon_state = "steel_monofloor" }, -/obj/machinery/rnd/production/protolathe/department/medical, -/turf/open/floor/plasteel/tech, -/area/ship/crew/office) -"Ro" = ( -/obj/effect/turf_decal/techfloor/orange, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/area/ship/cargo) "Rt" = ( /obj/effect/turf_decal/trimline/opaque/bottlegreen/warning{ dir = 1 @@ -4929,23 +4804,21 @@ /obj/machinery/atmospherics/components/binary/pump/on, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"RF" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_y = 9; - pixel_x = -7 +"RG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_y = 3; - pixel_x = -2 +/obj/item/radio/intercom/directional/east, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = 8 }, -/obj/item/clothing/gloves/color/latex, -/obj/item/toy/toy_xeno{ - pixel_x = 8; - pixel_y = 10 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/medical/morgue) +/turf/open/floor/wood, +/area/ship/crew) "RI" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 6 @@ -4969,30 +4842,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/mono/dark, /area/ship/medical/surgery) -"RQ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/clothing/gloves/color/latex{ - pixel_y = -4 - }, -/obj/effect/turf_decal/corner/opaque/blue/full, -/obj/item/storage/pill_bottle/mannitol{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/reagent_containers/medigel/sterilizine{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "RR" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor{ @@ -5066,37 +4915,43 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"Sq" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 6 +"Se" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/closet/crate/internals, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_y = -4; - pixel_x = -4 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/advanced_airlock_controller{ + pixel_x = 24 }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_y = -4; - pixel_x = -4 +/obj/item/clothing/shoes/cowboy/lizard{ + pixel_x = 2; + pixel_y = -8 }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_y = -4; - pixel_x = -4 +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) +"Sp" = ( +/obj/item/organ_storage, +/obj/item/organ_storage, +/obj/item/organ_storage, +/obj/item/organ_storage, +/obj/item/organ_storage, +/obj/structure/closet/crate/freezer, +/obj/item/organ_storage, +/obj/item/organ_storage, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/structure/cable, -/obj/structure/sign/poster/official/moth/hardhats{ - pixel_x = 32 +/obj/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/turf/open/floor/plasteel/dark{ + icon_state = "grid" + }, +/area/ship/medical/morgue) "Sr" = ( /obj/structure/chair/office{ dir = 4; @@ -5111,18 +4966,6 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/engineering) -"SD" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/techfloor/orange, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/grille/broken, -/obj/machinery/light_switch{ - pixel_x = -22; - dir = 4; - pixel_y = 12 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "SE" = ( /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 8 @@ -5146,6 +4989,15 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"SH" = ( +/obj/item/clothing/gloves/color/latex/nitrile/evil, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/storage/belt/medical/webbing, +/obj/structure/closet/secure_closet/medical3{ + anchored = 1 + }, +/turf/open/floor/plasteel/patterned/ridged, +/area/ship/crew/office) "SJ" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 5 @@ -5154,6 +5006,59 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/white, /area/ship/medical) +"SR" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/decal/cleanable/robot_debris, +/obj/machinery/light/directional/south, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -30 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"SZ" = ( +/obj/structure/table/wood, +/obj/machinery/computer/helm/viewscreen/directional/north{ + pixel_y = 17 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/maunamug{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = -9; + pixel_y = -12 + }, +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = -6; + pixel_y = -10 + }, +/obj/item/lighter{ + pixel_x = -6; + pixel_y = -16 + }, +/turf/open/floor/wood, +/area/ship/crew) "Te" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 10 @@ -5161,10 +5066,16 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/plasteel/white, /area/ship/medical) -"Th" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) +"Tj" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 4 + }, +/turf/open/floor/engine{ + icon_state = "reinforced" + }, +/area/ship/medical) "Tk" = ( /obj/effect/spawner/lootdrop/glowstick, /obj/effect/decal/cleanable/dirt/dust, @@ -5179,18 +5090,25 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/ship/hallway/central) -"Ua" = ( -/obj/machinery/computer/med_data{ +"Tn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/isf_small/left{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4; - color = "#808080" +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) +"Ub" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/computer/secure_data/laptop{ + dir = 1; + pixel_x = 3; + pixel_y = 7 }, -/obj/effect/turf_decal/techfloor{ - dir = 8 +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -9; + pixel_y = 6 }, -/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/cargo) "Um" = ( @@ -5201,6 +5119,41 @@ }, /turf/open/floor/plating, /area/ship/bridge) +"Uu" = ( +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 6 + }, +/obj/item/reagent_containers/glass/bottle/dexalin{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"Uy" = ( +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/engine{ + icon_state = "reinforced" + }, +/area/ship/medical) "UA" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -5229,6 +5182,34 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"UK" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/turf_decal/steeldecal/steel_decals2, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"UX" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) "Vh" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -5251,29 +5232,27 @@ icon_state = "ridged" }, /area/ship/medical/morgue) -"Vq" = ( -/obj/machinery/door/airlock/medical/glass, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"Vm" = ( +/obj/machinery/chem_master, +/obj/machinery/camera/autoname, +/obj/item/toy/figure/chemist{ + pixel_x = -5; + pixel_y = 16 }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "asclepius_medbay_lockdown"; - name = "Lockdown Shutters" +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -8 }, -/turf/open/floor/plasteel, -/area/ship/crew/office) +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/surgery) "Vu" = ( /obj/machinery/computer/operating, /obj/effect/turf_decal/corner/opaque/blue/full, @@ -5285,21 +5264,27 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"VH" = ( -/obj/effect/turf_decal/corner/opaque/blue/three_quarters{ - dir = 4 +"VB" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/morgue) +"VO" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 4 }, -/obj/structure/bed/roller, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/structure/sign/departments/examroom{ - pixel_y = 25 +/obj/item/paper/pamphlet/violent_video_games{ + pixel_x = -1; + pixel_y = 3 }, -/obj/machinery/light{ - dir = 1 +/obj/structure/railing{ + dir = 8; + layer = 4.1 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/open/floor/carpet/red, +/area/ship/security) "VT" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -5345,6 +5330,16 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Wm" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Wu" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 10 @@ -5358,14 +5353,19 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"WC" = ( -/obj/effect/turf_decal/siding/white{ +"WH" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/medical) +"WK" = ( +/obj/effect/turf_decal/techfloor/orange{ dir = 1 }, -/obj/effect/turf_decal/siding/white, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -5373,33 +5373,11 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/ship/crew/office) -"WF" = ( -/obj/effect/turf_decal/corner/opaque/blue{ +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 10 }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"WH" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/medical) -"WM" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/carpet/green, -/area/ship/crew) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "WU" = ( /obj/effect/turf_decal/corner_techfloor_grid{ dir = 8 @@ -5414,6 +5392,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"WW" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/door/poddoor{ + id = "asclepius_engineering_shutters"; + name = "Engineering Blast Doors"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "WX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -5422,23 +5413,6 @@ }, /turf/open/floor/plasteel/stairs, /area/ship/cargo) -"WZ" = ( -/obj/effect/turf_decal/trimline/opaque/bottlegreen/line, -/obj/structure/chair/greyscale{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/decal/cleanable/blood/old, -/obj/item/trash/candy{ - layer = 2.5; - pixel_y = 2; - pixel_x = 7 - }, -/obj/effect/turf_decal/minutemen{ - dir = 1 - }, -/turf/open/floor/plasteel/patterned/dirty, -/area/ship/cargo) "Xc" = ( /obj/machinery/stasis, /obj/effect/turf_decal/corner/opaque/blue/full, @@ -5469,37 +5443,40 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/mono/dark, /area/ship/medical/surgery) -"Xi" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4; - layer = 4.1 - }, -/obj/effect/decal/cleanable/robot_debris, -/obj/machinery/light, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = -30 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Xq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/white, /area/ship/medical) +"Xu" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/closet/wall{ + dir = 8; + name = "uniform closet"; + pixel_x = 28 + }, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "Xw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/effect/turf_decal/siding/white{ @@ -5521,27 +5498,83 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) -"Xz" = ( -/obj/structure/table/wood/reinforced, -/obj/effect/turf_decal/siding/wood{ - dir = 10 +"XH" = ( +/obj/structure/table/glass, +/obj/machinery/door/window/northright, +/obj/item/reagent_containers/glass/bottle/mercury{ + pixel_x = -6; + pixel_y = 4 }, -/obj/item/storage/wallet/random{ - pixel_x = -2; +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_y = -32 + }, +/obj/item/reagent_containers/glass/bottle/oxygen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -1 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = 9 + }, +/obj/item/reagent_containers/glass/bottle/ammonia{ + pixel_x = -11 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/medical/surgery) +"XI" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/machinery/recharger{ + pixel_x = 7; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = 12; - pixel_y = 5 +/obj/item/desk_flag{ + pixel_y = 12 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/reagent_containers/food/drinks/mug{ + pixel_x = -7; + pixel_y = 10 }, -/obj/machinery/light{ - dir = 8 +/obj/item/areaeditor/shuttle{ + pixel_x = -1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"XM" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -12; + pixel_y = 1 + }, +/obj/item/stamp/cmo{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -12 }, /turf/open/floor/wood, -/area/ship/hallway/central) +/area/ship/bridge) "XO" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -5598,23 +5631,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"Yg" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 21; - pixel_y = -6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 23; - pixel_y = 9 - }, -/obj/effect/turf_decal/steeldecal/steel_decals3, -/obj/effect/turf_decal/steeldecal/steel_decals_central6{ - pixel_y = -4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "Yj" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/decal/cleanable/dirt/dust, @@ -5642,15 +5658,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, /area/ship/security) -"Ys" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "Yy" = ( /obj/structure/railing/corner{ dir = 1 @@ -5672,10 +5679,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"YA" = ( -/obj/machinery/door/airlock/hatch, +"Yz" = ( +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 4 + }, +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, /turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) +/area/ship/medical/surgery) "YK" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 @@ -5693,86 +5707,17 @@ }, /turf/open/floor/plasteel/patterned/dirty, /area/ship/cargo) -"YL" = ( -/obj/structure/table/reinforced{ - color = "#c1b6a5" - }, -/obj/item/flashlight/lamp{ - pixel_x = -8; - pixel_y = 13 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/folder/yellow{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/storage/fancy/donut_box{ - pixel_y = 5; - pixel_x = -2 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 +"YR" = ( +/obj/effect/turf_decal/industrial/warning/cee{ + dir = 8 }, -/obj/machinery/button/door{ - id = "asclepius_engineering_shutters"; - name = "Engineering Lockdown"; - pixel_x = 10; - pixel_y = 23 +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "asclepius_intcargo"; + name = "Cargo Hatch" }, /turf/open/floor/plasteel/patterned/dirty, -/area/ship/engineering) -"YM" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/southleft{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bottle/diethylamine{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/polonium{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/reagent_containers/glass/bottle/ethanol{ - pixel_x = 1 - }, -/obj/item/reagent_containers/glass/bottle/hydrogen{ - pixel_x = -9 - }, -/obj/item/reagent_containers/glass/bottle/carbon{ - pixel_x = 11 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) -"YO" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/item/camera, -/obj/item/firing_pin, -/obj/item/folder/red, -/obj/item/taperecorder, -/turf/open/floor/carpet/red, -/area/ship/security) +/area/ship/cargo) "YX" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) @@ -5792,79 +5737,41 @@ }, /turf/open/floor/plasteel, /area/ship/crew/office) -"Zc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/xenoblood{ - pixel_x = -5; - pixel_y = 10 +"Zh" = ( +/obj/effect/turf_decal/trimline/opaque/bottlegreen/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/light/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-03" }, -/obj/structure/table/reinforced{ - color = "#c1b6a5" +/obj/effect/turf_decal/minutemen/corner{ + dir = 1 }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/cargo) +"Zq" = ( +/obj/structure/table, /obj/item/paper_bin{ - pixel_x = -6; + pixel_x = -9; pixel_y = 4 }, -/obj/item/pen/red{ - pixel_x = -7; - pixel_y = 7 - }, /obj/item/pen{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/clipboard{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_castes{ - pixel_x = 6; + pixel_x = -10; pixel_y = 4 }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_adult{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = 22; - dir = 8; - pixel_y = -8 - }, -/turf/open/floor/plasteel/dark{ - icon_state = "grid" - }, -/area/ship/medical/morgue) -"Zo" = ( -/obj/machinery/door/airlock/medical/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/effect/turf_decal/techfloor{ + dir = 9 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "asclepius_medbay_lockdown"; - name = "Lockdown Shutters" +/obj/machinery/computer/med_data/laptop{ + pixel_x = 7; + pixel_y = 3 }, -/turf/open/floor/plasteel/patterned/monofloor, -/area/ship/cargo) -"Zv" = ( -/obj/machinery/suit_storage_unit/inherit, -/obj/effect/turf_decal/industrial/warning/cee{ - dir = 1 +/obj/machinery/firealarm/directional/north{ + pixel_x = -2 }, -/obj/machinery/light, -/obj/machinery/airalarm/directional/south, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/clothing/suit/space/hardsuit/security/independent, -/turf/open/floor/plasteel/dark, -/area/ship/security) +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) "ZA" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -5903,6 +5810,31 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/medical/surgery) +"ZH" = ( +/obj/effect/turf_decal/corner/opaque/blue/three_quarters{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"ZI" = ( +/obj/structure/chair/office{ + dir = 4; + name = "tactical swivel chair" + }, +/obj/machinery/computer/helm/viewscreen/directional/north{ + pixel_y = 17 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/central) "ZJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -5947,46 +5879,20 @@ }, /turf/open/floor/plasteel, /area/ship/crew/office) -"ZQ" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/northright, -/obj/item/reagent_containers/glass/bottle/mercury{ - pixel_y = 4; - pixel_x = -6 - }, -/obj/structure/sign/poster/contraband/hacking_guide{ - pixel_y = -32 - }, -/obj/item/reagent_containers/glass/bottle/oxygen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -1 - }, -/obj/item/reagent_containers/glass/bottle/formaldehyde{ - pixel_x = 9 - }, -/obj/item/reagent_containers/glass/bottle/ammonia{ - pixel_x = -11 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical/surgery) -"ZV" = ( -/obj/machinery/door/airlock/medical/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "asclepius_medbay_lockdown"; - name = "Lockdown Shutters" - }, -/turf/open/floor/plasteel/patterned/monofloor{ +"ZX" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/techfloor{ dir = 1 }, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/suit/space/hardsuit/combatmedic, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas/sechailer, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera/autoname{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, /area/ship/cargo) "ZY" = ( /obj/effect/turf_decal/techfloor{ @@ -6039,9 +5945,9 @@ Wd rJ rJ rJ -Nx -Nx -Hu +dl +dl +Hv rJ rJ Wd @@ -6060,11 +5966,11 @@ Wd Mb rJ XP -SD -vo +Af +Jy BW ZY -iy +xT GU IN Wd @@ -6079,9 +5985,9 @@ Wd Wd Wd IQ -lZ +WW rJ -yg +th Ro Ep Ev @@ -6101,7 +6007,7 @@ Wd Wd Wd rJ -YL +nw Sr mN WU @@ -6110,7 +6016,7 @@ cG kp Kj rJ -lZ +eU rJ IQ Wd @@ -6124,14 +6030,14 @@ Wd IQ rJ sy -MT +Jf Yf -gO -rt -GC +vO +ne +ye Ej -Pr -lY +mR +FA Fh Mz rJ @@ -6151,7 +6057,7 @@ aJ ae dJ rJ -bq +WK El EN RA @@ -6165,8 +6071,8 @@ Wd "} (8,1,1) = {" aJ -wi -hN +JM +Pe hG NX aJ @@ -6177,7 +6083,7 @@ PP yv nF yq -Xi +SR rJ Wd Wd @@ -6187,7 +6093,7 @@ Wd "} (9,1,1) = {" aJ -yb +XM oZ wb Gu @@ -6196,7 +6102,7 @@ xP bG rJ dk -Sq +rs rJ rJ rJ @@ -6210,14 +6116,14 @@ Wd (10,1,1) = {" aJ aJ -YA +Lw aJ aJ aJ rJ rJ rJ -GV +el rJ Iz Aj @@ -6231,20 +6137,20 @@ Wd "} (11,1,1) = {" ga -tC +Ex kx -wz -BY +xE +UK nG -av -wn -bc +Cw +kV +zZ rB Di gJ kN oB -Ed +BQ Wd Wd Wd @@ -6256,16 +6162,16 @@ ga RS uF vs -ks +fY aJ -uk +mt MD Qr ZJ Iz -lM -AL -Dd +Ix +lx +Se Iz Wd Wd @@ -6277,12 +6183,12 @@ Wd ga Ou be -du -nv +XI +Dp aJ Iz Iz -Ec +DP Gq Iz Iz @@ -6296,7 +6202,7 @@ Wd Wd "} (14,1,1) = {" -ga +Ki ga uD Mn @@ -6330,8 +6236,8 @@ eO wR ob Tk -MJ -hc +tn +Lv Iz Wd Wd @@ -6341,15 +6247,15 @@ Wd "} (16,1,1) = {" Wd +Ki ga -ga -rj +vi Ef HA Um -nH +LH Cr -AU +Cf CW CW Gj @@ -6367,15 +6273,15 @@ Wd ga dh Kz -BT +wU aJ -pB +dY PX RU Yl Fl -OC -Zv +zB +iX CW Wd Wd @@ -6386,16 +6292,16 @@ Wd (18,1,1) = {" Wd Wd -ga +Ki ga aJ aJ aJ Iz -Gh +fx rV wm -mF +VO NU KL CW @@ -6412,14 +6318,14 @@ Wd Iz Iz Iz -wJ -Xz +OB +FW ui pV wm qM aW -YO +ab CW Wd Wd @@ -6436,7 +6342,7 @@ AV wM Vh EH -im +OR ZB ni ni @@ -6459,12 +6365,12 @@ OK Hk hr BX -cQ +NN ni -Cu -PN -zQ -WM +SZ +hu +mQ +wX kJ Wd Wd @@ -6477,13 +6383,13 @@ Wd Wd Iz Iz -Oe +ZI ok tm wI -Ln +sB ni -tl +Il KZ gS uw @@ -6499,16 +6405,16 @@ Wd Wd Wd jR -lo -xj +OJ +Iu uu NR FF PS ft -LB -JE -bM +Ke +RG +jm ni Wd Wd @@ -6521,13 +6427,13 @@ Wd Wd Wd jR -aq -Lu +yO +iL FB -pR -Bj +Xu +hH ni -hz +UX ni ni ni @@ -6545,13 +6451,13 @@ Wd Ly Ly Ly -cK +vt Ly FZ FZ FZ FZ -wh +sl yy FZ bV @@ -6565,17 +6471,17 @@ Wd Wd Wd Ly -tq +Zq yL ZN za FZ -aX -Ua +Qk +Hq FZ rw Ms -No +xz FZ Wd Wd @@ -6589,12 +6495,12 @@ Wd Kd Rb pL -WC +oo Ly FZ -gP +oV te -cS +uU Rt JN yQ @@ -6611,15 +6517,15 @@ Wd Kd Qn FI -JD +hF Ly -Gm +Hc sR pz -tU +KM pd -hM -WZ +Qi +gG HH Wd Wd @@ -6631,17 +6537,17 @@ Wd Wd Wd Ly -qO +SH op vc Ly -ei +ZX SF -Yg -LK +gQ +Ub Nd mK -oJ +Zh FZ FZ vY @@ -6658,15 +6564,15 @@ AH HM Ly FZ -st +Dx FZ FZ -gx +aU JI SE Ak OP -vQ +tO Wd "} (31,1,1) = {" @@ -6682,24 +6588,24 @@ aT WX bQ uX -hJ +ay vw om nI ps nU -pW -Wd +Rs +CB "} (32,1,1) = {" Wd Wd Wd Ly -bn +rU qq YY -rW +JX Ly cF VT @@ -6707,9 +6613,9 @@ tH Xy YK cw -rv +EL yl -fL +ro Gg Wd "} @@ -6720,15 +6626,15 @@ Wd Ly Ly Ly -Vq +Qf Ly Ly -Ra +Jd cs ug FZ FZ -kt +YR FZ FZ FZ @@ -6740,19 +6646,19 @@ Wd Wd Wd WH -Ik +zy ql wr -lU +zw WH FZ -ZV -Zo +CV +iQ FZ ck rP UA -oh +pD aP IC Wd @@ -6762,19 +6668,19 @@ Wd Wd Wd WH -fz -no +Tj +Uy Gd NH Ls -Ys +Ka Mw tA FZ nj -Th -ku -Th +NE +KD +Tn Yj bp Wd @@ -6784,19 +6690,19 @@ Wd Wd Wd EA -jO +Uu pQ Ax ww zD zD Wl -WF +Wm FZ -cj +gm JV -Cc -sd +kW +Mi zf fb Wd @@ -6813,7 +6719,7 @@ Xc WH hO tk -jn +Jm FZ FZ FZ @@ -6837,10 +6743,10 @@ WH Ot Wu jG -ip -ak -yk -zJ +wk +BR +EV +Yz jG jG Wd @@ -6853,9 +6759,9 @@ WH Vu Xe cc -Fy +rY WH -VH +hi bx Te IE @@ -6863,7 +6769,7 @@ XO Fi hh AY -YM +ce dW Wd "} @@ -6885,7 +6791,7 @@ Fd Xf Qb yC -ZQ +XH jG Wd "} @@ -6894,18 +6800,18 @@ Wd Wd Wd WH -RQ +gw wg UI PF WH -AM +ZH JY -tF +Nk jG sp RN -xB +eW DF jG sN @@ -6922,7 +6828,7 @@ WH WH WH WH -jh +EO QP jG jo @@ -6939,16 +6845,16 @@ Wd Wd iH lr -gL -RF +gE +Ci BE Vj iH HC -HQ +zC jG -mf -sv +Vm +se Wh jG sN @@ -6960,18 +6866,18 @@ Wd Wd Wd iH -dd +VB fW eo BZ rZ am wD -Od +JA WH jG jG -ZA +vm sN Wd Wd @@ -6985,11 +6891,11 @@ iH rA jl bU -Zc -IU +oc +Sp iH HP -Ay +Im WH sN Wd @@ -7010,7 +6916,7 @@ iH iH iH iH -EA +Fv WH QT Wd diff --git a/_maps/shuttles/shiptest/minutemen_cepheus.dmm b/_maps/shuttles/shiptest/minutemen_cepheus.dmm index 18bbdf9aebea..d7f424d36c01 100644 --- a/_maps/shuttles/shiptest/minutemen_cepheus.dmm +++ b/_maps/shuttles/shiptest/minutemen_cepheus.dmm @@ -1,43 +1,49 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/obj/effect/turf_decal/arrows{ - dir = 1; - pixel_y = -12 - }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/robot_debris, -/obj/structure/closet/wall{ - dir = 8; - icon_door = "red_wall"; - name = "Roboticists Locker"; - pixel_x = 28 +/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/under/rank/rnd/roboticist, -/obj/item/clothing/under/rank/rnd/roboticist/skirt, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/head/beret/sci, -/obj/item/clothing/suit/longcoat/roboblack, -/obj/item/clothing/suit/longcoat/robowhite, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) +"ae" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/science/robotics) "ag" = ( /obj/structure/sign/minutemen, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/atmospherics) "ak" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 1 +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cepheus_windows"; + name = "External Shutters" }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"an" = ( +/turf/closed/wall/mineral/plastitanium, /area/ship/engineering/atmospherics) "aE" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"aU" = ( /obj/machinery/pipedispenser, /obj/structure/railing{ dir = 2; @@ -49,664 +55,628 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"aS" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +"aW" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ship/crew/dorm) +"bb" = ( +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/head/helmet/space/light/engineer, +/obj/item/clothing/suit/space/engineer, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/light/directional/east, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 22 }, -/turf/open/floor/plasteel/stairs, +/obj/machinery/firealarm/directional/north{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"aW" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/structure/closet/crate/trashcart, -/obj/item/trash/can, -/obj/item/trash/waffles, -/obj/item/trash/chips, -/obj/item/trash/energybar, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) "bh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "engine fuel pump" - }, -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_x = 8 - }, -/obj/effect/turf_decal/steeldecal/steel_decals6{ - dir = 6 +/obj/structure/closet/wall{ + dir = 4; + icon_door = "yellow_wall"; + name = "engineering closet"; + pixel_x = -28 }, -/obj/effect/decal/cleanable/robot_debris, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/steeldecal/steel_decals_central6, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/accessory/armband/engine, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/head/beret/eng/hazard, +/obj/item/storage/backpack/industrial, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/head/hardhat/dblue, /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) "bn" = ( -/obj/effect/turf_decal/corner/transparent/black/half{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/toy/cards/deck{ - pixel_x = -3 +/obj/item/storage/bag/tray, +/obj/item/storage/box/donkpockets{ + pixel_x = 8; + pixel_y = 8 }, -/obj/item/trash/chips{ - pixel_x = 7; +/obj/item/storage/box/donkpockets{ + pixel_x = 6; pixel_y = 6 }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/structure/table/reinforced, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"bu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "engine fuel pump" - }, -/obj/effect/decal/cleanable/dirt/dust, +"bz" = ( /obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) -"by" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_y = 4; - pixel_x = 6 - }, -/obj/machinery/light, -/obj/structure/sign/poster/official/the_owl{ - pixel_x = 32 - }, -/obj/structure/sign/poster/contraband/peacemaker{ - pixel_y = -32 - }, -/obj/item/phone{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/clothing/gloves/krav_maga/sec{ - pixel_x = -9 + dir = 10 }, -/obj/item/clothing/head/beret/sec/warden{ - pixel_x = -4 +/obj/structure/railing{ + dir = 8; + layer = 4.1 }, -/turf/open/floor/plasteel/tech, -/area/ship/security) -"bI" = ( -/obj/machinery/power/smes/shuttle/precharged{ +/obj/machinery/computer/crew/syndie{ dir = 4 }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/machinery/door/poddoor{ - id = "cepheus_engines"; - name = "Engine Blast Door" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"bW" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black, /obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs{ - icon_state = "stairs-old"; dir = 8 }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, /area/ship/bridge) "bX" = ( /obj/effect/turf_decal/techfloor/orange, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/analyzer{ - pixel_x = 3; - pixel_y = -4 +/obj/effect/turf_decal/techfloor/hole/right, +/obj/structure/closet/secure_closet/engineering_welding{ + anchored = 1; + req_access = null }, -/obj/item/analyzer{ - pixel_y = -1 +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-8" }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/electrical) "cg" = ( /obj/effect/turf_decal/techfloor, -/obj/item/circuitboard/mecha/odysseus/peripherals{ - pixel_x = 2; - pixel_y = 8 - }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) "cl" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/obj/machinery/porta_turret/centcom_shuttle/ballistic{ + dir = 5; + name = "ship turret"; + on = 0 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/science/robotics) +"cF" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" }, -/obj/structure/railing{ - dir = 4; - layer = 3.1 +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/techfloor/hole{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"cB" = ( -/obj/structure/bed, -/obj/structure/curtain/cloth/grey, -/obj/item/bedsheet/dorms, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"cF" = ( -/obj/structure/chair/office{ - dir = 1 +/obj/item/pen{ + pixel_x = -4; + pixel_y = 1 }, -/obj/effect/turf_decal/steeldecal/steel_decals7, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 +/obj/item/book/manual/wiki/engineering_singulo_tesla{ + pixel_x = 5; + pixel_y = 14 }, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, +/obj/machinery/button/door{ + dir = 1; + id = "cepheus_engines"; + name = "Engine Shutters"; + pixel_x = 9; + pixel_y = -23 + }, /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) "cH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/science/robotics) -"cN" = ( -/obj/machinery/door/poddoor/shutters{ - id = "cepheus_cargo"; - name = "Cargo Shutter" +/obj/effect/turf_decal/arrows{ + dir = 1; + pixel_y = -12 }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - id = "cepheus_cargo_holo"; - locked = 1; +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-5" +/obj/effect/decal/cleanable/robot_debris, +/obj/structure/closet/wall{ + dir = 8; + icon_door = "red_wall"; + name = "Roboticists Locker"; + pixel_x = 28 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/item/clothing/under/rank/rnd/roboticist, +/obj/item/clothing/under/rank/rnd/roboticist/skirt, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/head/beret/sci, +/obj/item/clothing/suit/longcoat/roboblack, +/obj/item/clothing/suit/longcoat/robowhite, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/cargo) -"cX" = ( -/obj/effect/turf_decal/corner/transparent/beige/full, -/obj/effect/turf_decal/corner/transparent/beige/diagonal, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"db" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/glass{ - pixel_x = 11; - pixel_y = 9 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"dg" = ( -/obj/structure/closet/secure_closet/freezer/wall{ - dir = 4; - pixel_x = -28 + dir = 8; + pixel_y = -10 }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"dg" = ( +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 20 }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/mirror{ + pixel_x = 1; + pixel_y = 32 }, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/garbage, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/central) +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/dorm) "di" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, /obj/structure/railing{ - dir = 4; + dir = 8; layer = 4.1 }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fireaxecabinet{ + pixel_y = 27 }, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) "dp" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/red/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ - icon_state = "1-8" + icon_state = "0-4" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech, /area/ship/security) "dq" = ( -/obj/machinery/computer/cargo/express{ - dir = 8 - }, /obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/structure/railing{ - dir = 2; - layer = 4.1 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 1 + dir = 5 }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"dy" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/industrial/loading, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner_techfloor_grid, -/obj/structure/cable{ - icon_state = "4-10" - }, -/obj/structure/cable{ - icon_state = "4-9" - }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"dI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +"dy" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"dK" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "cepheus_cargo"; + name = "Cargo Shutter" + }, +/turf/open/floor/plasteel/patterned/ridged, +/area/ship/cargo) +"dA" = ( /obj/machinery/door/poddoor{ - id = "cepheus_engines"; - name = "Engine Blast Door" + id = "cepheus_mech_1"; + name = "Mechbay Shutters" }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"ec" = ( -/obj/machinery/door/airlock/external, +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) +"dI" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/item/mecha_ammo/scattershot{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/wrapping, +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) -"ee" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/organ/tongue/robot, -/obj/item/mmi/posibrain{ - pixel_x = 8 - }, -/obj/item/clothing/glasses/hud/diagnostic{ - pixel_y = 5; - pixel_x = -3 +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"dV" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 8 }, -/obj/item/clothing/glasses/hud/diagnostic{ - pixel_y = 2; - pixel_x = -1 +/obj/structure/railing{ + color = "#808080"; + dir = 4; + layer = 4.1 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/obj/structure/sign/poster/contraband/shamblers_juice{ + pixel_x = 32 }, -/turf/open/floor/plasteel/tech/techmaint, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"en" = ( -/obj/structure/bed, -/obj/structure/curtain/cloth/grey, -/obj/item/bedsheet/dorms, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = -22; - dir = 1 - }, -/obj/machinery/newscaster{ - dir = 8; - pixel_x = 31 +"ea" = ( +/obj/machinery/door/poddoor{ + id = "cepheus_mech_2"; + name = "Mechbay Shutters" }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) "eu" = ( /obj/effect/turf_decal/techfloor{ - dir = 1 + dir = 9 + }, +/obj/effect/turf_decal/techfloor/corner, +/mob/living/simple_animal/bot/secbot/beepsky/jr, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/button/door{ + dir = 4; + id = "cepheus_armoury"; + name = "Armoury Lockdown"; + pixel_x = -23; + pixel_y = -10 }, -/obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel/tech/grid, /area/ship/security) -"eT" = ( -/obj/machinery/processor, -/obj/effect/decal/cleanable/xenoblood{ - pixel_x = 7 - }, -/obj/effect/turf_decal/corner_techfloor_gray/full{ +"ey" = ( +/obj/effect/turf_decal/techfloor/orange{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) -"ff" = ( -/obj/structure/window/reinforced{ +/obj/effect/turf_decal/techfloor/orange/corner{ dir = 4 }, -/obj/structure/curtain/bounty, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/shower{ - pixel_y = 19 +/obj/structure/railing/corner{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/catwalk_floor, -/area/ship/security) -"fr" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 +/obj/structure/sign/warning/explosives/alt{ + pixel_x = -32 }, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/hardline_small/right{ dir = 4 }, -/obj/effect/turf_decal/trimline/opaque/red/line{ +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"eQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/carpet/royalblue, +/area/ship/crew/dorm) +"eW" = ( +/obj/item/clothing/under/rank/command/minutemen, +/obj/item/clothing/suit/toggle/lawyer/minutemen, +/obj/item/clothing/head/caphat/minutemen, +/obj/item/clothing/head/cowboy/sec/minutemen, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/glasses/sunglasses, +/obj/item/radio/headset/minutemen/alt/captain, +/obj/effect/turf_decal/techfloor, +/obj/structure/closet/secure_closet/wall{ + dir = 1; + icon_door = "solgov_wall"; + icon_state = "solgov_wall"; + name = "captain's locker"; + pixel_y = -28; + req_access_txt = "20" + }, +/obj/item/clothing/glasses/hud/security/sunglasses/eyepatch, +/obj/item/clothing/shoes/cowboy/white, +/obj/item/storage/belt/sabre, +/obj/item/gun/ballistic/revolver/nagant, +/obj/item/ammo_box/n762_clip, +/obj/item/clothing/suit/armor/vest/capcarapace/minutemen, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"ff" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ship/science/robotics) +"fh" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/machinery/power/terminal{ dir = 8 }, -/obj/effect/turf_decal/trimline/opaque/red/line{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/number/five, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"fq" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"fy" = ( -/obj/structure/closet/secure_closet{ - icon_state = "sec"; - name = "equipment locker"; - req_access_txt = "1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/central) +"fr" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -6 }, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/mask/gas/sechailer/minutemen, -/obj/item/clothing/mask/gas/sechailer/minutemen, -/obj/item/clothing/mask/gas/sechailer/minutemen, -/obj/item/clothing/mask/gas/sechailer/minutemen, -/obj/item/clothing/suit/armor/riot/minutemen, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/railing{ - dir = 4; - layer = 4.1 +/obj/machinery/recharger{ + pixel_x = 5 }, -/obj/item/clothing/head/helmet/bulletproof/minutemen, -/obj/item/clothing/head/helmet/bulletproof/minutemen, -/obj/item/clothing/head/helmet/riot/minutemen, -/obj/structure/sign/poster/contraband/stechkin{ - pixel_y = -32 +/obj/structure/sign/poster/contraband/d_day_promo{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/figure/secofficer{ + pixel_x = -9; + pixel_y = 14 + }, +/obj/item/screwdriver, +/obj/item/holosign_creator/security{ + pixel_x = -3; + pixel_y = 7 }, /turf/open/floor/plasteel/tech, /area/ship/security) +"fy" = ( +/obj/structure/closet/emcloset/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/oil{ + pixel_y = 11 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "fJ" = ( -/obj/effect/turf_decal/techfloor{ - dir = 1 +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + id = "cepheus_cargo_holo"; + locked = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/plasma, -/obj/effect/turf_decal/steeldecal, -/obj/structure/closet/wall{ - icon_door = "orange_wall"; - name = "Mining equipment"; - pixel_y = 28 +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/item/clothing/glasses/meson, -/obj/item/gps/mining, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/circuitboard/machine/ore_redemption, -/turf/open/floor/plasteel/dark, +/obj/structure/cable{ + icon_state = "0-6" + }, +/obj/structure/sign/minutemen{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "cepheus_cargo"; + name = "Cargo Shutter" + }, +/turf/open/floor/plasteel/patterned/ridged, /area/ship/cargo) -"fN" = ( -/obj/structure/railing{ - dir = 2; - layer = 4.1 +"fM" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = -2; + pixel_y = -3 }, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/effect/turf_decal/trimline/opaque/yellow/line, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/robot_debris, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"fN" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/dorm) +"fX" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Kitchen" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, +/obj/effect/decal/cleanable/food/egg_smudge{ + pixel_x = 11; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"fX" = ( -/obj/item/storage/bag/tray, -/obj/item/storage/box/donkpockets{ - pixel_x = 8; - pixel_y = 8 +"fY" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 6 +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "cepheus_windows"; + name = "External Shutters" }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"gi" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/paper_bin{ pixel_x = -8; - pixel_y = 2 + pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; +/obj/item/stamp/captain{ pixel_x = -8; pixel_y = 12 }, -/obj/machinery/reagentgrinder{ - pixel_y = 5 +/obj/item/stamp/head_of_personnel{ + pixel_x = -10; + pixel_y = 10 }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) -"gf" = ( -/obj/effect/turf_decal/techfloor{ - dir = 9 +/obj/item/newspaper, +/obj/item/desk_flag{ + pixel_x = 10 }, -/obj/structure/closet/wall/orange{ - dir = 4; - pixel_x = -28; - name = "Pilot's Locker" +/obj/machinery/button/door{ + id = "cepheus_windows"; + name = "Window Shutters"; + pixel_x = -10; + pixel_y = 23 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/head/beret/sec/officer, -/obj/item/clothing/shoes/combat/swat, -/obj/item/clothing/gloves/tackler/dolphin, -/obj/item/clothing/mask/bandana/skull, -/obj/item/clothing/accessory/holster, -/obj/item/clothing/suit/armor/vest/alt, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/button/door{ + id = "cepheus_bridge"; + name = "Bridge Shutters"; + pixel_x = 1; + pixel_y = 23 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) -"gC" = ( -/obj/effect/turf_decal/techfloor/corner{ +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"go" = ( +/obj/machinery/cryopod{ dir = 8 }, -/obj/item/mecha_ammo/scattershot{ - pixel_x = 9; - pixel_y = 8 +/obj/effect/turf_decal/techfloor{ + dir = 5 }, -/obj/effect/decal/cleanable/wrapping, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/rip_badger{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/crew/dorm) +"gu" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/greenglow{ + pixel_y = -10 + }, +/obj/effect/turf_decal/industrial/caution, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"gF" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/effect/turf_decal/rechargefloor, -/obj/structure/sign/poster/official/get_your_legs{ - pixel_x = -32 + dir = 5 }, -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/light{ - dir = 1 +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/electrical) +"gC" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/glass{ + pixel_x = 11; + pixel_y = 9 }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - dir = 4; - id = "cepheus_mech_1_holo"; - locked = 1 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/telecomms_floor, +/turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) "gG" = ( -/obj/item/detective_scanner, -/obj/item/holosign_creator/security{ - pixel_x = 6; - pixel_y = 4 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 }, -/obj/item/holosign_creator/security{ - pixel_x = 2 +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 10 }, -/obj/item/key/security, -/obj/structure/closet/secure_closet/wall{ - dir = 1; - icon_door = "red_wall"; - icon_state = "generic_wall"; - name = "Utility locker"; - pixel_y = -28; - req_access_txt = "1" +/obj/item/kirbyplants{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/trimline/opaque/red/line, /turf/open/floor/plasteel/dark, /area/ship/security) -"gS" = ( -/obj/effect/turf_decal/siding/white, -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "gT" = ( /obj/effect/turf_decal/siding/white, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ship/hallway/central) -"hc" = ( -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/head/helmet/space/light/engineer, -/obj/item/clothing/suit/space/engineer, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 1 - }, -/obj/machinery/light{ +"hd" = ( +/obj/structure/frame/computer{ + anchored = 1; dir = 4 }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 22 - }, -/obj/machinery/firealarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"hd" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"hr" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 }, @@ -727,14 +697,33 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"hr" = ( +"hA" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/rechargefloor, +/obj/structure/sign/minutemen{ + pixel_y = 32 + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 8; + id = "cepheus_mech_1_holo"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/science/robotics) +"im" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, -/obj/effect/turf_decal/trimline/opaque/red/line{ +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/turf_decal/trimline/opaque/red/warning{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/opaque/red/corner, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, @@ -743,261 +732,230 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"hv" = ( -/obj/effect/turf_decal/corner/transparent/beige/full, -/obj/effect/turf_decal/corner/transparent/beige/diagonal, -/obj/effect/turf_decal/corner/transparent/black/half{ - dir = 8 - }, -/obj/structure/railing{ - color = "#A47449"; - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"hA" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine/hull, -/area/ship/engineering/electrical) -"im" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ +"ir" = ( +/obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/trimline/opaque/red/line{ - dir = 1 +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/industrial/caution, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security) +"is" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/turf_decal/arrows{ + pixel_y = 15 }, -/obj/effect/turf_decal/trimline/opaque/red/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/railing{ + color = "#808080"; + dir = 4; + layer = 4.1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/item/circuitboard/mecha/ripley/peripherals{ + pixel_x = -5; + pixel_y = 4 }, /turf/open/floor/plasteel/dark, -/area/ship/security) +/area/ship/science/robotics) "it" = ( -/obj/effect/turf_decal/techfloor{ - dir = 6 - }, +/obj/effect/turf_decal/techfloor, /obj/effect/turf_decal/industrial/loading{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"iy" = ( -/obj/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/steeldecal/steel_decals9{ dir = 4 }, -/obj/structure/bed/pod, -/turf/open/floor/plasteel/tech, -/area/ship/security) +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "iz" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/engineering/electrical) -"iF" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cepheus_bridge"; - name = "Blast Shutters" +/obj/machinery/mech_bay_recharge_port{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/bridge) -"jm" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/rechargefloor, +/obj/structure/sign/warning/vacuum{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; dir = 8; - color = "#808080" + id = "cepheus_mech_2_holo"; + locked = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/science/robotics) +"iM" = ( +/obj/machinery/porta_turret/centcom_shuttle/ballistic{ + dir = 8; + name = "ship turret"; + on = 0 + }, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/engineering/atmospherics) +"jl" = ( +/obj/machinery/porta_turret/centcom_shuttle/ballistic{ + dir = 6; + name = "ship turret"; + on = 0 + }, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) "jp" = ( /obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/techfloor/hole, /obj/effect/turf_decal/industrial/loading{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, /turf/open/floor/plasteel/dark, /area/ship/cargo) "jx" = ( /obj/effect/turf_decal/techfloor{ - dir = 5 + dir = 1 + }, +/obj/effect/turf_decal/techfloor/hole/right{ + dir = 1 }, -/obj/structure/railing/corner, /obj/effect/turf_decal/industrial/loading, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/cargo) "jK" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/sign/poster/retro/we_watch{ - pixel_y = 32 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) -"kv" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = 21 }, -/obj/structure/sign/departments/engineering{ - pixel_y = 32 +/obj/structure/closet/crate/science, +/obj/item/storage/box/stockparts/t2{ + pixel_x = -5; + pixel_y = 2 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"kA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/item/survey_handheld{ + pixel_x = 7 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +/obj/item/clothing/glasses/science{ + pixel_x = -2; + pixel_y = -6 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"jR" = ( +/obj/structure/railing{ + dir = 1; + layer = 4.1 }, -/obj/machinery/holopad/emergency/engineering, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/electrical) -"kC" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 9; - pixel_y = 4 +/obj/machinery/computer/monitor, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"jU" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/railing{ + dir = 4; + layer = 4.1 }, -/obj/item/flashlight/lamp{ - pixel_y = 1; - pixel_x = -7 +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 }, /turf/open/floor/plasteel/tech, -/area/ship/security) -"kG" = ( +/area/ship/engineering/atmospherics) +"kg" = ( /obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 + dir = 4 }, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/techfloor{ dir = 4 }, -/obj/effect/turf_decal/trimline/opaque/red/line{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, -/obj/effect/turf_decal/trimline/opaque/red/line{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/airlock/hatch{ - name = "Security" +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"kv" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cepheus_bridge_lockdown"; - name = "Blast Shutters" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"kA" = ( +/obj/effect/turf_decal/steeldecal/steel_decals9, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"kN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cepheus_bridge_lockdown"; - name = "Blast Shutters" - }, -/obj/machinery/door/airlock/highsecurity, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"kG" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/grunge{ + name = "Bathroom" }, -/turf/open/floor/plasteel, -/area/ship/bridge) +/turf/open/floor/plasteel/patterned, +/area/ship/crew/dorm) "lc" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" - }, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"lf" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"ls" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 - }, -/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/stairs{ - icon = 'icons/obj/stairs.dmi' - }, -/area/ship/engineering/electrical) "lu" = ( -/obj/effect/turf_decal/siding/white/corner{ +/obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/effect/turf_decal/siding/white/corner{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" - }, /turf/open/floor/plasteel, /area/ship/hallway/central) "lx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -1007,19 +965,25 @@ /turf/open/floor/plasteel, /area/ship/hallway/central) "lA" = ( -/obj/effect/turf_decal/siding/wood{ +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/machinery/camera/autoname{ dir = 10 }, -/obj/machinery/airalarm/directional/south, -/obj/structure/dresser, -/turf/open/floor/wood/birch, +/turf/open/floor/plasteel/telecomms_floor, /area/ship/crew/dorm) "lF" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Cargo Bay" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -1030,74 +994,85 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"lK" = ( -/obj/machinery/power/smes/shuttle/precharged{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" +/turf/open/floor/plasteel, +/area/ship/cargo) +"lV" = ( +/obj/machinery/suit_storage_unit/independent/pilot, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 22 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/science/robotics) +"lX" = ( +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/red/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, /obj/machinery/door/poddoor{ - id = "cepheus_engines"; - name = "Engine Blast Door" + dir = 4; + id = "cepheus_armoury"; + name = "Armoury Shutter" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"lQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ship/security) +"me" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/sign/departments/cargo{ + pixel_x = -32 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"lR" = ( -/obj/structure/railing{ - dir = 2; - layer = 4.1 +/obj/structure/closet/crate/bin, +/obj/item/trash/plate, +/obj/item/trash/cheesie{ + pixel_x = 4; + pixel_y = -4 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 +/obj/item/trash/sosjerky{ + pixel_x = -3; + pixel_y = -3 }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/plasteel/showroomfloor, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, /area/ship/hallway/central) -"lS" = ( -/obj/structure/table, -/obj/machinery/computer/secure_data/laptop{ +"mf" = ( +/obj/structure/closet/firecloset/wall{ dir = 8; - pixel_y = 6; - pixel_x = 5 - }, -/obj/item/trash/can/food{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" + pixel_x = 28 }, -/obj/machinery/button/door{ - id = "cepheus_armoury"; - name = "Armoury Lockdown"; - pixel_x = 23; - pixel_y = 10; - dir = 8 +/obj/effect/decal/cleanable/plasma, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/turf/open/floor/plasteel/tech, -/area/ship/security) -"lX" = ( +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"mn" = ( /obj/structure/railing{ dir = 4; layer = 4.1 @@ -1116,251 +1091,208 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/security) -"me" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 +"mB" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/obj/effect/turf_decal/siding/thinplating/corner{ +/obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/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/line{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"mf" = ( -/obj/machinery/power/shuttle/engine/fueled/plasma{ +/obj/effect/turf_decal/trimline/opaque/red/line{ dir = 4 }, -/turf/open/floor/plating/airless, -/area/ship/engineering/electrical) -"mj" = ( -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/radio/headset/minutemen, -/obj/item/radio/headset/minutemen, -/obj/item/radio/headset/minutemen, -/obj/item/radio/headset/minutemen, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/retro/radio{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"mH" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, -/obj/structure/closet/wall{ - pixel_y = 28; - name = "uniform closet" +/obj/structure/rack, +/obj/item/circuitboard/machine/circuit_imprinter{ + pixel_y = -6 }, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, +/obj/item/circuitboard/machine/rdserver, +/obj/item/circuitboard/computer/rdconsole{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/science/robotics) +"mK" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/cloth/grey, /turf/open/floor/carpet/royalblue, /area/ship/crew/dorm) -"mn" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/machinery/computer/secure_data/laptop{ - dir = 4; - pixel_x = -8; - pixel_y = 5 +"mS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/wood/birch{ + icon_state = "wood-broken7" }, -/turf/open/floor/plasteel/tech, -/area/ship/security) +/area/ship/crew/dorm) "mY" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/door/airlock/grunge{ - name = "Engineering" +/obj/structure/curtain/bounty, +/turf/open/floor/plasteel/stairs{ + dir = 1; + icon = 'icons/obj/stairs.dmi' }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/area/ship/crew/dorm) +"nc" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/crew/dorm) +"ng" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical{ + pixel_y = -4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/item/multitool{ + pixel_x = 9 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"ng" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 1 +/obj/item/geiger_counter{ + pixel_x = 1 }, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) +"nr" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/sign/departments/engineering{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "nG" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 28 + }, /obj/effect/turf_decal/techfloor/orange{ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/greenglow{ - pixel_y = -10 - }, -/obj/effect/turf_decal/industrial/caution, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" }, +/obj/structure/cable{ + icon_state = "2-4" + }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/electrical) "nN" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/structure/curtain/cloth/grey, -/turf/open/floor/carpet/royalblue, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood/birch, /area/ship/crew/dorm) "nT" = ( -/obj/effect/turf_decal/trimline/opaque/yellow/warning{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/caution{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ dir = 8 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/hole/right{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) "og" = ( +/obj/machinery/computer/mech_bay_power_console, /obj/effect/turf_decal/rechargefloor, -/obj/machinery/door/firedoor/border_only, -/obj/structure/mecha_wreckage/durand/cmm, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/science/robotics) -"ol" = ( +/obj/structure/sign/minutemen{ + pixel_y = 32 + }, /obj/machinery/power/shieldwallgen/atmos{ anchored = 1; - id = "cepheus_cargo_holo"; + dir = 4; + id = "cepheus_mech_2_holo"; locked = 1 }, -/obj/machinery/door/poddoor/shutters{ - id = "cepheus_cargo"; - name = "Cargo Shutter" - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, /obj/structure/cable{ - icon_state = "0-6" - }, -/obj/structure/sign/minutemen{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 + icon_state = "0-2" }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/cargo) -"om" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4 +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/science/robotics) +"oo" = ( +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 8 }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) -"oy" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/glass{ - amount = 40; - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/stack/sheet/mineral/plastitanium{ - amount = 50 - }, -/obj/item/stack/sheet/metal/fifty{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/stack/sheet/plasteel/five{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -23; - pixel_x = 9 +/area/ship/security) +"pc" = ( +/obj/effect/turf_decal/techfloor, +/obj/item/mecha_parts/mecha_equipment/cable_layer{ + pixel_x = -6; + pixel_y = 6 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -21; - pixel_x = -6 +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_x = 7 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) -"oH" = ( -/obj/structure/table/reinforced{ - color = "#c1b6a5" - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/book/manual/wiki/engineering_singulo_tesla{ - pixel_x = 5; - pixel_y = 14 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"pq" = ( +/obj/machinery/suit_storage_unit/independent/pilot, +/obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 }, -/obj/machinery/button/door{ - id = "cepheus_engines"; - name = "Engine Shutters"; - pixel_y = -23; - dir = 1; - pixel_x = 9 +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/sign/poster/contraband/engis_unite{ + pixel_x = 32 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/electrical) -"pc" = ( -/turf/closed/wall/mineral/plastitanium, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/science/robotics) -"pq" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/item/soap/deluxe, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/dorm) "pr" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -1368,9 +1300,6 @@ /obj/effect/turf_decal/trimline/opaque/red/line{ dir = 1 }, -/obj/structure/sign/minutemen{ - pixel_y = 32 - }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -1380,334 +1309,254 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"pu" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/turf_decal/arrows{ - pixel_y = 15 - }, -/obj/structure/railing{ - dir = 4; - layer = 4.1; - color = "#808080" - }, -/obj/item/circuitboard/mecha/ripley/peripherals{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"pB" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers, -/obj/structure/railing{ - dir = 8; - layer = 4.1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fireaxecabinet{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) "pD" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "2-8" }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "pQ" = ( -/obj/machinery/suit_storage_unit/independent/pilot, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/sign/poster/contraband/engis_unite{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/science/robotics) -"pS" = ( -/obj/machinery/suit_storage_unit/independent/pilot, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 22 - }, -/obj/machinery/camera/autoname{ - dir = 9 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/science/robotics) -"pV" = ( -/obj/effect/turf_decal/steeldecal/steel_decals10{ +/obj/effect/turf_decal/techfloor{ dir = 6 }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/decal/cleanable/glass{ - pixel_x = 11; - pixel_y = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) +"pV" = ( /obj/structure/cable{ - icon_state = "6-8" + icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "5-8" +/turf/open/floor/plasteel/stairs{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, /area/ship/engineering/electrical) "pW" = ( +/obj/structure/table/reinforced, /obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 10 }, /obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 9 }, -/obj/effect/turf_decal/steeldecal/steel_decals2, -/obj/structure/chair/office{ - dir = 8; - name = "tactical swivel chair" +/obj/machinery/computer/secure_data/laptop{ + dir = 4; + pixel_x = -8; + pixel_y = 5 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /turf/open/floor/plasteel/tech, /area/ship/security) -"ql" = ( -/obj/structure/curtain/bounty, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 1 +"qb" = ( +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/radio/headset/minutemen, +/obj/item/radio/headset/minutemen, +/obj/item/radio/headset/minutemen, +/obj/item/radio/headset/minutemen, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/retro/radio{ + pixel_x = 32 }, +/obj/structure/closet/wall{ + name = "uniform closet"; + pixel_y = 28 + }, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/turf/open/floor/carpet/royalblue, /area/ship/crew/dorm) +"qe" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder{ + pixel_x = -7 + }, +/obj/item/megaphone/sec{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -22 + }, +/obj/item/firing_pin{ + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"qk" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/sign/poster/contraband/space_cola{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "qn" = ( -/obj/effect/turf_decal/siding/thinplating/dark/corner, /obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 4 + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 }, -/obj/effect/turf_decal/techfloor{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "4-8" }, /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 + icon_state = "2-8" }, /turf/open/floor/plasteel/tech, /area/ship/bridge) "qq" = ( /obj/effect/turf_decal/corner/transparent/beige/full, /obj/effect/turf_decal/corner/transparent/beige/diagonal, -/obj/effect/turf_decal/corner/transparent/black/half{ - dir = 4 - }, -/obj/structure/closet/wall{ - dir = 8; - icon_door = "grey_wall"; - pixel_x = 28 - }, -/obj/item/kitchen/knife/plastic{ - pixel_x = 8 - }, -/obj/item/kitchen/knife/plastic{ - pixel_x = 8 - }, -/obj/item/kitchen/knife/plastic{ - pixel_x = 8 - }, -/obj/item/kitchen/knife/plastic{ - pixel_x = 8 - }, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/reagent_containers/glass/bowl{ - pixel_x = 2 - }, -/obj/item/reagent_containers/glass/bowl{ - pixel_x = 2 - }, -/obj/item/reagent_containers/glass/bowl{ - pixel_x = 2 - }, -/obj/item/reagent_containers/glass/bowl{ - pixel_x = 2 - }, -/obj/item/reagent_containers/glass/bowl{ - pixel_x = 2 +/obj/effect/decal/cleanable/glass{ + pixel_x = 11; + pixel_y = 9 }, /turf/open/floor/plasteel, /area/ship/hallway/central) "qs" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/bridge) -"qx" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/door/airlock/hatch{ - name = "Cargo Bay" +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/sign/poster/official/moth/hardhats{ + pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"qI" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"qK" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/engineering/atmospherics) -"qT" = ( /obj/effect/turf_decal/techfloor{ - dir = 1 + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 }, /obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) -"qW" = ( -/obj/effect/turf_decal/techfloor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 + icon_state = "2-8" }, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) -"ra" = ( -/obj/effect/turf_decal/techfloor{ +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"qJ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, -/obj/structure/table/reinforced{ - color = "#c1b6a5" +/obj/effect/decal/cleanable/dirt, +/obj/item/organ/tongue/robot, +/obj/item/mmi/posibrain{ + pixel_x = 8 }, -/obj/item/paper_bin{ - pixel_x = -8; - pixel_y = 4 +/obj/item/clothing/glasses/hud/diagnostic{ + pixel_x = -3; + pixel_y = 5 }, -/obj/item/stamp/captain{ - pixel_x = -8; - pixel_y = 12 +/obj/item/clothing/glasses/hud/diagnostic{ + pixel_x = -1; + pixel_y = 2 }, -/obj/item/stamp/head_of_personnel{ - pixel_x = -10; - pixel_y = 10 +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/science/robotics) +"qK" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ship/cargo) +"qT" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/sign/warning/electricshock{ + pixel_y = 36 }, -/obj/item/newspaper, -/obj/item/desk_flag{ - pixel_x = 10 +/obj/machinery/button/shieldwallgen{ + id = "cepheus_mech_2_holo"; + pixel_y = 21 }, /obj/machinery/button/door{ - id = "cepheus_windows"; - name = "Window Shutters"; - pixel_x = -10; + id = "cepheus_mech_2"; + name = "Mechbay Shutters"; + pixel_x = 10; pixel_y = 23 }, -/obj/machinery/button/door{ - id = "cepheus_bridge"; - name = "Bridge Shutters"; - pixel_y = 23; - pixel_x = 1 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"rc" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) +"qW" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 }, -/obj/structure/chair/office{ +/obj/structure/closet/wall/orange{ dir = 4; - name = "tactical swivel chair" + name = "Pilot's Locker"; + pixel_x = -28 }, -/obj/effect/turf_decal/trimline/opaque/red/warning{ - dir = 6 +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/head/beret/sec/officer, +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/gloves/tackler/dolphin, +/obj/item/clothing/mask/bandana/skull, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/suit/armor/vest/alt, +/obj/machinery/camera/autoname{ + dir = 5 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) +"rc" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/trimline/opaque/red/warning, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, /turf/open/floor/plasteel/dark, /area/ship/security) -"rd" = ( -/obj/effect/turf_decal/techfloor/orange, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/wall/orange{ - name = "fuel locker"; - dir = 8; - pixel_x = 28 - }, -/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/stack/sheet/mineral/plasma/five, -/obj/item/stack/sheet/mineral/plasma/five{ - pixel_y = 5; - pixel_x = 5 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/electrical) "ri" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -1716,556 +1565,520 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) +"rr" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/sign/poster/retro/we_watch{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"rt" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/trimline/opaque/yellow/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/ash/large{ + pixel_x = -14; + pixel_y = -9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "rx" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/machinery/atmospherics/components/unary/tank/toxins{ dir = 1 }, /obj/effect/turf_decal/industrial/hatch/yellow, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/science/robotics) +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "rB" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, +/obj/machinery/power/apc/auto_name/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" }, -/obj/machinery/door/airlock/grunge{ - name = "Engineering" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/electrical) -"rG" = ( -/obj/structure/closet/secure_closet{ - icon_door = "tac"; - icon_state = "tac"; - name = "boarding tools locker"; - req_access_txt = "3" +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/storage/backpack/duffelbag/syndie/x4{ - icon_state = "duffel-sec"; - name = "breaching charges duffel bag" +/turf/open/floor/plasteel/stairs, +/area/ship/engineering/atmospherics) +"rH" = ( +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/item/crowbar/power{ - pixel_y = -4 +/obj/effect/decal/cleanable/plasma, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/item/door_seal, -/obj/item/door_seal, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = -32 }, -/turf/open/floor/plasteel/tech, -/area/ship/security) -"rJ" = ( -/obj/item/clothing/under/rank/command/minutemen, -/obj/item/clothing/suit/toggle/lawyer/minutemen, -/obj/item/clothing/head/caphat/minutemen, -/obj/item/clothing/head/cowboy/sec/minutemen, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/glasses/sunglasses, -/obj/item/radio/headset/minutemen/alt/captain, -/obj/effect/turf_decal/techfloor, -/obj/structure/closet/secure_closet/wall{ - icon_door = "solgov_wall"; - icon_state = "solgov_wall"; - name = "captain's locker"; - req_access_txt = "20"; - pixel_y = -28; +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/electrical) +"rU" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ dir = 1 }, -/obj/item/clothing/glasses/hud/security/sunglasses/eyepatch, -/obj/item/clothing/shoes/cowboy/white, -/obj/item/storage/belt/sabre, -/obj/item/gun/ballistic/revolver/nagant, -/obj/item/ammo_box/n762_clip, -/obj/item/clothing/suit/armor/vest/capcarapace/minutemen, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) "rZ" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, +/obj/machinery/airalarm/directional/south, +/obj/structure/dresser, /turf/open/floor/wood/birch, /area/ship/crew/dorm) "sb" = ( -/obj/effect/turf_decal/techfloor/corner, -/obj/effect/turf_decal/techfloor/corner{ - dir = 4 - }, -/obj/structure/railing/corner, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/steeldecal/steel_decals3{ - dir = 2 - }, -/obj/effect/turf_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/structure/cable{ + icon_state = "2-4" + }, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"sd" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_y = -3; - pixel_x = -2 - }, -/obj/effect/turf_decal/trimline/opaque/yellow/line, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/robot_debris, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) "se" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/structure/cable{ icon_state = "4-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, /area/ship/hallway/central) -"si" = ( -/obj/effect/turf_decal/techfloor, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -21; - pixel_x = -6 +"sm" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/dorms, +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, +/obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch{ dir = 1; - pixel_x = 7; - pixel_y = -21 + pixel_x = 8; + pixel_y = -22 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/telecomms_floor, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/carpet/royalblue, /area/ship/crew/dorm) -"sm" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/orange{ +"so" = ( +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, -/obj/structure/railing{ - dir = 4; - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/warning/gasmask{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"sz" = ( -/obj/item/mecha_parts/mecha_equipment/generator{ - pixel_x = -9; - pixel_y = -9 +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/effect/decal/cleanable/oil{ - icon_state = "streak3" +/obj/machinery/door/window/eastright{ + name = "Engine Access" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/door/poddoor{ + dir = 4; + id = "cepheus_engines"; + name = "Engine Blast Door" }, -/obj/item/stack/ore/salvage/scraptitanium{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"sz" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/turf_decal/arrows{ + pixel_y = 15 }, +/obj/structure/railing{ + color = "#808080"; + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/glass/plasma, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) "sA" = ( /obj/effect/turf_decal/siding/white{ dir = 1 }, +/obj/structure/sign/poster/official/moth/epi{ + pixel_y = 32 + }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"sX" = ( -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 1 +"sB" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 }, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/structure/closet/secure_closet/freezer/meat/open, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/central) +"sE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/power/terminal{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/sign/poster/contraband/atmosia_independence{ + pixel_y = 32 }, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "0-2" }, /turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"sH" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/turtle{ + name = "Jimmie" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, /area/ship/bridge) -"sY" = ( -/obj/effect/turf_decal/techfloor{ - dir = 1 +"sX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/item/circuitboard/mecha/durand/main{ - pixel_y = 4; - pixel_x = 5 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 36 - }, -/obj/machinery/button/shieldwallgen{ - id = "cepheus_mech_1_holo"; - pixel_y = 21 - }, -/obj/machinery/button/door{ - id = "cepheus_mech_1"; - name = "Mechbay Shutters"; - pixel_x = -10; - pixel_y = 23 +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "cepheus_bridge_lockdown"; + name = "Blast Shutters" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) -"sZ" = ( -/obj/effect/turf_decal/techfloor{ +/obj/machinery/door/airlock/highsecurity, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/button/door{ - id = "cepheus_bridge_lockdown"; - name = "Bridge lockdown"; - pixel_x = -22; +/turf/open/floor/plasteel, +/area/ship/bridge) +"te" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white/corner{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "th" = ( -/obj/structure/closet/firecloset/wall{ - dir = 8; - pixel_x = 28 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 }, -/obj/effect/decal/cleanable/plasma, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/hardline_small{ + dir = 4 }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"tx" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 +"tm" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 4 }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = -1 }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" +/obj/item/storage/belt/utility/full{ + pixel_y = 6 }, -/obj/machinery/door/poddoor{ - id = "cepheus_engines"; - name = "Engine Blast Door" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"tB" = ( -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 6 +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"tH" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 9 +/obj/item/kirbyplants{ + icon_state = "plant-03" }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 10 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 5 +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"tQ" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/rechargefloor, +/obj/structure/sign/poster/official/get_your_legs{ + pixel_x = -32 }, -/obj/machinery/power/terminal{ - dir = 1 +/obj/structure/sign/warning/vacuum{ + pixel_y = 32 }, -/obj/machinery/power/terminal, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/machinery/light/directional/north, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 4; + id = "cepheus_mech_1_holo"; + locked = 1 }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/electrical) -"tD" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 4 +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/science/robotics) +"tV" = ( +/obj/structure/guncase, +/obj/structure/railing{ + dir = 4; + layer = 4.1 }, -/obj/item/pen{ - pixel_y = 4; - pixel_x = 5 +/obj/item/gun/ballistic/automatic/pistol/m1911{ + pixel_y = 3 }, -/obj/item/stamp/hos{ - pixel_y = 9; - pixel_x = 8 +/obj/item/gun/ballistic/automatic/pistol/m1911{ + pixel_y = 3 }, -/obj/item/storage/fancy/donut_box{ - pixel_x = -10; +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/item/gun/ballistic/automatic/pistol/m1911{ pixel_y = 3 }, -/obj/structure/sign/poster/contraband/donut_corp{ - pixel_x = 32 +/obj/structure/sign/poster/contraband/twelve_gauge{ + pixel_y = 32 }, +/obj/item/gun/ballistic/shotgun/bulldog/minutemen, /turf/open/floor/plasteel/tech, /area/ship/security) -"tQ" = ( -/obj/effect/turf_decal/rechargefloor, -/obj/machinery/door/firedoor/border_only, -/obj/mecha/working/ripley/cmm{ +"tX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/royalblue, +/area/ship/crew/dorm) +"ug" = ( +/obj/effect/turf_decal/corner/transparent/beige/full, +/obj/effect/turf_decal/corner/transparent/beige/diagonal, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"uj" = ( +/obj/effect/turf_decal/techfloor/orange{ dir = 1 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/science/robotics) -"tW" = ( -/obj/effect/turf_decal/techfloor, -/obj/item/mecha_parts/mecha_equipment/cable_layer{ - pixel_x = -6; - pixel_y = 6 +/obj/effect/decal/cleanable/oil/streak, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_x = 7 +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) -"uj" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/stairs{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 }, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/electrical) -"uk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "um" = ( -/obj/machinery/computer/mech_bay_power_console, /obj/effect/turf_decal/rechargefloor, -/obj/structure/sign/minutemen{ - pixel_y = 32 +/obj/machinery/door/firedoor/border_only, +/obj/mecha/working/ripley/cmm{ + dir = 1 }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/science/robotics) +"uo" = ( /obj/machinery/power/shieldwallgen/atmos{ anchored = 1; - dir = 8; - id = "cepheus_mech_1_holo"; + dir = 1; + id = "cepheus_cargo_holo"; locked = 1 }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "0-5" }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/science/robotics) -"uK" = ( -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/structure/railing{ - dir = 8; - layer = 3.1 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/item/radio/intercom{ - pixel_y = 23 +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "cepheus_cargo"; + name = "Cargo Shutter" }, -/obj/item/clothing/suit/space/hardsuit/security/independent/minutemen, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plasteel/patterned/ridged, +/area/ship/cargo) +"uO" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/red/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, /area/ship/security) "uS" = ( -/obj/effect/turf_decal/techfloor/corner{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/decal/cleanable/oil, /obj/structure/cable{ icon_state = "4-8" }, +/obj/structure/cable{ + icon_state = "1-4" + }, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) "uX" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/atmospherics) -"vc" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/security) "vj" = ( /obj/effect/turf_decal/techfloor, -/obj/effect/turf_decal/techfloor/hole, -/obj/effect/turf_decal/industrial/loading{ - dir = 1 +/obj/machinery/button/door{ + dir = 1; + id = "cepheus_cargo"; + name = "Cargo Shutters"; + pixel_x = -10; + pixel_y = -23 + }, +/obj/machinery/button/shieldwallgen{ + dir = 1; + id = "cepheus_cargo_holo"; + pixel_y = -21 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"vw" = ( +"vJ" = ( /obj/structure/table/reinforced, -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2 - }, -/obj/item/book/manual/wiki/robotics_cyborgs{ - pixel_y = 3; - pixel_x = -3 +/obj/item/stack/sheet/glass{ + amount = 40; + pixel_x = 3; + pixel_y = -4 }, -/obj/item/clothing/glasses/welding{ - pixel_y = -5; - pixel_x = 6 +/obj/item/stack/sheet/mineral/plastitanium{ + amount = 50 }, -/obj/item/clothing/glasses/welding{ - pixel_y = -1; - pixel_x = 6 +/obj/item/stack/sheet/metal/fifty{ + pixel_x = 4; + pixel_y = 3 }, -/obj/item/toy/figure/roboticist{ - pixel_x = 7; - pixel_y = 11 +/obj/item/stack/sheet/plasteel/five{ + pixel_x = -7; + pixel_y = 1 }, -/obj/item/disk/design_disk/cmm_mechs{ - pixel_y = -12 +/obj/machinery/firealarm/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"vC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/techfloor{ - dir = 1 +"vQ" = ( +/obj/machinery/door/airlock/hatch{ + name = "Mech Bay" }, -/obj/effect/turf_decal/techfloor, -/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "cepheus_engines"; - name = "Engine Shutters"; - pixel_y = -23; - dir = 1; - pixel_x = 9 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) -"vI" = ( -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/structure/railing{ - dir = 8; - layer = 4.1 - }, -/obj/machinery/computer/crew/syndie{ - dir = 4 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -21; - pixel_x = -6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -23; - pixel_x = 8 + icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"vJ" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/structure/sign/poster/contraband/free_drone{ - pixel_y = -32 +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cepheus_bridge_lockdown"; + name = "Blast Shutters" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/machinery/airalarm/directional/east, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"vO" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/machinery/door/poddoor{ - id = "cepheus_engines"; - name = "Engine Blast Door" - }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"vQ" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/electrical) "vT" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -2273,49 +2086,55 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "1-8" - }, /turf/open/floor/plasteel, /area/ship/hallway/central) "vY" = ( /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/structure/sign/poster/official/moth/epi{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/central) +"vZ" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/item/soap/deluxe, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/dorm) "we" = ( +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/structure/closet/secure_closet/wall{ + dir = 1; + icon_door = "red_wall"; + icon_state = "generic_wall"; + name = "equipment locker"; + pixel_y = -28; + req_access_txt = "1" + }, +/obj/item/radio/headset/headset_sec/alt, +/obj/item/radio/headset/headset_sec/alt, +/obj/item/radio/headset/headset_sec/alt, +/obj/item/kitchen/knife/combat/survival, +/obj/item/kitchen/knife/combat/survival, +/obj/item/kitchen/knife/combat/survival, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/effect/turf_decal/trimline/opaque/red/line, /obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/trimline/opaque/red/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, /turf/open/floor/plasteel/dark, /area/ship/security) -"wu" = ( -/obj/machinery/mecha_part_fabricator, -/obj/structure/railing{ - dir = 8; - layer = 4.1; - color = "#808080" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) "wy" = ( /obj/effect/turf_decal/techfloor, /obj/effect/decal/cleanable/dirt, @@ -2325,269 +2144,221 @@ /turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) "wC" = ( -/obj/machinery/door/poddoor{ - id = "cepheus_mech_1"; - name = "Mechbay Shutters" +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/structure/sign/poster/contraband/free_drone{ + pixel_y = -32 }, -/turf/open/floor/plasteel/tech/grid, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, /area/ship/science/robotics) +"wF" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/ship/cargo) "wH" = ( /obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/effect/turf_decal/industrial/caution, +/obj/structure/cable{ + icon_state = "1-8" + }, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) -"wI" = ( -/obj/effect/turf_decal/techfloor{ - dir = 10 +"wJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "engine fuel pump" }, -/obj/structure/closet/wall/orange{ - dir = 4; - pixel_x = -28; - name = "Pilot's Locker" +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/head/beret/sec/officer, -/obj/item/clothing/shoes/combat/swat, -/obj/item/clothing/gloves/tackler/dolphin, -/obj/item/clothing/mask/bandana/skull, -/obj/item/clothing/accessory/holster, -/obj/item/clothing/suit/armor/vest/alt, -/obj/machinery/camera/autoname{ - dir = 5 +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) +/obj/effect/turf_decal/number/four, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "wK" = ( /obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/effect/turf_decal/techfloor/hole/right{ - dir = 1 - }, /obj/effect/turf_decal/industrial/loading, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"wP" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/minutemen{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood/birch{ - icon_state = "wood-broken4" - }, -/area/ship/crew/dorm) -"wY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10"; - pixel_x = 7; - pixel_y = 19 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 +"wN" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma{ + dir = 4 }, +/turf/open/floor/plating/airless, +/area/ship/engineering/atmospherics) +"xd" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/obj/item/weldingtool{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/firealarm{ - pixel_y = 22; - pixel_x = -9 +/obj/effect/turf_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/electrical) -"wZ" = ( -/obj/machinery/autolathe, -/obj/effect/turf_decal/industrial/warning{ - dir = 8; - color = "#808080" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/structure/sign/poster/retro/build{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, +/obj/machinery/holopad/emergency/engineering, /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) "xF" = ( /obj/structure/table/reinforced{ color = "#c1b6a5" }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/wrench/old, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = -12; - pixel_y = -2 +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/sosjerky{ + pixel_x = 6; + pixel_y = 4 }, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) -"xG" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4; - layer = 4.1; - color = "#808080" - }, -/obj/structure/sign/poster/contraband/shamblers_juice{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"yf" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 +"xT" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 15; + height = 15; + width = 15 }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/light{ - dir = 1 +/turf/template_noop, +/area/template_noop) +"xV" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 }, -/obj/machinery/firealarm{ - pixel_y = 23; - pixel_x = 9 +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "yh" = ( -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 36 - }, -/obj/machinery/button/shieldwallgen{ - id = "cepheus_mech_2_holo"; - pixel_y = 21 - }, -/obj/machinery/button/door{ - id = "cepheus_mech_2"; - name = "Mechbay Shutters"; - pixel_x = 10; - pixel_y = 23 +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 }, +/obj/effect/decal/cleanable/oil, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/tech/grid, +/turf/open/floor/plasteel/dark, /area/ship/science/robotics) "yn" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/structure/table/wood/reinforced, -/obj/item/flashlight/lamp{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/paicard{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood/birch, -/area/ship/crew/dorm) -"ys" = ( -/obj/effect/turf_decal/techfloor, -/obj/effect/decal/cleanable/glass{ - pixel_x = 11; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/structure/sign/minutemen, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/science/robotics) +"yI" = ( +/obj/effect/turf_decal/rechargefloor, +/obj/machinery/door/firedoor/border_only, +/obj/structure/mecha_wreckage/durand/cmm, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/science/robotics) +"yK" = ( +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/effect/turf_decal/siding/thinplating/corner{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) +/turf/open/floor/plasteel, +/area/ship/hallway/central) "yL" = ( /obj/effect/turf_decal/techfloor{ - dir = 1 + dir = 9 + }, +/obj/structure/closet/wall/orange{ + dir = 4; + name = "Pilot's Locker"; + pixel_x = -28 }, -/obj/effect/turf_decal/industrial/caution, /obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/head/beret/sec/officer, +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/gloves/tackler/dolphin, +/obj/item/clothing/mask/bandana/skull, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/suit/armor/vest/alt, /obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-4" }, /turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) "yM" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/structure/cable{ icon_state = "4-8" }, +/obj/structure/cable{ + icon_state = "1-8" + }, /turf/open/floor/plasteel, /area/ship/hallway/central) "yZ" = ( -/obj/structure/closet/emcloset/wall{ - pixel_y = 28 +/obj/item/kirbyplants{ + icon_state = "plant-10"; + pixel_x = 7; + pixel_y = 19 }, /obj/effect/turf_decal/techfloor/orange{ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/effect/turf_decal/steeldecal/steel_decals6{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/obj/item/weldingtool{ + pixel_x = -5; + pixel_y = -6 }, /obj/structure/cable{ - icon_state = "2-4" + icon_state = "0-4" }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/electrical) "zc" = ( @@ -2596,184 +2367,225 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/ship/hallway/central) "zn" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/crew/dorm) -"zp" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/item/ammo_box/magazine/co9mm, -/obj/effect/turf_decal/industrial/warning{ - dir = 10; - color = "#808080" +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/north{ + pixel_y = 22 }, -/obj/item/gun/energy/disabler{ - pixel_y = 2 +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/medical, +/obj/item/storage/pill_bottle/iron{ + pixel_x = 6 }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"zD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 +/obj/item/stack/medical/splint{ + pixel_x = 6 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/wall{ - name = "Utility Closet"; - pixel_y = 28 +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"zA" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -4; + pixel_y = -4 }, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/structure/cable{ - icon_state = "2-4" +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/electrical) +"zD" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/wood/birch, /area/ship/crew/dorm) +"zI" = ( +/obj/structure/chair/office{ + dir = 1; + name = "tactical swivel chair" + }, +/obj/effect/turf_decal/steeldecal/steel_decals1{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "zJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"zK" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/door/airlock/grunge{ + name = "Engineering" + }, +/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 = "1-2" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, -/area/ship/hallway/central) +/area/ship/engineering/atmospherics) "zQ" = ( /turf/template_noop, /area/template_noop) -"zU" = ( -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/machinery/holopad/emergency/command, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" +"zX" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/obj/structure/sign/poster/official/obey{ - pixel_x = -31 +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/structure/sign/departments/security{ - pixel_y = -32 +/obj/machinery/door/window/eastleft{ + name = "Engine Access" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname{ - dir = 5 +/obj/machinery/door/poddoor{ + dir = 4; + id = "cepheus_engines"; + name = "Engine Blast Door" }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/engineering/electrical) "Ao" = ( /obj/effect/turf_decal/siding/white{ - dir = 9 + dir = 4 }, -/obj/structure/sign/departments/cargo{ - pixel_x = -32 +/obj/effect/turf_decal/siding/white{ + dir = 8 }, -/obj/structure/closet/crate/bin, -/obj/item/trash/plate, -/obj/item/trash/cheesie{ - pixel_x = 4; - pixel_y = -4 +/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/trash/sosjerky{ - pixel_x = -3; - pixel_y = -3 +/obj/machinery/door/airlock/hatch{ + name = "Dormitories" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel, -/area/ship/hallway/central) -"Ay" = ( -/obj/structure/chair/office{ - dir = 1; - name = "tactical swivel chair" +/area/ship/crew/dorm) +"At" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 }, -/obj/effect/turf_decal/steeldecal/steel_decals1{ - dir = 10 +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/effect/decal/cleanable/oil/slippery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/hardline_small/left{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"Ay" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, /area/ship/bridge) "AH" = ( /obj/effect/turf_decal/techfloor{ - dir = 5 + dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/caution, /obj/structure/cable{ - icon_state = "1-8" + icon_state = "4-8" }, /turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) "AL" = ( +/obj/machinery/recharge_station, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, -/obj/structure/rack, -/obj/item/circuitboard/machine/circuit_imprinter{ +/obj/effect/decal/cleanable/chem_pile{ + pixel_x = 17; pixel_y = -6 }, -/obj/item/circuitboard/machine/rdserver, -/obj/item/circuitboard/computer/rdconsole{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ship/science/robotics) -"Bs" = ( -/obj/structure/table/reinforced, -/obj/item/taperecorder{ - pixel_x = -7 - }, -/obj/item/megaphone/sec{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = -22; - dir = 1 - }, -/obj/item/firing_pin{ - pixel_y = -7; - pixel_x = 3 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security) "By" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) -"BD" = ( -/obj/structure/toilet{ - dir = 4; - pixel_x = -1; - pixel_y = 5 +"Bz" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/structure/noticeboard{ + pixel_y = 31 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/greenglow, -/obj/machinery/light, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/dorm) +/obj/item/radio/intercom/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"BO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "BR" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2782,279 +2594,343 @@ }, /turf/open/floor/plating, /area/ship/security) -"BV" = ( -/obj/effect/turf_decal/techfloor/orange, -/obj/effect/turf_decal/techfloor/hole/right, -/obj/structure/closet/secure_closet/engineering_welding{ - req_access = null; - anchored = 1 - }, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/electrical) -"Cz" = ( -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ +"BU" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ship/bridge) +"BZ" = ( +/obj/machinery/computer/cargo/express{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/effect/turf_decal/techfloor{ dir = 4 }, -/obj/structure/cable, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"CD" = ( -/obj/effect/turf_decal/techfloor, -/obj/machinery/button/door{ - id = "cepheus_cargo"; - name = "Cargo Shutters"; - pixel_y = -23; - dir = 1; - pixel_x = -10 +/obj/structure/railing{ + dir = 2; + layer = 4.1 }, -/obj/machinery/button/shieldwallgen{ - id = "cepheus_cargo_holo"; - pixel_y = -21; +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 1 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech, /area/ship/cargo) -"CR" = ( -/obj/structure/table/reinforced{ - color = "#c1b6a5" +"Cr" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma{ + dir = 4 }, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/plating/airless, +/area/ship/engineering/electrical) +"CS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 }, -/obj/item/trash/sosjerky{ - pixel_y = 4; - pixel_x = 6 +/obj/structure/table/wood/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = -6; + pixel_y = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/paicard{ + pixel_x = 2; + pixel_y = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/electrical) +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood/birch, +/area/ship/crew/dorm) "CY" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/orange{ +/obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, -/obj/structure/railing/corner, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/door/poddoor{ + dir = 4; + id = "cepheus_engines"; + name = "Engine Blast Door" }, -/turf/open/floor/plasteel/tech/grid, +/turf/open/floor/plating, /area/ship/engineering/atmospherics) "Da" = ( -/obj/machinery/power/shuttle/engine/electric{ +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Dg" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"Dj" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ dir = 4 }, -/obj/structure/cable{ - icon_state = "0-4" +/turf/open/floor/engine/hull, +/area/ship/engineering/electrical) +"Dk" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "cepheus_bridge"; + name = "Blast Shutters" }, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"De" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high{ - pixel_y = 2; - pixel_x = -3 - }, -/obj/structure/sign/poster/official/walk{ - pixel_x = -32 +/area/ship/bridge) +"Dr" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/obj/item/taperecorder{ - pixel_x = 12; - pixel_y = 1 +/obj/effect/turf_decal/techfloor, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/camera/autoname{ - dir = 10 +/obj/machinery/button/door{ + dir = 1; + id = "cepheus_engines"; + name = "Engine Shutters"; + pixel_x = 9; + pixel_y = -23 }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"Dg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) +/obj/effect/turf_decal/number/zero, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "Dy" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/wrapping{ + pixel_y = 15 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/wood/birch, /area/ship/crew/dorm) "DA" = ( -/obj/machinery/door/poddoor{ - id = "cepheus_mech_2"; - name = "Mechbay Shutters" +/obj/machinery/computer/helm{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/science/robotics) -"DN" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"DG" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/wood/birch{ - icon_state = "wood-broken7" +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 }, -/area/ship/crew/dorm) -"DP" = ( -/obj/effect/turf_decal/corner/transparent/beige/full, -/obj/effect/turf_decal/corner/transparent/beige/diagonal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/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, -/area/ship/hallway/central) -"DT" = ( +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"DN" = ( /obj/effect/turf_decal/siding/wood{ - dir = 8 + dir = 1 }, /obj/structure/table/wood/reinforced, -/obj/item/storage/photo_album{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/storage/fancy/cigarettes/cigpack_uplift{ - pixel_x = -6 - }, -/obj/item/storage/fancy/cigarettes/cigpack_robustgold{ - pixel_x = -5; - pixel_y = 3 +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 }, -/obj/item/lighter{ - pixel_x = -9 +/obj/item/pen/fountain{ + pixel_x = 4; + pixel_y = 2 }, -/obj/item/newspaper{ - pixel_x = 5; - pixel_y = 1 +/obj/item/pen{ + pixel_x = 8; + pixel_y = 4 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -21; - pixel_y = -5 +/obj/item/storage/pill_bottle/dice{ + pixel_x = -8; + pixel_y = 6 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -23; - pixel_y = 8 +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = 32 }, +/obj/item/clothing/neck/tie/genderfluid, /turf/open/floor/wood/birch, /area/ship/crew/dorm) "El" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) "Em" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 +/obj/machinery/rnd/production/techfab/department/security, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -22 }, -/obj/effect/turf_decal/trimline/opaque/red/line{ - dir = 10 +/obj/machinery/camera/autoname{ + dir = 5 }, -/obj/item/kirbyplants{ - pixel_x = -8; - pixel_y = -1 +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"Eo" = ( +/obj/machinery/computer/bounty{ + dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"Eo" = ( -/obj/structure/toilet{ - dir = 4; - pixel_x = -1; - pixel_y = 5 +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"Et" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/plating/catwalk_floor, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/stamp/hos{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/storage/fancy/donut_box{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/machinery/light/directional/east{ + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/tech, /area/ship/security) -"EI" = ( -/obj/effect/turf_decal/techfloor{ - dir = 10 +"Ev" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Ew" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"EA" = ( +/obj/machinery/processor, +/obj/effect/decal/cleanable/xenoblood{ + pixel_x = 7 }, -/obj/machinery/power/terminal{ +/obj/effect/turf_decal/corner_techfloor_gray/full{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"EB" = ( +/obj/effect/turf_decal/techfloor, +/obj/item/radio/intercom/wideband/directional/south, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -13; + pixel_y = -22 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/computer/security{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"EL" = ( -/obj/machinery/cryopod{ +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"EG" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals2, +/obj/structure/chair/office{ + dir = 8; + name = "tactical swivel chair" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"EL" = ( /obj/effect/turf_decal/techfloor{ - dir = 5 + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/rip_badger{ - pixel_y = 32 +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 26 }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/crew/dorm) "EN" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/security) -"Fg" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/techfloor{ - dir = 4 +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/light/directional/east, +/obj/machinery/camera/autoname{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 +/obj/structure/ore_box, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"ER" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 }, +/obj/machinery/vending/cigarette, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Fg" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 }, /obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plasteel/tech, /area/ship/bridge) "Fm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/rack, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{ + pixel_y = -7 }, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) "Fo" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"Fr" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/effect/turf_decal/siding/thinplating/corner{ +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -3062,95 +2938,77 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"Ft" = ( -/obj/structure/sign/minutemen, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/security) -"Fw" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8; - color = "#808080" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/security) -"Fx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/airlock/grunge{ + name = "Engineering" }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"FJ" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical{ - pixel_y = -4 +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/item/multitool{ - pixel_x = 9 +/turf/open/floor/plasteel, +/area/ship/engineering/electrical) +"Fr" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 }, -/obj/item/geiger_counter{ - pixel_x = 1 +/obj/structure/sign/departments/engineering{ + pixel_y = -32 }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera/autoname{ + dir = 5 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/electrical) -"FM" = ( +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Ft" = ( /obj/effect/turf_decal/corner/transparent/beige/full, /obj/effect/turf_decal/corner/transparent/beige/diagonal, /obj/effect/turf_decal/corner/transparent/black/half{ - dir = 8 - }, -/obj/structure/table, -/obj/item/trash/sosjerky{ - pixel_y = 8; - pixel_x = 5 - }, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/vomit/old{ - pixel_y = 13 + dir = 4 }, -/obj/item/spacecash/bundle/c1000{ - pixel_y = -1; - pixel_x = 3 +/obj/machinery/jukebox, +/obj/effect/decal/cleanable/wrapping, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = -6; - pixel_y = 9 +/obj/structure/railing/wood{ + dir = 1 }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"FQ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/rcl, -/obj/effect/turf_decal/industrial/warning{ - dir = 9; - color = "#808080" - }, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/wrapping, -/obj/machinery/light_switch{ - pixel_x = 22; +"Fu" = ( +/obj/structure/frame/computer{ + anchored = 1; dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 23; - pixel_y = 9 +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Fx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/electrical) -"FS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wall{ + name = "Utility Closet"; + pixel_y = 28 + }, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/wood/birch, +/area/ship/crew/dorm) +"FA" = ( /obj/machinery/suit_storage_unit/inherit/industrial, /obj/item/clothing/head/helmet/space/light/engineer, /obj/item/clothing/suit/space/engineer, @@ -3159,240 +3017,281 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering/atmospherics) -"Gf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +"FC" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 9; + pixel_y = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/item/flashlight/lamp{ + pixel_x = -7; + pixel_y = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plasteel/tech, +/area/ship/security) +"FJ" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"Gq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/door/poddoor{ + dir = 4; + id = "cepheus_engines"; + name = "Engine Blast Door" + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"FS" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/obj/structure/railing{ + dir = 4; + layer = 3.1 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/warning/gasmask{ + pixel_x = -32 }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"Gr" = ( -/obj/machinery/porta_turret/centcom_shuttle/ballistic{ - dir = 8; - name = "ship turret"; - on = 0 +"FW" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + piping_layer = 2 }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/plasteel/tech/grid, /area/ship/engineering/electrical) -"Gs" = ( -/obj/effect/turf_decal/trimline/opaque/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/red/line, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ +"Gf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, -/obj/machinery/door/poddoor{ - id = "cepheus_armoury"; - name = "Armoury Shutter" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"Ha" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/table/wood/reinforced, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 4 +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Gk" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 }, -/obj/item/pen/fountain{ - pixel_x = 4; - pixel_y = 2 +/obj/structure/chair/office{ + dir = 4; + name = "tactical swivel chair" }, -/obj/item/pen{ - pixel_y = 4; - pixel_x = 8 +/obj/effect/turf_decal/trimline/opaque/red/warning{ + dir = 6 }, -/obj/item/storage/pill_bottle/dice{ - pixel_x = -8; - pixel_y = 6 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = 32 +/turf/open/floor/plasteel/dark, +/area/ship/security) +"Gm" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/obj/item/clothing/neck/tie/genderfluid, -/turf/open/floor/wood/birch, +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/telecomms_floor, /area/ship/crew/dorm) -"Hl" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 +"Gn" = ( +/obj/machinery/mecha_part_fabricator, +/obj/structure/railing{ + color = "#808080"; + dir = 8; + layer = 4.1 }, -/obj/item/radio/intercom{ - pixel_y = 22 +/obj/effect/decal/cleanable/cobweb, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = -32 }, -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/medical, -/obj/item/storage/pill_bottle/iron{ - pixel_x = 6 +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"Gr" = ( +/obj/structure/sign/poster/contraband/tools{ + pixel_x = 32 }, -/obj/item/stack/medical/splint{ - pixel_x = 6 +/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/tech/grid, -/area/ship/cargo) +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/ship/engineering/electrical) "Ho" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 1 }, -/obj/effect/decal/cleanable/oil/streak, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/turf_decal/techfloor/hole{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, +/obj/machinery/camera/autoname, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/electrical) -"HI" = ( +"HM" = ( +/obj/structure/toilet{ + dir = 4; + pixel_x = -1; + pixel_y = 5 + }, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/dorm) +"Ih" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ +/obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"HM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/dorm) +/obj/effect/decal/cleanable/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "6-8" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) "Im" = ( /obj/effect/turf_decal/corner/transparent/beige/full, /obj/effect/turf_decal/corner/transparent/beige/diagonal, -/obj/effect/turf_decal/corner/transparent/black/half{ - dir = 4 - }, -/obj/structure/railing{ - color = "#A47449"; - dir = 1 - }, -/obj/machinery/jukebox, -/obj/effect/decal/cleanable/wrapping, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, /turf/open/floor/plasteel, /area/ship/hallway/central) "Io" = ( -/obj/machinery/power/smes/engineering, +/obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/structure/cable{ - icon_state = "0-9" - }, +/obj/item/wrench, +/obj/structure/cable/yellow, /turf/open/floor/plasteel/telecomms_floor, /area/ship/engineering/electrical) -"Iw" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 +"Iq" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high{ + pixel_x = -3; + pixel_y = 2 }, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = -22; - dir = 1 +/obj/structure/sign/poster/official/walk{ + pixel_x = -32 + }, +/obj/item/taperecorder{ + pixel_x = 12; + pixel_y = 1 }, /obj/machinery/camera/autoname{ - dir = 5 + dir = 10 }, -/turf/open/floor/plasteel/tech, -/area/ship/security) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) "IB" = ( /obj/effect/turf_decal/corner/transparent/beige/full, /obj/effect/turf_decal/corner/transparent/beige/diagonal, -/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ship/hallway/central) -"IM" = ( -/obj/effect/turf_decal/techfloor/orange{ +"IK" = ( +/obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/effect/turf_decal/techfloor/hole{ - dir = 1 +/obj/structure/table/reinforced{ + color = "#c1b6a5" }, -/obj/item/radio/intercom{ - pixel_y = 22 +/obj/machinery/computer/secure_data/laptop{ + density = 0; + pixel_x = -3; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/recharger{ + pixel_x = 12 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"IR" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/mecha_parts/mecha_equipment/drill{ + pixel_x = 7; + pixel_y = 6 }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/electrical) -"IR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6"; + pixel_x = -16; + pixel_y = -13 }, +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "1-4" - }, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) "Jb" = ( -/obj/structure/railing{ - dir = 2; - layer = 4.1 +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 }, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 2 + }, +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 6 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, @@ -3402,127 +3301,143 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, +/turf/open/floor/plasteel/dark, /area/ship/cargo) "Jc" = ( /obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/suit/space/hardsuit/swat, -/obj/structure/railing{ - dir = 4; - layer = 3.1 +/obj/structure/sign/poster/official/ion_carbine{ + pixel_y = 32 }, +/obj/item/clothing/suit/space/hardsuit/security/independent/minutemen, /turf/open/floor/plasteel/tech, /area/ship/security) "Jk" = ( /obj/effect/turf_decal/techfloor{ dir = 1 }, +/obj/effect/turf_decal/industrial/caution, +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "2-4" }, /obj/structure/cable{ - icon_state = "1-8" - }, -/obj/item/stack/ore/salvage/scrapsilver{ - pixel_x = -6; - pixel_y = 4 + icon_state = "4-8" }, /turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) -"Jo" = ( -/obj/machinery/door/airlock/freezer, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/central) -"Ju" = ( +"Jw" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/industrial/warning, +/obj/item/toy/plush/hornet/gay{ + pixel_x = 5; + pixel_y = 21 + }, +/obj/structure/cable{ + icon_state = "0-10" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"JO" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/effect/turf_decal/corner_techfloor_grid, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "4-10" }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"Jv" = ( -/obj/effect/turf_decal/siding/white{ - dir = 10 +/obj/structure/cable{ + icon_state = "4-9" }, -/obj/structure/sign/departments/engineering{ - pixel_y = -32 +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"JR" = ( +/obj/effect/turf_decal/corner/transparent/beige/full, +/obj/effect/turf_decal/corner/transparent/beige/diagonal, +/obj/effect/turf_decal/corner/transparent/black/half{ + dir = 8 }, -/obj/machinery/light, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -31 +/obj/structure/table, +/obj/item/trash/sosjerky{ + pixel_x = 5; + pixel_y = 8 }, -/obj/machinery/camera/autoname{ - dir = 5 +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/vomit/old{ + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/spacecash/bundle/c1000{ + pixel_x = 3; + pixel_y = -1 }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"Jw" = ( -/obj/structure/sign/poster/contraband/tools{ - pixel_x = 32 +"JX" = ( +/obj/effect/turf_decal/corner/transparent/beige/full, +/obj/effect/turf_decal/corner/transparent/beige/diagonal, +/obj/effect/turf_decal/corner/transparent/black/half{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/closet/wall{ + dir = 8; + icon_door = "grey_wall"; + pixel_x = 28 }, -/turf/open/floor/plasteel/stairs{ - dir = 1 +/obj/item/kitchen/knife/plastic{ + pixel_x = 8 }, -/area/ship/engineering/electrical) -"JG" = ( -/obj/effect/turf_decal/techfloor{ - dir = 1 +/obj/item/kitchen/knife/plastic{ + pixel_x = 8 }, -/obj/machinery/computer/cryopod{ - pixel_y = 26 +/obj/item/kitchen/knife/plastic{ + pixel_x = 8 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/crew/dorm) -"JO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 1 +/obj/item/kitchen/knife/plastic{ + pixel_x = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/reagent_containers/glass/bowl{ + pixel_x = 2 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/reagent_containers/glass/bowl{ + pixel_x = 2 }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"JR" = ( -/obj/machinery/porta_turret/centcom_shuttle/ballistic{ - dir = 8; - name = "ship turret"; - on = 0 +/obj/item/reagent_containers/glass/bowl{ + pixel_x = 2 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_x = 2 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_x = 2 }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"JZ" = ( +/obj/machinery/vending/boozeomat, /turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/engineering/atmospherics) -"Ka" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/structure/noticeboard{ - pixel_y = 31 +/area/ship/hallway/central) +"Kc" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22; - pixel_y = -6 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 23; - pixel_y = 9 +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Kc" = ( /obj/machinery/door/airlock/hatch{ - name = "Mech Bay" + name = "Security" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -3538,510 +3453,463 @@ }, /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"Ke" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"Kz" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/item/ammo_box/magazine/co9mm, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 31 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8; - color = "#808080" - }, -/obj/item/gun/energy/disabler{ - pixel_y = 2 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, /area/ship/security) "KL" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/grunge{ - name = "Bathroom" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/dorm) -"KS" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 10 +/obj/structure/bed/pod, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_x = 32 }, -/obj/structure/ore_box, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) +/obj/item/toy/plush/beeplushie, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/tech, +/area/ship/security) "Lc" = ( -/obj/machinery/door/window/brigdoor/southright{ - req_access_txt = "1" +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/security) +"Ld" = ( +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/rack, +/obj/item/analyzer{ + pixel_x = 3; + pixel_y = -4 }, -/obj/effect/turf_decal/industrial/warning/corner{ - color = "#808080"; - dir = 1 +/obj/item/analyzer{ + pixel_y = -1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/security) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/electrical) "Lj" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/engineering/electrical) -"Lk" = ( -/obj/machinery/power/smes/engineering, +"Lr" = ( +/obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/industrial/warning, -/obj/item/toy/plush/hornet/gay{ - pixel_y = 21; - pixel_x = 5 - }, -/obj/structure/cable{ - icon_state = "0-10" +/obj/structure/cable/yellow{ + icon_state = "0-2" }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/engineering/electrical) -"LK" = ( -/obj/effect/turf_decal/siding/white, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 +"LJ" = ( +/obj/structure/sign/minutemen, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/security) +"LM" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 6 }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -22; - dir = 1 +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"LL" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cepheus_windows"; - name = "External Shutters" +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 5 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"LR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/glass{ - dir = 8; - pixel_y = -10 +/obj/machinery/power/terminal{ + dir = 1 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 +/obj/machinery/power/terminal, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"LY" = ( +/obj/effect/turf_decal/corner/transparent/beige/full, +/obj/effect/turf_decal/corner/transparent/beige/diagonal, +/obj/effect/turf_decal/corner/transparent/black/half{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"LS" = ( -/obj/machinery/photocopier{ +/obj/machinery/light/small/directional/west, +/obj/structure/chair, +/obj/structure/railing/wood{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Mi" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/newspaper{ pixel_x = 7; - pixel_y = -3 + pixel_y = -1 }, -/obj/item/kirbyplants{ - icon_state = "plant-22"; - pixel_x = -10 +/obj/machinery/jukebox/boombox{ + pixel_y = 5 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -21; - pixel_x = -6 +/obj/item/reagent_containers/food/snacks/breadslice/moldy{ + pixel_x = -6; + pixel_y = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -23; - pixel_x = 8 +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" }, /turf/open/floor/plasteel/tech, -/area/ship/security) -"LY" = ( -/obj/effect/turf_decal/corner/transparent/beige/full, -/obj/effect/turf_decal/corner/transparent/beige/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"Mb" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ +/area/ship/engineering/electrical) +"Mj" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/door/poddoor{ - id = "cepheus_engines"; - name = "Engine Blast Door" +/obj/structure/curtain/bounty, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/shower{ + pixel_y = 19 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/catwalk_floor, +/area/ship/security) "Mo" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cepheus_windows"; - name = "External Shutters" +/obj/effect/turf_decal/corner/transparent/beige/full, +/obj/effect/turf_decal/corner/transparent/beige/diagonal, +/obj/effect/turf_decal/corner/transparent/black/half{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"ML" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/item/radio/intercom/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/structure/chair{ + dir = 1 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Mr" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ship/hallway/central) +"ME" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/docking_port/mobile{ - dir = 4; - launch_status = 0; - port_direction = 2; - preferred_direction = 4 - }, -/obj/machinery/door/poddoor/shutters{ - id = "cepheus_cargo"; - name = "Cargo Shutter" +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/cargo) +/turf/open/floor/plasteel, +/area/ship/hallway/central) "MR" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, -/obj/effect/turf_decal/siding/thinplating/dark/corner, -/obj/effect/turf_decal/trimline/opaque/red/warning{ +/obj/effect/turf_decal/trimline/opaque/red/line{ dir = 1 }, -/obj/effect/turf_decal/trimline/opaque/red/corner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/security) +"MS" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/obj/structure/closet/crate/trashcart, +/obj/item/trash/can, +/obj/item/trash/waffles, +/obj/item/trash/chips, +/obj/item/trash/energybar, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "MW" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, +/obj/effect/turf_decal/siding/wood, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/minutemen{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/wood/birch{ + icon_state = "wood-broken4" }, -/turf/open/floor/wood/birch, /area/ship/crew/dorm) "Nj" = ( -/obj/effect/turf_decal/techfloor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/crew/dorm) -"Nk" = ( -/obj/effect/turf_decal/techfloor{ - dir = 9 +/obj/effect/turf_decal/corner/transparent/beige/full, +/obj/effect/turf_decal/corner/transparent/beige/diagonal, +/obj/effect/turf_decal/corner/transparent/black/half{ + dir = 4 }, -/obj/structure/railing{ - dir = 8; - layer = 4.1 +/obj/machinery/light/directional/east{ + light_color = "#e8eaff" }, -/obj/structure/table/reinforced{ - color = "#c1b6a5" +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Nr" = ( +/obj/machinery/advanced_airlock_controller{ + pixel_y = 26 }, -/obj/machinery/photocopier/faxmachine/longrange, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ + dir = 4 }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, /turf/open/floor/plasteel/tech, -/area/ship/bridge) +/area/ship/engineering/atmospherics) "Nt" = ( -/obj/effect/turf_decal/steeldecal/steel_decals3{ - dir = 1 +/obj/structure/table/reinforced{ + color = "#c1b6a5" }, -/obj/effect/turf_decal/steeldecal/steel_decals3{ - dir = 10 +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/wrench/old, +/obj/item/reagent_containers/food/drinks/mug{ + pixel_x = -12; + pixel_y = -2 }, -/obj/effect/turf_decal/industrial/caution, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/steeldecal/steel_decals_central4, -/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 = "4-8" }, /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) "Nx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, -/obj/machinery/power/terminal{ - dir = 8 +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/structure/sign/poster/contraband/atmosia_independence{ - pixel_y = 32 +/obj/machinery/door/window/eastleft{ + name = "Engine Access" }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/door/poddoor{ + dir = 4; + id = "cepheus_engines"; + name = "Engine Blast Door" }, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plating, /area/ship/engineering/atmospherics) -"ND" = ( -/obj/machinery/door/window/eastright{ - name = "Kitchen"; - dir = 1 +"NI" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/item/ammo_box/magazine/co9mm, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 31 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/food/egg_smudge{ - pixel_x = 11; - pixel_y = -6 +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 8 + }, +/obj/item/gun/energy/disabler{ + pixel_y = 2 }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, -/area/ship/hallway/central) +/area/ship/security) +"NJ" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/dorms, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblue, +/area/ship/crew/dorm) +"NR" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood/birch, +/area/ship/crew/dorm) +"NW" = ( +/obj/machinery/light/directional/east, +/obj/structure/bed/pod, +/turf/open/floor/plasteel/tech, +/area/ship/security) "Ob" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/electrical) -"Ol" = ( -/obj/effect/turf_decal/techfloor{ - dir = 4 +"Of" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 }, -/obj/effect/turf_decal/siding/thinplating/dark{ +/obj/effect/turf_decal/techfloor/orange{ dir = 4 }, +/obj/structure/railing{ + dir = 4; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/techfloor/hole{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"Oi" = ( +/obj/item/mecha_parts/mecha_equipment/generator{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/oil{ + icon_state = "streak3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"Ou" = ( -/obj/effect/turf_decal/techfloor, -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = -24 +/obj/item/stack/ore/salvage/scraptitanium{ + pixel_x = 6; + pixel_y = 6 }, -/obj/machinery/light_switch{ - pixel_x = -13; - pixel_y = -22; - dir = 1 +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"Ol" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 }, -/obj/machinery/computer/security{ +/obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 }, -/turf/open/floor/plasteel/telecomms_floor, +/obj/machinery/requests_console{ + pixel_y = 25 + }, +/obj/machinery/light/directional/west{ + light_color = "#e8eaff" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, /area/ship/bridge) "OG" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/hallway/central) -"OP" = ( -/obj/machinery/porta_turret/centcom_shuttle/ballistic{ - dir = 6; - name = "ship turret"; - on = 0 +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/suit/space/hardsuit/swat, +/obj/structure/railing{ + dir = 4; + layer = 3.1 }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/turf/open/floor/plasteel/tech, /area/ship/security) -"OX" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 +"OP" = ( +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/wall/orange{ + dir = 8; + name = "fuel locker"; + pixel_x = 28 }, +/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/stack/sheet/mineral/plasma/five, +/obj/item/stack/sheet/mineral/plasma/five{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/electrical) +"OX" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, /obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 + dir = 8 + }, +/obj/machinery/button/door{ + dir = 4; + id = "cepheus_bridge_lockdown"; + name = "Bridge lockdown"; + pixel_x = -22 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"Pa" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/trimline/opaque/yellow/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/ash/large{ - pixel_y = -9; - pixel_x = -14 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) "Pc" = ( -/obj/machinery/computer/bounty{ - dir = 8 - }, /obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 8 + dir = 6 }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ +/obj/effect/turf_decal/industrial/loading{ dir = 1 }, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plasteel/dark, /area/ship/cargo) -"Pn" = ( +"Pz" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "0-1" }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) -"Pv" = ( -/obj/effect/turf_decal/corner/transparent/beige/full, -/obj/effect/turf_decal/corner/transparent/beige/diagonal, -/obj/effect/turf_decal/corner/transparent/black/half{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" +"PO" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"PD" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "0-9" }, -/turf/open/floor/plasteel/tech, -/area/ship/security) -"PO" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/cargo) +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) "PP" = ( -/obj/item/storage/backpack, -/obj/item/storage/backpack, -/obj/item/storage/backpack, +/obj/item/detective_scanner, +/obj/item/holosign_creator/security{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/holosign_creator/security{ + pixel_x = 2 + }, +/obj/item/key/security, /obj/structure/closet/secure_closet/wall{ dir = 1; icon_door = "red_wall"; icon_state = "generic_wall"; - name = "equipment locker"; + name = "Utility locker"; pixel_y = -28; req_access_txt = "1" }, -/obj/item/radio/headset/headset_sec/alt, -/obj/item/radio/headset/headset_sec/alt, -/obj/item/radio/headset/headset_sec/alt, -/obj/item/kitchen/knife/combat/survival, -/obj/item/kitchen/knife/combat/survival, -/obj/item/kitchen/knife/combat/survival, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/effect/turf_decal/trimline/opaque/red/line, /obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/trimline/opaque/red/line, /turf/open/floor/plasteel/dark, /area/ship/security) "PV" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4; - name = "Helm" - }, -/obj/effect/turf_decal/steeldecal/steel_decals7{ - dir = 4; - pixel_x = -1 - }, -/obj/effect/turf_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/turf_decal/steeldecal/steel_decals3{ +/obj/structure/railing/corner{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"PX" = ( -/obj/structure/guncase, -/obj/structure/railing{ - dir = 4; - layer = 4.1 - }, -/obj/item/gun/ballistic/automatic/pistol/m1911{ - pixel_y = 3 - }, -/obj/item/gun/ballistic/automatic/pistol/m1911{ - pixel_y = 3 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/machinery/light{ +/obj/structure/railing/corner{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/item/gun/ballistic/automatic/pistol/m1911{ - pixel_y = 3 +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 }, -/obj/structure/sign/poster/contraband/twelve_gauge{ - pixel_y = 32 +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 }, -/obj/item/gun/ballistic/shotgun/bulldog/minutemen, -/turf/open/floor/plasteel/tech, -/area/ship/security) -"Qe" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 }, -/obj/machinery/light{ +/obj/effect/turf_decal/techfloor/corner{ dir = 1 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +/obj/effect/turf_decal/steeldecal/steel_decals9, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "Qf" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) -"Qn" = ( -/obj/structure/bed/dogbed, -/mob/living/simple_animal/turtle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Qr" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/science/robotics) @@ -4052,212 +3920,270 @@ /obj/effect/turf_decal/trimline/opaque/red/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 +/obj/structure/sign/minutemen{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/security) -"QP" = ( +"QI" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, /obj/structure/railing{ - dir = 1; + dir = 8; layer = 4.1 }, -/obj/machinery/computer/monitor, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22; - pixel_y = -6 +/obj/structure/table/reinforced{ + color = "#c1b6a5" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"QS" = ( -/obj/effect/turf_decal/techfloor{ - dir = 4 +/obj/machinery/photocopier/faxmachine/longrange, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"QJ" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/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/hatch/yellow, +/obj/structure/sign/poster/retro/build{ + pixel_x = 32 }, /turf/open/floor/plasteel/tech, -/area/ship/bridge) -"Rk" = ( +/area/ship/engineering/electrical) +"QO" = ( /obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/effect/turf_decal/techfloor, -/obj/structure/closet/wall/red{ - name = "Ammo locker"; - dir = 8; - pixel_x = 28 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 5 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 6 +/obj/item/circuitboard/mecha/durand/main{ + pixel_x = 5; + pixel_y = 4 }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 6 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 6 +/obj/structure/sign/warning/electricshock{ + pixel_y = 36 }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 +/obj/machinery/button/shieldwallgen{ + id = "cepheus_mech_1_holo"; + pixel_y = 21 }, -/obj/item/storage/box/lethalshot{ - pixel_y = -7; - pixel_x = 4 +/obj/machinery/button/door{ + id = "cepheus_mech_1"; + name = "Mechbay Shutters"; + pixel_x = -10; + pixel_y = 23 }, -/obj/item/ammo_box/magazine/cm15_mag, /turf/open/floor/plasteel/tech/grid, -/area/ship/security) -"Rl" = ( -/obj/effect/turf_decal/techfloor/corner{ +/area/ship/science/robotics) +"QS" = ( +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/effect/turf_decal/techfloor/corner{ - dir = 1 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/obj/effect/decal/cleanable/oil/slippery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/holopad/emergency/command, +/obj/machinery/light/directional/west{ + light_color = "#e8eaff" + }, +/obj/structure/sign/poster/official/obey{ + pixel_x = -31 + }, +/obj/structure/sign/departments/security{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ dir = 5 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Rd" = ( +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/spawner/lootdrop/random_machine_circuit_mech, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"Ri" = ( +/obj/effect/turf_decal/corner/transparent/black/half{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/toy/cards/deck{ + pixel_x = -3 + }, +/obj/item/trash/chips{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "Rt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/bed/pod, -/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ - pixel_x = 32 +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 8 }, -/obj/item/toy/plush/beeplushie, -/obj/machinery/camera/autoname, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/security) "Ru" = ( -/obj/structure/railing/corner{ +/obj/structure/railing, +/obj/structure/railing{ dir = 1 }, -/obj/structure/railing/corner{ - dir = 8 +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ +/turf/open/floor/plasteel/stairs{ + dir = 8; + icon_state = "stairs-old" + }, +/area/ship/bridge) +"RL" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/item/ammo_box/magazine/co9mm, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 10 + }, +/obj/item/gun/energy/disabler{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"RM" = ( +/obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 8 +/obj/effect/turf_decal/techfloor, +/obj/structure/closet/wall/red{ + dir = 8; + name = "Ammo locker"; + pixel_x = 28 }, -/obj/effect/turf_decal/techfloor/corner{ - dir = 8 +/obj/item/ammo_box/magazine/m45{ + pixel_x = 5 }, -/obj/effect/turf_decal/techfloor/corner{ - dir = 1 +/obj/item/ammo_box/magazine/m45{ + pixel_x = 6 }, -/obj/effect/turf_decal/steeldecal/steel_decals9, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"Rv" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 +/obj/item/ammo_box/magazine/m45{ + pixel_x = 6 }, -/obj/item/radio/intercom{ - pixel_y = 22 +/obj/item/ammo_box/magazine/m45{ + pixel_x = 6 }, -/obj/item/kirbyplants{ - icon_state = "plant-03" +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/item/storage/box/lethalshot{ + pixel_x = 4; + pixel_y = -7 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +/obj/item/ammo_box/magazine/cm15_mag, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security) "RN" = ( /obj/effect/turf_decal/techfloor{ dir = 1 }, /obj/effect/turf_decal/techfloor, -/obj/effect/turf_decal/industrial/caution, /turf/open/floor/plasteel/tech/grid, /area/ship/security) "RW" = ( -/obj/effect/turf_decal/techfloor/corner, -/obj/effect/spawner/lootdrop/random_machine_circuit_mech, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"RY" = ( -/obj/effect/turf_decal/techfloor/orange, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/plasma, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/sign/poster/contraband/red_rum{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/electrical) "Sd" = ( /obj/effect/turf_decal/techfloor{ dir = 1 }, -/obj/effect/turf_decal/industrial/loading, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/plasma, +/obj/effect/turf_decal/steeldecal, +/obj/structure/closet/wall{ + icon_door = "orange_wall"; + name = "Mining equipment"; + pixel_y = 28 + }, +/obj/item/clothing/glasses/meson, +/obj/item/gps/mining, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/circuitboard/machine/ore_redemption, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"Tm" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 4 +"SE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "engine fuel pump" }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = -1 +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_x = 8 }, -/obj/item/storage/belt/utility/full{ - pixel_y = 6 +/obj/effect/turf_decal/steeldecal/steel_decals6{ + dir = 6 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +/obj/effect/decal/cleanable/robot_debris, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"SQ" = ( +/obj/machinery/porta_turret/centcom_shuttle/ballistic{ + dir = 8; + name = "ship turret"; + on = 0 }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/engineering/electrical) "Tu" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 +/obj/effect/turf_decal/techfloor{ + dir = 4 }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/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/tech, /area/ship/bridge) "Tv" = ( -/obj/machinery/recharge_station, +/obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, -/obj/effect/decal/cleanable/chem_pile{ - pixel_x = 17; - pixel_y = -6 +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/science/robotics) @@ -4265,198 +4191,155 @@ /obj/effect/turf_decal/steeldecal/steel_decals_central2{ pixel_y = 2 }, -/obj/structure/sign/poster/official/moth/hardhats{ - pixel_x = 32 +/obj/structure/chair/office{ + dir = 8; + name = "tactical swivel chair" }, +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) "Tz" = ( -/obj/effect/turf_decal/corner/transparent/black/half{ - dir = 4 - }, -/obj/item/kitchen/knife, -/obj/item/kitchen/rollingpin, -/obj/item/book/manual/chef_recipes, -/obj/structure/closet/secure_closet/freezer/wall{ - dir = 8; - pixel_x = 28 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/clothing/suit/apron/chef, -/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"TJ" = ( -/obj/machinery/computer/helm{ - dir = 8 - }, +"TH" = ( +/obj/effect/turf_decal/siding/white, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"TL" = ( -/obj/machinery/porta_turret/centcom_shuttle/ballistic{ - dir = 5; - name = "ship turret"; - on = 0 - }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/science/robotics) -"TU" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/security) -"TZ" = ( -/obj/effect/turf_decal/techfloor{ - dir = 9 +/obj/machinery/light/directional/south, +/obj/machinery/vending/wallmed{ + pixel_y = -28 }, -/obj/effect/turf_decal/techfloor/corner, -/mob/living/simple_animal/bot/secbot/beepsky/jr, -/obj/machinery/firealarm{ +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"TJ" = ( +/obj/structure/chair/comfy/shuttle{ dir = 4; - pixel_x = -22; - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/button/door{ - id = "cepheus_armoury"; - name = "Armoury Lockdown"; - pixel_x = -23; - pixel_y = -10; - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/security) -"Uc" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light_switch{ - pixel_x = -9; - pixel_y = 21 - }, -/obj/structure/closet/crate/science, -/obj/item/storage/box/stockparts/t2{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/item/survey_handheld{ - pixel_x = 7 + name = "Helm" }, -/obj/item/clothing/glasses/science{ - pixel_y = -6; - pixel_x = -2 +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 4; + pixel_x = -1 }, -/obj/machinery/firealarm{ - pixel_y = 22 +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 10 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) -"Uh" = ( -/obj/effect/turf_decal/techfloor{ +/obj/effect/turf_decal/steeldecal/steel_decals3{ dir = 1 }, -/obj/structure/table/reinforced{ - color = "#c1b6a5" - }, -/obj/machinery/computer/secure_data/laptop{ - pixel_x = -3; - pixel_y = 2; - density = 0 - }, -/obj/machinery/recharger{ - pixel_x = 12 - }, -/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/telecomms_floor, /area/ship/bridge) +"TL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi' + }, +/area/ship/engineering/electrical) +"TU" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/security) "Ui" = ( -/obj/effect/turf_decal/siding/white{ +/obj/effect/turf_decal/corner/transparent/black/half{ dir = 4 }, -/obj/effect/turf_decal/siding/white{ - dir = 8 +/obj/item/kitchen/knife, +/obj/item/kitchen/rollingpin, +/obj/item/book/manual/chef_recipes, +/obj/structure/closet/secure_closet/freezer/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/clothing/suit/apron/chef, +/obj/effect/decal/cleanable/food/tomato_smudge, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"Uj" = ( +/obj/structure/closet/secure_closet{ + icon_door = "tac"; + icon_state = "tac"; + name = "boarding tools locker"; + req_access_txt = "3" }, -/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/outline/yellow, +/obj/item/storage/backpack/duffelbag/syndie/x4{ + icon_state = "duffel-sec"; + name = "breaching charges duffel bag" }, -/obj/machinery/door/airlock/hatch{ - name = "Dormitories" +/obj/item/crowbar/power{ + pixel_y = -4 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/item/door_seal, +/obj/item/door_seal, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/crew/dorm) -"Uj" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/effect/turf_decal/rechargefloor, -/obj/structure/sign/minutemen{ - pixel_y = 32 +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"Um" = ( +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "equipment locker"; + req_access_txt = "1" }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; +/obj/item/storage/belt/military, +/obj/item/storage/belt/military, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/mask/gas/sechailer/minutemen, +/obj/item/clothing/mask/gas/sechailer/minutemen, +/obj/item/clothing/mask/gas/sechailer/minutemen, +/obj/item/clothing/mask/gas/sechailer/minutemen, +/obj/item/clothing/suit/armor/riot/minutemen, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/railing{ dir = 4; - id = "cepheus_mech_2_holo"; - locked = 1 - }, -/obj/structure/cable{ - icon_state = "0-2" + layer = 4.1 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/science/robotics) -"Up" = ( -/obj/structure/closet/wall{ - dir = 4; - icon_door = "yellow_wall"; - name = "engineering closet"; - pixel_x = -28 +/obj/item/clothing/head/helmet/bulletproof/minutemen, +/obj/item/clothing/head/helmet/bulletproof/minutemen, +/obj/item/clothing/head/helmet/riot/minutemen, +/obj/structure/sign/poster/contraband/stechkin{ + pixel_y = -32 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/steeldecal/steel_decals_central6, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/accessory/armband/engine, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/head/beret/eng/hazard, -/obj/item/storage/backpack/industrial, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/head/hardhat/dblue, /turf/open/floor/plasteel/tech, +/area/ship/security) +"Up" = ( +/turf/closed/wall/mineral/plastitanium, /area/ship/engineering/electrical) -"Uq" = ( -/obj/effect/turf_decal/techfloor/corner{ - dir = 1 +"Ur" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + pixel_y = 2 }, -/obj/item/mecha_parts/mecha_equipment/drill{ - pixel_y = 6; - pixel_x = 7 +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = -3; + pixel_y = 3 }, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6"; - pixel_y = -13; - pixel_x = -16 +/obj/item/clothing/glasses/welding{ + pixel_x = 6; + pixel_y = -5 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/clothing/glasses/welding{ + pixel_x = 6; + pixel_y = -1 }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"Ur" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2 +/obj/item/toy/figure/roboticist{ + pixel_x = 7; + pixel_y = 11 }, -/obj/structure/chair/office{ - dir = 8; - name = "tactical swivel chair" +/obj/item/disk/design_disk/cmm_mechs{ + pixel_y = -12 }, -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) "Us" = ( @@ -4469,415 +4352,412 @@ /area/ship/science/robotics) "UC" = ( /obj/effect/turf_decal/siding/white, -/obj/structure/sign/poster/contraband/space_cola{ - pixel_y = -32 +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -22 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ship/hallway/central) "UQ" = ( -/obj/structure/sign/minutemen, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/science/robotics) -"Vi" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_x = -6 - }, -/obj/machinery/recharger{ - pixel_x = 5 - }, -/obj/structure/sign/poster/contraband/d_day_promo{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/figure/secofficer{ - pixel_y = 14; - pixel_x = -9 - }, -/obj/item/screwdriver, -/obj/item/holosign_creator/security{ - pixel_x = -3; - pixel_y = 7 - }, +/obj/machinery/vending/tool, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/tech, -/area/ship/security) -"Vj" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 6 - }, -/obj/machinery/camera/autoname{ - dir = 10 +/area/ship/engineering/electrical) +"UV" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/crew/dorm) -"VE" = ( -/obj/structure/sink{ - pixel_y = 20; - pixel_x = 1 +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/structure/mirror{ - pixel_y = 32; - pixel_x = 1 +/obj/machinery/door/window/eastright{ + name = "Engine Access" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/garbage, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/dorm) -"VI" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/machinery/door/poddoor{ + dir = 4; + id = "cepheus_engines"; + name = "Engine Blast Door" }, -/obj/item/wrench, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/telecomms_floor, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"UW" = ( +/obj/structure/sign/minutemen, +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/electrical) -"VQ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/industrial/caution{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +"Vb" = ( +/obj/effect/turf_decal/steeldecal/steel_decals3{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 10 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/obj/effect/turf_decal/industrial/caution, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/steeldecal/steel_decals_central4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/turf_decal/techfloor/hole/right{ - dir = 8 +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"Vj" = ( +/obj/effect/turf_decal/techfloor, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 7; + pixel_y = -21 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"VV" = ( -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/structure/sign/poster/official/ion_carbine{ - pixel_y = 32 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/crew/dorm) +"Vl" = ( +/obj/structure/toilet{ + dir = 4; + pixel_x = -1; + pixel_y = 5 }, -/obj/item/clothing/suit/space/hardsuit/security/independent/minutemen, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plating/catwalk_floor, /area/ship/security) -"Wn" = ( -/obj/structure/table/reinforced{ - color = "#c1b6a5" +"Vt" = ( +/obj/machinery/photocopier{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22"; + pixel_x = -10 }, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = -1 +/obj/item/radio/intercom/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"VI" = ( +/obj/machinery/door/airlock/freezer{ + dir = 4 }, -/obj/machinery/jukebox/boombox{ - pixel_y = 5 +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/central) +"VQ" = ( +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/item/reagent_containers/food/snacks/breadslice/moldy{ - pixel_x = -6; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, /turf/open/floor/plasteel/tech, -/area/ship/engineering/electrical) -"Wq" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/turf_decal/arrows{ - pixel_y = 15 - }, +/area/ship/engineering/atmospherics) +"VV" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/suit_storage_unit/inherit/industrial, /obj/structure/railing{ dir = 8; - layer = 4.1; - color = "#808080" + layer = 3.1 }, -/obj/effect/decal/cleanable/glass/plasma, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) +/obj/item/clothing/suit/space/hardsuit/security/independent/minutemen, +/turf/open/floor/plasteel/tech, +/area/ship/security) "WB" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) "WL" = ( -/obj/machinery/advanced_airlock_controller{ - pixel_y = 26 +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/docking_port/mobile{ + dheight = 5; + dir = 4; + launch_status = 0; + port_direction = 2; + preferred_direction = 4 }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) "WN" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/industrial/warning, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/transparent/black/half{ + dir = 4 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/electrical) -"WQ" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 +/obj/machinery/microwave{ + pixel_y = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/central) -"WR" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_y = -4; - pixel_x = -4 +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -22 }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_y = -4; - pixel_x = 1 +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 5 }, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/effect/turf_decal/techfloor/orange, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/electrical) -"WU" = ( -/obj/structure/sign/minutemen, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/engineering/electrical) -"WY" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/security) -"Xf" = ( -/obj/structure/closet/emcloset/wall{ - dir = 8; - pixel_x = 28 +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"WQ" = ( +/obj/structure/closet/secure_closet/freezer/wall{ + dir = 4; + pixel_x = -28 }, -/obj/effect/decal/cleanable/oil{ - pixel_y = 11 +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = 5; + pixel_y = 5 }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) -"Xq" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/light/small{ - dir = 4 +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/electrical) -"Xv" = ( -/obj/machinery/power/shuttle/engine/fueled/plasma{ - dir = 4 +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/plating/airless, -/area/ship/engineering/atmospherics) -"XA" = ( -/turf/closed/wall/mineral/plastitanium, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, /area/ship/hallway/central) -"XK" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/orange/corner{ - dir = 4 +"WU" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop{ + dir = 8; + pixel_x = 5; + pixel_y = 6 }, -/obj/structure/railing/corner{ - dir = 4 +/obj/item/trash/can/food{ + pixel_x = -8; + pixel_y = 4 }, -/obj/structure/sign/warning/explosives/alt{ - pixel_x = -32 +/obj/machinery/button/door{ + dir = 8; + id = "cepheus_armoury"; + name = "Armoury Lockdown"; + pixel_x = 23; + pixel_y = 10 }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"XL" = ( +/turf/open/floor/plasteel/tech, +/area/ship/security) +"WX" = ( /obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 + dir = 5 }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/crew/dorm) -"Yd" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/turf_decal/rechargefloor, -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) +"WY" = ( +/obj/machinery/door/window/brigdoor/southright{ + req_access_txt = "1" }, -/obj/machinery/light{ +/obj/effect/turf_decal/industrial/warning/corner{ + color = "#808080"; dir = 1 }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - dir = 8; - id = "cepheus_mech_2_holo"; - locked = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"Xs" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 }, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "0-4" }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/science/robotics) -"YI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/wrapping{ - pixel_y = 15 +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"Xv" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 }, -/obj/structure/chair/office/light{ - dir = 8 +/obj/item/pen{ + pixel_x = 6; + pixel_y = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/wood/birch, -/area/ship/crew/dorm) -"YM" = ( -/obj/effect/turf_decal/corner/transparent/beige/full, -/obj/effect/turf_decal/corner/transparent/beige/diagonal, -/obj/effect/turf_decal/corner/transparent/black/half{ - dir = 8 +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/official/the_owl{ + pixel_x = 32 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -21; - pixel_y = -4 +/obj/structure/sign/poster/contraband/peacemaker{ + pixel_y = -32 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -23; - pixel_y = 9 +/obj/item/phone{ + pixel_x = -6; + pixel_y = 5 }, -/obj/structure/chair{ - dir = 1 +/obj/item/clothing/gloves/krav_maga/sec{ + pixel_x = -9 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"Zs" = ( -/obj/effect/turf_decal/techfloor{ +/obj/item/clothing/head/beret/sec/warden{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"Xx" = ( +/obj/effect/turf_decal/trimline/opaque/yellow/warning{ dir = 8 }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"XA" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ship/security) +"XP" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 }, -/obj/machinery/requests_console{ - pixel_y = 25 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"Zt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/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 = "1-8" }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plasteel/dark, +/area/ship/security) +"YI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/structure/table/wood/reinforced, +/obj/item/storage/photo_album{ + pixel_x = -5; + pixel_y = 12 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = -6 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/item/storage/fancy/cigarettes/cigpack_robustgold{ + pixel_x = -5; + pixel_y = 3 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/item/lighter{ + pixel_x = -9 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"ZB" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/transparent/black/half{ - dir = 4 +/obj/item/newspaper{ + pixel_x = 5; + pixel_y = 1 }, -/obj/machinery/microwave{ - pixel_y = 5 +/obj/item/radio/intercom/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood/birch, +/area/ship/crew/dorm) +"YW" = ( +/obj/effect/turf_decal/techfloor, +/obj/item/circuitboard/mecha/odysseus/peripherals{ + pixel_x = 2; + pixel_y = 8 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -22; +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 5 +/turf/open/floor/plasteel/tech/grid, +/area/ship/science/robotics) +"Zt" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, /area/ship/hallway/central) "ZF" = ( -/obj/structure/rack, -/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{ - pixel_y = -7 - }, -/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/rcl, /obj/effect/turf_decal/industrial/warning{ - dir = 1 + color = "#808080"; + dir = 9 }, -/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/wrapping, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -10 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) "ZJ" = ( -/obj/effect/turf_decal/steeldecal/steel_decals9, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 +/obj/structure/chair/office{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/turf_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /turf/open/floor/plasteel/tech, /area/ship/engineering/electrical) -"ZY" = ( +"ZN" = ( /obj/effect/turf_decal/techfloor{ - dir = 6 + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/item/stack/ore/salvage/scrapsilver{ + pixel_x = -6; + pixel_y = 4 }, /turf/open/floor/plasteel/tech/grid, /area/ship/science/robotics) +"ZY" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/central) (1,1,1) = {" zQ @@ -4889,11 +4769,11 @@ zQ zQ zQ zQ -El -ol -ML -cN -El +zQ +zQ +xT +zQ +zQ zQ zQ zQ @@ -4913,13 +4793,13 @@ zQ zQ zQ zQ -PO +zQ El fJ dy -CD +uo El -PO +zQ zQ zQ zQ @@ -4935,19 +4815,19 @@ zQ zQ zQ zQ -JR -Da -Da +zQ +zQ +zQ +qK El -Uc Sd JO vj -aW El -pD -pD -Gr +qK +zQ +zQ +zQ zQ zQ zQ @@ -4959,22 +4839,22 @@ zQ zQ zQ zQ -qK -uX -bI -lK +zQ +iM +xV +xV El jK wK lc jp -Pn +MS El -vO -tx -Ob -iz -hA +Xs +Xs +SQ +zQ +zQ zQ zQ zQ @@ -4982,224 +4862,224 @@ zQ (5,1,1) = {" zQ zQ -uX -om -uX +zQ +zQ +an uX Nx -EI +UV El -Hl +rr jx sb it -KS +Pz El -wY -RY -Ob -Ob -LL +zX +so Ob +Up +Dj +zQ zQ zQ "} (6,1,1) = {" -ag -Xv +zQ +zQ uX WL -Xf uX -pB -vC -El +uX +sE +fh El +zn dq Jb Pc -El +EN El yZ -BV -Lj -Wn -oH +rH Ob -mf -WU +Ob +fY +Ob +zQ +zQ "} (7,1,1) = {" +ag +wN uX -Mb -uX -ec -uX +Nr +fy uX di -bu -ak +Dr El El -qx +BZ +wF +Eo El El -vQ nG bX Lj -CR +Mi cF Ob -dK -Ob +Cr +UW "} (8,1,1) = {" -Mo +uX CY -sm +uX VQ -cl -XK -HI -Rl uX uX -Ao +jU +wJ +rx +El +El lF -Jv -Ob -Ob -IM -WR +El +El +FW +gu +Ld Lj xF ZJ -Up +Ob FJ Ob "} (9,1,1) = {" -uX +ak aE FS nT -Pa -QP +Of +ey th -Gq -aS -mY +At +uX +uX me Zt Fr -rB -Jw +Ob +Ob Ho -rd -ls +zA +Lj Nt kA bh ng Ob "} -(10,1,1) = {" -qK +(10,1,1) = {" +uX +aU +FA +Xx +rt +jR +mf +pD +rB +zK +kv +se +yK +Fo +Gr +uj +OP +TL +Vb +xd +SE +rU +Ob +"} +(11,1,1) = {" +an uX -hc -LR -sd +bb +db +fM uX uX uX uX uX -kv -se -LK -Ob -Ob -uj -Ob -Ob -Xq -FQ -wZ -Ob -iz -"} -(11,1,1) = {" -zQ -zn -WB -WB -WB -WB -yn -DT -lA -WB -Qe +nr zc UC Ob -WN -pV -VI Ob +pV Ob Ob +UQ +ZF +QJ Ob -iz -zQ +Up "} (12,1,1) = {" zQ -zQ +aW +WB +WB WB -pq -BD WB -Ha +CS YI rZ WB vY lx -lf +qk Ob -Lk -tB +Lr +Ih Io Ob -dg -fN -Qf -zQ +Ob +Ob +Ob +Up zQ "} (13,1,1) = {" zQ zQ WB -VE +vZ HM -KL +WB DN Dy -wP +NR WB sA -lQ -gS -Ob -Ob -Ob +ME +TH Ob +Jw +LM +PO Ob WQ -lR +sB Qf zQ zQ @@ -5207,50 +5087,50 @@ zQ (14,1,1) = {" zQ zQ -zn -WB -WB -WB WB +dg +fN +kG +mS zD MW -Ui +WB lu zJ -gT -hv -FM -YM -OG -Qf -Jo +Ev +Ob +Ob +Ob +Ob +Ob +fq +ZY Qf -XA zQ zQ "} (15,1,1) = {" zQ zQ -zQ +aW +WB +WB +WB WB -XL -Nj -ql Fx nN -WB -Rv +Ao +te yM gT LY -LY -LY -ND -uk -Dg -ri -zQ +JR +Mo +JZ +Qf +VI +Qf +Mr zQ zQ "} @@ -5259,21 +5139,21 @@ zQ zQ zQ WB -JG -si -WB -Ju -cB +Gm +nc +mY +tX +mK WB -Ke +tH vT -Fo -DP -cX +gT +IB +IB IB fX Dg -eT +Tz ri zQ zQ @@ -5287,19 +5167,19 @@ WB EL Vj WB -mj -en +eQ +NJ WB -yf +ER Gf -gT +Ew Im qq -Pv +ug bn Tz -ZB -Qf +EA +ri zQ zQ zQ @@ -5308,6 +5188,31 @@ zQ zQ zQ zQ +WB +go +lA +WB +qb +sm +WB +Da +BO +gT +Ft +JX +Nj +Ri +Ui +WN +Qf +zQ +zQ +zQ +"} +(19,1,1) = {" +zQ +zQ +zQ Qr Qr Qr @@ -5316,7 +5221,7 @@ Qr Qr By By -kN +sX By By TU @@ -5329,52 +5234,27 @@ zQ zQ zQ "} -(19,1,1) = {" -zQ -zQ -zQ -Qr -gF -gf -wI -ZF -Qr -Zs -sZ -sX -Cz -zU -TU -PD -Vi -vc -Iw -TU -zQ -zQ -zQ -"} (20,1,1) = {" zQ zQ zQ -wC +Qr tQ yL qW Fm -Kc +Qr Ol OX qn Fg QS -kG +TU dp fr hd Em -BR +TU zQ zQ zQ @@ -5383,23 +5263,23 @@ zQ zQ zQ zQ -Qr +dA um Jk cg aa -Qr -Ka +vQ +DG Ay -bW -Qn +qI +kg Tu -TU -Kz -zp +Kc +XP +mB hr gG -TU +BR zQ zQ zQ @@ -5407,25 +5287,25 @@ zQ (22,1,1) = {" zQ zQ +zQ Qr -Qr -Qr -sY -ys +hA +ZN +YW cH Qr -By -Nk +Bz +zI Ru -vI -By -TU -TU +sH +Fu TU +NI +RL pr PP TU -TU +zQ zQ zQ "} @@ -5433,23 +5313,23 @@ zQ zQ zQ Qr -wu -Wq -Uq +Qr +Qr +QO gC -vw -De +ae +Qr By -Uh +QI PV -rJ +bz By -ff -Eo -WY +TU +TU +TU Qx we -LS +TU TU zQ zQ @@ -5458,24 +5338,24 @@ zQ zQ zQ Qr -Tm +Gn sz IR dI Ur -oy +Iq By -ra +IK TJ -Ou +eW By -jm -Fw +Mj +Vl Lc MR rc -kC -BR +Vt +TU zQ zQ "} @@ -5483,23 +5363,23 @@ zQ zQ zQ Qr -xG -pu +tm +Oi uS RW Tx vJ By -iF -iF -iF +gi +DA +EB By Rt -iy +oo WY im -lS -tD +Gk +FC BR zQ zQ @@ -5507,50 +5387,50 @@ zQ (26,1,1) = {" zQ zQ -TL -Qr Qr +dV +is yh -tW -Qr -Qr -qs -zQ -zQ -zQ +Rd qs -TU -TU -TU -Gs -TU -TU -OP +wC +By +Dk +Dk +Dk +By +KL +NW +Lc +uO +WU +Et +BR zQ zQ "} (27,1,1) = {" zQ zQ -zQ +cl +Qr Qr -Uj qT -wy -rx +pc Qr +Qr +BU zQ zQ zQ -zQ -zQ +BU +TU +TU TU -PX -TZ lX -fy TU -zQ +TU +jl zQ zQ "} @@ -5558,22 +5438,22 @@ zQ zQ zQ zQ -DA +Qr og wH wy Tv -Us +Qr zQ zQ zQ zQ zQ TU -uK +tV eu mn -Bs +Um TU zQ zQ @@ -5583,10 +5463,10 @@ zQ zQ zQ zQ -Qr -Yd +ea +yI AH -ZY +wy AL Us zQ @@ -5598,7 +5478,7 @@ TU VV RN pW -by +qe TU zQ zQ @@ -5608,12 +5488,12 @@ zQ zQ zQ zQ -pc Qr -pS +iz +WX pQ -ee -Qr +mH +Us zQ zQ zQ @@ -5621,10 +5501,10 @@ zQ zQ TU Jc -Rk -rG +ir +EG +Xv TU -EN zQ zQ zQ @@ -5633,22 +5513,47 @@ zQ zQ zQ zQ +ff +Qr +lV +pq +qJ +Qr +zQ +zQ +zQ zQ -pc +zQ +TU +OG +RM +Uj +TU +XA +zQ +zQ +zQ +"} +(32,1,1) = {" +zQ +zQ +zQ +zQ +ff Qr Qr Qr -UQ +yn zQ zQ zQ zQ zQ -Ft +LJ TU TU TU -EN +XA zQ zQ zQ diff --git a/_maps/shuttles/shiptest/minutemen_corvus.dmm b/_maps/shuttles/shiptest/minutemen_corvus.dmm index 0ac5be428a61..597aa5af15a6 100644 --- a/_maps/shuttles/shiptest/minutemen_corvus.dmm +++ b/_maps/shuttles/shiptest/minutemen_corvus.dmm @@ -1,108 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"af" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/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 = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/hatch{ - name = "Cargo Bay" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/security) -"ah" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/mineral/ore_redemption{ - dir = 1; - output_dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"ar" = ( -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"av" = ( -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/external/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"aI" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/closet/crate/engineering, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/obj/item/toy/plush/beeplushie, -/obj/item/rcl, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/trash/sosjerky{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"aO" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/medical, -/obj/item/roller, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/item/storage/pill_bottle/iron, -/obj/item/storage/pill_bottle/charcoal, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"bd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 2 - }, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plastic, -/area/ship/hallway/central) "bf" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 4 @@ -139,60 +35,47 @@ "bA" = ( /turf/template_noop, /area/template_noop) -"bN" = ( -/obj/effect/turf_decal/techfloor{ - dir = 5 +"bQ" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, -/obj/machinery/firealarm{ - pixel_y = 24; - pixel_x = 5 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/obj/machinery/rnd/production/techfab/department/security, -/obj/structure/sign/poster/minutemen/enlist{ - pixel_x = 32 +/obj/machinery/light/small/directional/south, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, +/turf/open/floor/plasteel/patterned, /area/ship/security) -"bX" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-1" +"cq" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 }, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/tank/toxins{ dir = 1 }, -/area/ship/bridge) -"cc" = ( -/obj/structure/closet/wall/red{ - name = "Ammo locker"; - pixel_y = 28 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 6 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 5 - }, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/item/ammo_box/magazine/m45/rubbershot, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"cx" = ( +/obj/structure/rack, /obj/effect/turf_decal/corner/opaque/red/border{ - dir = 1 + dir = 5 }, -/obj/item/ammo_box/magazine/m45/rubbershot, -/obj/item/ammo_box/magazine/smgm9mm{ - pixel_y = 1; - pixel_x = 2 +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/item/ammo_box/magazine/smgm9mm/rubbershot{ - pixel_y = -2; - pixel_x = -5 +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/gun/ballistic/automatic/pistol/m1911{ + pixel_x = 2; + pixel_y = 5 }, -/obj/item/ammo_box/magazine/smgm9mm, +/obj/item/gun/ballistic/automatic/pistol/m1911, +/obj/item/flamethrower/full/tank, +/obj/item/gun/ballistic/automatic/smg/cm5, /turf/open/floor/plasteel/dark, /area/ship/security) "cC" = ( @@ -204,64 +87,56 @@ "cR" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) -"cY" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ +"dq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/security) +"dB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/effect/turf_decal/industrial/stand_clear, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_y = -2; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_y = -2; - pixel_x = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_y = 4 +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -10; + pixel_y = -22 }, -/obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_y = 3; - pixel_x = 3 +/obj/machinery/vending/wallmed{ + pixel_y = -28 }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_y = -2; - pixel_x = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 +/turf/open/floor/plastic, +/area/ship/hallway/central) +"dI" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/button/door{ + dir = 4; + id = "minutecop_windows"; + name = "Window blastdoors"; + pixel_x = -22; + pixel_y = -10 }, -/obj/structure/cable{ - icon_state = "1-6" +/obj/machinery/button/door{ + dir = 4; + id = "minutecop_bridge"; + name = "Bridge shutters"; + pixel_x = -22; + pixel_y = 2 }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"dq" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/security) +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "dJ" = ( /obj/effect/turf_decal/number/six{ dir = 1 }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) -"dT" = ( -/obj/structure/chair/greyscale{ - dir = 4 - }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plastic, -/area/ship/hallway/central) "dU" = ( /obj/effect/turf_decal/techfloor/orange, /obj/effect/decal/cleanable/dirt/dust, @@ -279,27 +154,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"ea" = ( -/obj/effect/turf_decal/techfloor/orange, -/obj/structure/railing/corner, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "ej" = ( /obj/effect/turf_decal/techfloor/orange, /obj/structure/railing{ @@ -342,25 +196,25 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"er" = ( -/obj/structure/rack, -/obj/effect/turf_decal/corner/opaque/red/border{ - dir = 5 +"eE" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop{ + pixel_x = 6; + pixel_y = 4 }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/item/paper_bin{ + pixel_x = -9; + pixel_y = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 +/obj/item/pen{ + pixel_x = -10; + pixel_y = 4 }, -/obj/item/gun/ballistic/automatic/pistol/m1911{ - pixel_x = 2; - pixel_y = 5 +/obj/effect/turf_decal/techfloor{ + dir = 9 }, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/item/flamethrower/full/tank, -/obj/item/gun/ballistic/automatic/smg/cm5, -/turf/open/floor/plasteel/dark, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech, /area/ship/security) "eF" = ( /obj/effect/turf_decal/number/zero{ @@ -371,28 +225,57 @@ "eS" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew) -"fh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"eZ" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/mineral/ore_redemption{ + dir = 1; + output_dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"fr" = ( +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/decal/cleanable/robot_debris, +/obj/effect/turf_decal/number/three, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"fy" = ( +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/glasses/welding{ + pixel_y = 5 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 +/obj/item/multitool{ + pixel_x = 9 }, -/turf/open/floor/carpet/nanoweave, +/obj/effect/turf_decal/kfp_small/left, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"fR" = ( +/obj/machinery/advanced_airlock_controller{ + pixel_x = -25 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"fQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/structure/curtain/cloth/grey, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 +"fX" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/security) "gj" = ( /obj/effect/turf_decal/siding/white/corner{ dir = 8 @@ -411,25 +294,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"go" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/newspaper{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = -6 - }, -/obj/item/spacecash/bundle/c1000{ - pixel_y = -4; - pixel_x = 3 - }, -/turf/open/floor/plastic, -/area/ship/hallway/central) "gH" = ( /obj/structure/bookcase/random, /obj/effect/turf_decal/siding/wood{ @@ -437,6 +301,27 @@ }, /turf/open/floor/wood, /area/ship/bridge) +"gP" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/closet/crate/internals, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/machinery/atmospherics/pipe/manifold/orange/visible, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "gS" = ( /obj/structure/tank_dispenser, /obj/effect/decal/cleanable/dirt/dust, @@ -448,6 +333,32 @@ /obj/structure/sign/minutemen, /turf/closed/wall/mineral/plastitanium, /area/ship/cargo) +"hk" = ( +/obj/machinery/door/poddoor{ + id = "minutecop_bridge"; + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) +"hp" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft, +/obj/machinery/door/poddoor{ + dir = 4; + id = "minutemen_corvus_engines"; + name = "Thruster Blast Door" + }, +/turf/open/floor/plating, +/area/ship/engineering) "hK" = ( /obj/structure/chair/greyscale{ dir = 8 @@ -483,6 +394,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) +"is" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/computer/cryopod/directional/east, +/obj/effect/turf_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) "iJ" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 8 @@ -501,20 +423,63 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"ja" = ( -/obj/structure/window/reinforced{ - dir = 8 +"iL" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Security" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/door/poddoor{ - id = "minutemen_corvus_engines"; - name = "Thruster Blast Door" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/structure/window/plasma/reinforced/spawner/east, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned, +/area/ship/security) +"iV" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/stand_clear, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_y = 4 + }, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/cable{ + icon_state = "1-6" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "jk" = ( /obj/effect/turf_decal/borderfloor{ dir = 1 @@ -540,48 +505,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, /area/ship/hallway/central) -"jt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - id = "corvus_cargo"; - locked = 1; - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "minutecop_cargohatch"; - name = "Cargo Bay Blast Door" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/cargo) -"jA" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/door/airlock/hatch{ - name = "Security" - }, -/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 = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/security) "jE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 @@ -612,41 +535,6 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) -"kt" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/icecreamsandwich{ - pixel_y = 4; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/snacks/icecreamsandwich{ - pixel_y = -5; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/icecreamsandwich, -/obj/item/reagent_containers/food/snacks/hotdog{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/snacks/hotdog, -/obj/item/storage/cans/sixbeer, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plastic, -/area/ship/hallway/central) -"kv" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/security) "kE" = ( /obj/effect/turf_decal/steeldecal/steel_decals3{ dir = 10 @@ -670,13 +558,21 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"lv" = ( -/obj/effect/turf_decal/steeldecal/steel_decals1, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/binary/pump/on/layer2{ - dir = 1 +"kJ" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, +/obj/machinery/computer/warrant{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"kR" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "lE" = ( /obj/effect/turf_decal/siding/white{ @@ -693,30 +589,8 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"lJ" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/stand_clear, -/obj/machinery/button/door{ - id = "minutecop_cargohatch"; - name = "Cargo hatch"; - pixel_x = 23; - pixel_y = 10; - dir = 8 - }, -/obj/machinery/button/shieldwallgen{ - id = "corvus_cargo"; - pixel_x = 21; - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-10" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"lM" = ( -/obj/effect/turf_decal/siding/white{ +"lM" = ( +/obj/effect/turf_decal/siding/white{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -730,19 +604,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"lT" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "lX" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -778,49 +639,17 @@ }, /turf/open/floor/plastic, /area/ship/hallway/central) -"mQ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_y = 9; - pixel_x = 4 - }, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_y = 13; +"mV" = ( +/obj/structure/chair/sofa/left, +/obj/item/toy/plush/lizardplushie{ pixel_x = 4 }, -/obj/item/lighter{ - pixel_x = 10 - }, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = -8 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 28 - }, /obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/ship/crew) -"mR" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/hole{ - dir = 1 - }, -/obj/effect/decal/cleanable/wrapping, -/obj/machinery/light{ - dir = 1 + icon_state = "2-8" }, -/obj/machinery/jukebox, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "nI" = ( /obj/structure/bed, /obj/item/bedsheet/grey, @@ -843,31 +672,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"oc" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plastic, -/area/ship/hallway/central) "of" = ( /obj/machinery/door/poddoor{ id = "minutecop_windows" @@ -875,17 +679,6 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/hallway/central) -"oh" = ( -/obj/effect/turf_decal/techfloor{ - dir = 6 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2; - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "oj" = ( /obj/effect/turf_decal/siding/thinplating/dark/corner, /obj/effect/turf_decal/siding/thinplating/dark/corner{ @@ -905,41 +698,19 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"ot" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 9 - }, -/obj/effect/turf_decal/steeldecal/steel_decals2, -/obj/item/wirecutters{ - pixel_x = 6; - pixel_y = -8 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/obj/item/kirbyplants/random, -/obj/machinery/button/door{ - id = "minutemen_corvus_engines"; - name = "Engine Blast Doors"; - pixel_x = -10; - pixel_y = 24 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"oA" = ( -/obj/machinery/airalarm/all_access{ +"oN" = ( +/obj/machinery/door/airlock/grunge{ dir = 4; - pixel_x = -25 + name = "Bathroom" }, -/obj/machinery/computer/cargo/express, -/obj/structure/sign/poster/minutemen/lanchester{ - pixel_y = 32 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/central) "oQ" = ( /obj/machinery/power/smes/engineering, /obj/effect/turf_decal/industrial/warning, @@ -961,6 +732,54 @@ }, /turf/open/floor/wood, /area/ship/crew) +"py" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/minutemen/gold{ + pixel_y = -32 + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"pN" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plastic, +/area/ship/hallway/central) +"pW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ship/crew) "qb" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 6 @@ -980,23 +799,14 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"qF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - id = "corvus_cargo"; - locked = 1; - dir = 8 - }, +"qL" = ( /obj/machinery/door/poddoor{ - id = "minutecop_cargohatch"; - name = "Cargo Bay Blast Door" - }, -/obj/structure/cable{ - icon_state = "0-2" + id = "minutecop_bridge"; + dir = 8 }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/cargo) +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) "qN" = ( /obj/structure/toilet{ pixel_y = 13 @@ -1015,6 +825,18 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plasteel/showroomfloor, /area/ship/hallway/central) +"qU" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/hole{ + dir = 1 + }, +/obj/effect/decal/cleanable/wrapping, +/obj/machinery/light/directional/north, +/obj/machinery/jukebox, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "qW" = ( /obj/effect/turf_decal/siding/white/corner, /obj/effect/turf_decal/siding/white/corner{ @@ -1028,6 +850,26 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) +"rb" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1; + piping_layer = 2 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"rh" = ( +/obj/structure/chair/sofa/right, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "rk" = ( /obj/machinery/door/poddoor{ id = "minutecop_windows" @@ -1043,31 +885,15 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security) -"rG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/secure_closet{ - icon_door = "tac"; - icon_state = "tac"; - name = "boarding tools locker"; - req_access_txt = "3" - }, -/obj/item/storage/backpack/duffelbag/syndie/x4{ - icon_state = "duffel-sec"; - name = "breaching charges duffel bag" - }, -/obj/item/door_seal, -/obj/item/door_seal, -/obj/effect/turf_decal/corner/opaque/red/border{ - dir = 9 - }, -/obj/machinery/light{ +"rx" = ( +/obj/effect/turf_decal/steeldecal/steel_decals1, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/ship/security) +/obj/effect/turf_decal/number/zero, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "rL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -1086,6 +912,16 @@ /obj/machinery/suit_storage_unit/inherit, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) +"rO" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "sc" = ( /obj/effect/turf_decal/borderfloorblack, /obj/machinery/door/airlock/hatch{ @@ -1093,33 +929,43 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"sr" = ( -/obj/effect/turf_decal/techfloor/corner, -/obj/effect/decal/cleanable/robot_debris, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"sw" = ( -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/closet/wall{ - name = "Janitorial supplies"; - pixel_y = -28; +"sy" = ( +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/holosign_creator/janibarrier{ - pixel_y = -7; - pixel_x = 5 +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 10 }, -/obj/item/soap/deluxe, -/obj/item/mop, -/obj/item/storage/bag/trash, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/central) +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/mug{ + pixel_x = -6 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/ship/crew) +"sL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "minutemen_corvus_engines"; + name = "Thruster Blast Door" + }, +/obj/structure/window/plasma/reinforced/spawner/east, +/turf/open/floor/plating, +/area/ship/engineering) "sN" = ( /obj/effect/turf_decal/siding/thinplating/dark, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -1204,6 +1050,14 @@ "tt" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/security) +"tD" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/computer/cargo/express, +/obj/structure/sign/poster/minutemen/lanchester{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "tQ" = ( /obj/structure/railing{ dir = 2; @@ -1224,22 +1078,6 @@ /obj/structure/sign/minutemen, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) -"uH" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 13; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = 27 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/garbage, -/obj/effect/decal/cleanable/wrapping, -/obj/machinery/light/small, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/central) "uK" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ @@ -1247,9 +1085,28 @@ }, /turf/open/floor/plastic, /area/ship/hallway/central) -"vg" = ( -/obj/machinery/door/airlock/grunge{ - name = "Bathroom" +"vo" = ( +/obj/docking_port/stationary{ + dwidth = 4; + width = 15; + height = 15; + dir = 2 + }, +/turf/template_noop, +/area/template_noop) +"vN" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/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 = 4 @@ -1257,49 +1114,18 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/central) +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Cargo Bay" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/security) "wa" = ( /obj/structure/chair/greyscale{ dir = 8 }, /turf/open/floor/plastic, /area/ship/hallway/central) -"wh" = ( -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/item/clothing/under/rank/security/officer/minutemen, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/closet/wall{ - name = "uniform closet"; - pixel_y = -30; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -32 - }, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, -/obj/item/storage/backpack/security/cmm, -/turf/open/floor/wood, -/area/ship/crew) "wu" = ( /obj/effect/turf_decal/borderfloorblack{ dir = 4 @@ -1324,94 +1150,25 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"wM" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, +"wx" = ( +/obj/effect/turf_decal/techfloor/orange, +/obj/structure/railing/corner, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - pixel_y = 24; - pixel_x = -10 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plastic, -/area/ship/hallway/central) -"xD" = ( -/obj/machinery/cryopod{ +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/computer/cryopod{ - dir = 8; - pixel_x = 21 - }, -/obj/effect/turf_decal/industrial/warning/cee{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew) -"xG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_x = 12; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = -6 - }, -/obj/machinery/firealarm{ - pixel_y = 24; - pixel_x = -10 - }, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/wood, -/area/ship/crew) -"xH" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/radio/intercom{ - pixel_x = -21; +/obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, -/obj/item/areaeditor/shuttle, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/paicard{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/ship/bridge) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "xL" = ( /obj/effect/turf_decal/siding/thinplating/dark, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -1428,41 +1185,24 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/security) -"xN" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/structure/curtain/cloth/grey, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew) -"xY" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 +"yu" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 }, /obj/structure/rack, -/obj/item/rack_parts{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/rack_parts{ - pixel_y = -2 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/wrench/old, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/circuitboard/computer/rdconsole, -/obj/item/circuitboard/machine/rdserver{ - pixel_x = 6; - pixel_y = -4 +/obj/item/storage/bag/ore, +/obj/item/mining_scanner, +/obj/item/pickaxe/drill, +/obj/item/pickaxe/rusted, +/obj/item/radio/intercom/directional/south, +/obj/machinery/button/flasher{ + dir = 1; + id = "minuteman_cell1"; + pixel_x = -8; + pixel_y = -20 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "yE" = ( /obj/effect/turf_decal/siding/white{ dir = 6 @@ -1473,57 +1213,22 @@ "yI" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security) -"zl" = ( -/obj/machinery/computer/crew/syndie{ - dir = 1 +"zu" = ( +/obj/machinery/door/poddoor{ + id = "minutecop_bridge" }, -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -21; - pixel_x = -6 - }, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -23; - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"zt" = ( -/obj/structure/chair/greyscale{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plastic, -/area/ship/hallway/central) -"zu" = ( -/obj/machinery/door/poddoor{ - id = "minutecop_bridge" - }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/bridge) -"zv" = ( -/obj/item/clothing/under/rank/command/minutemen, -/obj/item/clothing/head/cowboy/sec/minutemen, -/obj/item/clothing/suit/toggle/lawyer/minutemen, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/hud/security/sunglasses/eyepatch, -/obj/effect/turf_decal/siding/wood{ - dir = 5 +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) +"zv" = ( +/obj/item/clothing/under/rank/command/minutemen, +/obj/item/clothing/head/cowboy/sec/minutemen, +/obj/item/clothing/suit/toggle/lawyer/minutemen, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/hud/security/sunglasses/eyepatch, +/obj/effect/turf_decal/siding/wood{ + dir = 5 }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/secure_closet{ @@ -1584,46 +1289,6 @@ }, /turf/open/floor/wood, /area/ship/crew) -"AX" = ( -/obj/effect/turf_decal/techfloor{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/tech, -/area/ship/security) -"Bb" = ( -/obj/effect/turf_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/orange{ - dir = 9 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "Bg" = ( /obj/effect/decal/cleanable/dirt, /obj/docking_port/mobile{ @@ -1642,6 +1307,14 @@ "Bk" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/cargo) +"Bl" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plastic, +/area/ship/hallway/central) "Bu" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -1669,6 +1342,17 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ship/crew) +"BE" = ( +/obj/effect/turf_decal/techfloor{ + dir = 5 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/rnd/production/techfab/department/security, +/obj/structure/sign/poster/minutemen/enlist{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/tech, +/area/ship/security) "BN" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -1727,6 +1411,51 @@ /obj/item/clothing/head/helmet/bulletproof/minutemen, /turf/open/floor/plasteel/dark, /area/ship/security) +"Co" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/rack_parts{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/rack_parts{ + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/wrench/old, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/circuitboard/computer/rdconsole, +/obj/item/circuitboard/machine/rdserver{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"Cr" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Cs" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/cloth/grey, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet/royalblue, +/area/ship/crew) "Ds" = ( /obj/effect/turf_decal/techfloor, /mob/living/simple_animal/bot/secbot/beepsky/jr, @@ -1749,21 +1478,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"DL" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "DS" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -1780,12 +1494,26 @@ }, /turf/open/floor/plastic, /area/ship/hallway/central) -"DU" = ( -/obj/machinery/advanced_airlock_controller{ - pixel_x = -25 +"DY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/snacks/icecreamsandwich{ + pixel_x = 5; + pixel_y = 4 }, -/obj/machinery/light, -/turf/open/floor/plasteel/patterned/grid, +/obj/item/reagent_containers/food/snacks/icecreamsandwich{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/item/reagent_containers/food/snacks/icecreamsandwich, +/obj/item/reagent_containers/food/snacks/hotdog{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/storage/cans/sixbeer, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/turf/open/floor/plastic, /area/ship/hallway/central) "Eo" = ( /obj/structure/reagent_dispensers/watertank, @@ -1806,29 +1534,88 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"EK" = ( -/obj/effect/turf_decal/techfloor{ - dir = 9 - }, -/obj/machinery/button/door{ - id = "minutecop_windows"; - name = "Window blastdoors"; - pixel_y = -10; - pixel_x = -22; - dir = 4 +"Ew" = ( +/obj/machinery/computer/crew/syndie{ + dir = 1 }, -/obj/machinery/button/door{ - id = "minutecop_bridge"; - name = "Bridge shutters"; - pixel_y = 2; - pixel_x = -22; - dir = 4 +/obj/effect/turf_decal/techfloor{ + dir = 10 }, +/obj/item/radio/intercom/directional/south, +/obj/item/radio/intercom/wideband/directional/west, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/bridge) "EO" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) +"ER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 4; + id = "corvus_cargo"; + locked = 1 + }, +/obj/machinery/door/poddoor{ + id = "minutecop_cargohatch"; + name = "Cargo Bay Blast Door" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/patterned/ridged, +/area/ship/cargo) +"Fa" = ( +/obj/effect/turf_decal/techfloor{ + dir = 5 + }, +/obj/machinery/pipedispenser, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Fu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"Fy" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/south, +/obj/item/areaeditor/shuttle, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/paicard{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/ship/bridge) "Fz" = ( /obj/structure/closet/secure_closet/wall{ dir = 1; @@ -1891,20 +1678,69 @@ "Gh" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) -"Gu" = ( -/obj/machinery/porta_turret/centcom_shuttle/ballistic{ - dir = 5; - name = "ship turret"; - on = 0 +"Gm" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "minutecop_bridge" }, -/turf/closed/wall/mineral/plastitanium, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, /area/ship/bridge) -"GF" = ( -/obj/machinery/computer/helm{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 6 +"Gr" = ( +/obj/machinery/autolathe, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 6 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/plasteel/twenty{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 1 + }, +/obj/effect/decal/cleanable/glass{ + pixel_x = -11; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"Gu" = ( +/obj/machinery/porta_turret/centcom_shuttle/ballistic{ + dir = 5; + name = "ship turret"; + on = 0 + }, +/turf/closed/wall/mineral/plastitanium, +/area/ship/bridge) +"Gv" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/closet/crate/engineering, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/toy/plush/beeplushie, +/obj/item/rcl, +/obj/item/reagent_containers/food/snacks/chips{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/trash/sosjerky{ + pixel_y = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"GF" = ( +/obj/machinery/computer/helm{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 6 }, /turf/open/floor/plasteel/tech, /area/ship/bridge) @@ -1920,6 +1756,31 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) +"GK" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/ship/hallway/central) "Ha" = ( /obj/effect/decal/cleanable/food/flour, /turf/open/floor/plastic, @@ -1957,37 +1818,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"Iw" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 31 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/item/gps{ - gpstag = null; - pixel_x = -9; - pixel_y = 7 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "IF" = ( /obj/structure/chair/office/light{ dir = 1; @@ -2009,19 +1839,60 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"Jy" = ( -/obj/structure/chair/sofa/left, -/obj/machinery/newscaster{ - pixel_y = 30 +"Jo" = ( +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/item/clothing/under/rank/security/officer/minutemen, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/obj/item/toy/plush/lizardplushie{ - pixel_x = 4 +/obj/structure/closet/wall{ + dir = 1; + name = "uniform closet"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/obj/item/storage/backpack/security/cmm, +/turf/open/floor/wood, +/area/ship/crew) +"Ju" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/stand_clear, +/obj/machinery/button/door{ + dir = 8; + id = "minutecop_cargohatch"; + name = "Cargo hatch"; + pixel_x = 23; + pixel_y = 10 + }, +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "corvus_cargo"; + pixel_x = 21 }, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "1-10" }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) "JE" = ( /obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 9 @@ -2033,28 +1904,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"JW" = ( -/obj/structure/table, -/obj/machinery/computer/secure_data/laptop{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/paper_bin{ - pixel_x = -9; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_y = 4; - pixel_x = -10 - }, -/obj/effect/turf_decal/techfloor{ - dir = 9 - }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security) "Kz" = ( /obj/structure/window/reinforced{ dir = 4 @@ -2068,110 +1917,128 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"KS" = ( -/obj/structure/closet/firecloset/wall{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 5 - }, -/obj/item/trash/raisins{ - pixel_y = 6; - pixel_x = -6 - }, -/obj/structure/cable{ - icon_state = "2-9" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Lb" = ( -/obj/machinery/power/smes/shuttle/precharged{ +"Lj" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/medical, +/obj/item/roller, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/item/storage/pill_bottle/iron, +/obj/item/storage/pill_bottle/charcoal, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Lq" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 }, +/obj/structure/window/plasma/reinforced/spawner/east, /obj/machinery/door/poddoor{ + dir = 4; id = "minutemen_corvus_engines"; name = "Thruster Blast Door" }, -/obj/structure/window/reinforced{ - dir = 8 - }, /turf/open/floor/plating, /area/ship/engineering) -"Lw" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 +"LE" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/secure_data/laptop{ + pixel_x = -3; + pixel_y = 2 }, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 4 +/obj/machinery/recharger{ + pixel_x = 12 }, -/obj/item/clipboard{ - pixel_x = 9; +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Mh" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/cloth/grey, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/carpet/royalblue, +/area/ship/crew) +"Mt" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = 8; pixel_y = 3 }, -/obj/item/pen{ - pixel_y = 4; - pixel_x = 6 +/obj/item/storage/box/handcuffs{ + pixel_x = -5; + pixel_y = 3 }, -/obj/machinery/light{ - dir = 4 +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 31 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22; - pixel_y = -5 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/gps{ + gpstag = null; + pixel_x = -9; + pixel_y = 7 }, /obj/machinery/light_switch{ - dir = 8; - pixel_x = 22; - pixel_y = 8 + dir = 1; + pixel_x = -12; + pixel_y = -22 }, -/turf/open/floor/wood, -/area/ship/crew) -"LE" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/secure_data/laptop{ - pixel_x = -3; +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Mu" = ( +/obj/machinery/door/poddoor{ + id = "minutecop_windows" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/engineering) +"MA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 13; pixel_y = 2 }, -/obj/machinery/recharger{ - pixel_x = 12 +/obj/structure/mirror{ + pixel_x = 27 }, -/obj/effect/turf_decal/techfloor{ - dir = 9 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/garbage, +/obj/effect/decal/cleanable/wrapping, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/central) +"MT" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 28 }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"Mp" = ( -/obj/effect/turf_decal/techfloor{ - dir = 5 +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/newspaper{ + pixel_x = 5; + pixel_y = 6 }, -/obj/machinery/pipedispenser, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = -6 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Mu" = ( -/obj/machinery/door/poddoor{ - id = "minutecop_windows" +/obj/item/spacecash/bundle/c1000{ + pixel_x = 3; + pixel_y = -4 }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/plastic, +/area/ship/hallway/central) "Nr" = ( /obj/structure/railing{ dir = 2; @@ -2207,6 +2074,36 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"NL" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/structure/chair/office{ + dir = 4; + name = "tactical swivel chair" + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"NY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 2 + }, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plastic, +/area/ship/hallway/central) "Ok" = ( /obj/structure/bed, /obj/item/bedsheet/blue, @@ -2217,29 +2114,6 @@ }, /turf/open/floor/carpet/royalblue, /area/ship/bridge) -"On" = ( -/obj/machinery/autolathe, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 6 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/plasteel/twenty{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1; - color = "#808080" - }, -/obj/effect/decal/cleanable/glass{ - pixel_y = 2; - pixel_x = -11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "Ov" = ( /obj/machinery/door/window/northright{ dir = 2 @@ -2258,26 +2132,6 @@ /obj/item/clothing/suit/space/hardsuit/security/independent/minutemen, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) -"Pf" = ( -/obj/machinery/door/window/brigdoor/southright{ - dir = 4; - req_access_txt = "1" - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 2; - color = "#808080" - }, -/obj/effect/turf_decal/corner/opaque/grey/diagonal, -/obj/effect/turf_decal/industrial/warning{ - dir = 1; - color = "#808080" - }, -/obj/machinery/computer/helm/viewscreen{ - dir = 4; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "Pj" = ( /obj/machinery/porta_turret/centcom_shuttle/ballistic{ dir = 9; @@ -2295,6 +2149,22 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) +"PE" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 1 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow, +/obj/item/stack/sheet/mineral/plasma/five{ + pixel_x = -4 + }, +/obj/item/stack/sheet/mineral/plasma/five{ + pixel_y = -7 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Qj" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -2311,35 +2181,47 @@ }, /turf/open/floor/wood, /area/ship/crew) -"QJ" = ( +"QY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 8; + id = "corvus_cargo"; + locked = 1 + }, +/obj/machinery/door/poddoor{ + id = "minutecop_cargohatch"; + name = "Cargo Bay Blast Door" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/patterned/ridged, +/area/ship/cargo) +"Ri" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/door/poddoor{ - id = "minutemen_corvus_engines"; - name = "Thruster Blast Door" +/obj/machinery/door/window/eastright{ + name = "Engine Access" }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/door/window/eastleft, +/obj/machinery/door/poddoor{ + dir = 4; + id = "minutemen_corvus_engines"; + name = "Thruster Blast Door" + }, /turf/open/floor/plating, /area/ship/engineering) "Rj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plastic, /area/ship/hallway/central) -"Rq" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "RU" = ( /obj/effect/turf_decal/techfloor/orange, /obj/effect/decal/cleanable/dirt/dust, @@ -2357,17 +2239,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"RX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/holopad/emergency/command, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Sd" = ( /obj/structure/sign/minutemen, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -2375,18 +2246,6 @@ "Sn" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew) -"Sr" = ( -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/machinery/computer/warrant{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "SH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -2437,6 +2296,38 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"TS" = ( +/obj/structure/closet/wall/red{ + name = "Ammo locker"; + pixel_y = 28 + }, +/obj/item/ammo_box/magazine/m45{ + pixel_x = 9 + }, +/obj/item/ammo_box/magazine/m45{ + pixel_x = 6 + }, +/obj/item/ammo_box/magazine/m45{ + pixel_x = 5 + }, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/effect/turf_decal/corner/opaque/red/border{ + dir = 1 + }, +/obj/item/ammo_box/magazine/m45/rubbershot, +/obj/item/ammo_box/magazine/smgm9mm{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/ammo_box/magazine/smgm9mm/rubbershot{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/ammo_box/magazine/smgm9mm, +/turf/open/floor/plasteel/dark, +/area/ship/security) "Ua" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -2447,14 +2338,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"Uh" = ( -/obj/structure/chair/sofa/right, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "Um" = ( /obj/effect/turf_decal/siding/thinplating/dark, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -2482,20 +2365,6 @@ "Uy" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) -"UB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/sign/poster/minutemen/gold{ - pixel_y = -32 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "UP" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /obj/effect/turf_decal/industrial/hatch/yellow, @@ -2505,44 +2374,6 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) -"UV" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/closet/crate/internals, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_y = -4; - pixel_x = -4 - }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_y = -4; - pixel_x = 1 - }, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/machinery/atmospherics/pipe/manifold/orange/visible, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"UY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "Vi" = ( /obj/effect/turf_decal/techfloor/orange/corner{ dir = 4 @@ -2566,98 +2397,95 @@ /obj/machinery/shower{ pixel_y = 13 }, -/obj/structure/curtain/bounty, -/obj/structure/spider/cocoon, -/obj/structure/spider/stickyweb, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/ship/hallway/central) -"VW" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/industrial/warning{ - dir = 1; - color = "#808080" +/obj/structure/curtain/bounty, +/obj/structure/spider/cocoon, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Wl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/lighter{ + pixel_x = 10 + }, +/obj/item/newspaper{ + pixel_x = 7; + pixel_y = -8 }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow, -/obj/item/stack/sheet/mineral/plasma/five{ - pixel_x = -4 +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/computer/helm/viewscreen/directional/north{ + pixel_y = 28 }, -/obj/item/stack/sheet/mineral/plasma/five{ - pixel_y = -7 +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"VZ" = ( -/obj/item/trash/popcorn{ - pixel_y = 11; - pixel_x = -4 +/turf/open/floor/wood, +/area/ship/crew) +"WT" = ( +/obj/effect/turf_decal/borderfloorblack{ + dir = 4 }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "engine fuel pump" +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 9 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + name = "Engineering" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Wn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = -22; - dir = 1 - }, -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plastic, -/area/ship/hallway/central) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "WW" = ( /obj/machinery/door/window/brigdoor/southright, /obj/effect/turf_decal/corner/opaque/red/border, /turf/open/floor/plasteel/dark, /area/ship/security) -"WX" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/mining_scanner, -/obj/item/pickaxe/drill, -/obj/item/pickaxe/rusted, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -20; - pixel_x = 5 +"WY" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 }, -/obj/machinery/button/flasher{ - dir = 1; - pixel_y = -20; - pixel_x = -8; - id = "minuteman_cell1" +/obj/effect/turf_decal/steeldecal/steel_decals2, +/obj/item/wirecutters{ + pixel_x = 6; + pixel_y = -8 }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"WZ" = ( -/obj/effect/turf_decal/techfloor{ - dir = 8 +/obj/machinery/firealarm/directional/north{ + pixel_x = 4 }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/belt/utility/full/engi, -/obj/item/clothing/glasses/welding{ - pixel_y = 5 +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 }, -/obj/item/multitool{ - pixel_x = 9 +/obj/item/kirbyplants/random, +/obj/machinery/button/door{ + id = "minutemen_corvus_engines"; + name = "Engine Blast Doors"; + pixel_x = -10; + pixel_y = 24 }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) @@ -2674,6 +2502,66 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"XM" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-1" + }, +/turf/open/floor/plasteel/stairs{ + dir = 1; + icon = 'icons/obj/stairs.dmi' + }, +/area/ship/bridge) +"XO" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/ship/hallway/central) +"XR" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) +"XU" = ( +/obj/structure/closet/firecloset/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 5 + }, +/obj/item/trash/raisins{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/cable{ + icon_state = "2-9" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Yh" = ( /obj/structure/railing{ dir = 2; @@ -2688,6 +2576,47 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Yn" = ( +/obj/machinery/light/directional/north, +/obj/machinery/holopad/emergency/command, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Yq" = ( +/obj/item/trash/popcorn{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "engine fuel pump" + }, +/obj/effect/turf_decal/number/five, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"YE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/secure_closet{ + icon_door = "tac"; + icon_state = "tac"; + name = "boarding tools locker"; + req_access_txt = "3" + }, +/obj/item/storage/backpack/duffelbag/syndie/x4{ + icon_state = "duffel-sec"; + name = "breaching charges duffel bag" + }, +/obj/item/door_seal, +/obj/item/door_seal, +/obj/effect/turf_decal/corner/opaque/red/border{ + dir = 9 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/security) "YG" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 1 @@ -2706,6 +2635,23 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"YL" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 4; + req_access_txt = "1" + }, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 2 + }, +/obj/effect/turf_decal/corner/opaque/grey/diagonal, +/obj/effect/turf_decal/industrial/warning{ + color = "#808080"; + dir = 1 + }, +/obj/machinery/computer/helm/viewscreen/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "YM" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -2737,6 +2683,16 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"YO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "YT" = ( /obj/machinery/porta_turret/centcom_shuttle/ballistic{ dir = 10; @@ -2745,26 +2701,6 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) -"Zc" = ( -/obj/effect/turf_decal/techfloor{ - dir = 10 - }, -/obj/structure/chair/office{ - dir = 4; - name = "tactical swivel chair" - }, -/obj/machinery/newscaster{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security) "Zh" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/techfloor{ @@ -2779,6 +2715,28 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Zx" = ( +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/closet/wall{ + dir = 1; + name = "Janitorial supplies"; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/holosign_creator/janibarrier{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/soap/deluxe, +/obj/item/mop, +/obj/item/storage/bag/trash, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/central) "ZG" = ( /obj/effect/turf_decal/techfloor, /obj/effect/decal/cleanable/dirt/dust, @@ -2796,12 +2754,12 @@ bA bA bA bA -bA +IX Zt To To Zt -bA +IX bA bA bA @@ -2812,12 +2770,12 @@ bA bA bA bA -Gh -ja -QJ -Lb -ja -Gh +IX +sL +hp +Ri +Lq +IX bA bA bA @@ -2829,10 +2787,10 @@ bA bA Pj IX -ot +WY iJ mo -UV +gP IX YT bA @@ -2849,7 +2807,7 @@ YG tp kE RU -VW +PE IX bA bA @@ -2860,12 +2818,12 @@ bA bA bA IX -Rq -KS +kR +XU bf Vi NE -On +Gr Jh FW bA @@ -2879,8 +2837,8 @@ Uy Uy Uy IX -mR -ea +qU +wx IX IX Gh @@ -2892,30 +2850,30 @@ bA hc Uy Kz -Pf +YL nI IX -xY +Co ej sW -WZ +fy IX Gh bA "} (8,1,1) = {" bA -jt -cY +ER +iV Gd PA -WX +yu IX -aI +Gv Tk gS -VZ -ar +Yq +cq IX bA "} @@ -2925,28 +2883,28 @@ Bg Ip Ua Uq -ah +eZ IX Ci dU jE -lv -oh +rx +rb Mu bA "} (10,1,1) = {" bA -qF -lJ -aO +QY +Ju +Lj oj -Iw +Mt IX Eo qb -Mp -sr +Fa +fr ST Mu bA @@ -2956,11 +2914,11 @@ bA uF yI yI -af +vN yI IX IX -Bb +WT IX IX IX @@ -2970,38 +2928,38 @@ bA (12,1,1) = {" yI yI -JW -Zc +eE +NL sN yI -dT -zt +pN +Bl HJ Gf -xN -fQ +Cs +Mh Sn Sn "} (13,1,1) = {" yI -rG +YE Cm Ds -kv +bQ yI -go +MT zA DS jk Qj BN -wh +Jo Sn "} (14,1,1) = {" yI -cc +TS WW ZG Um @@ -3017,33 +2975,33 @@ BA "} (15,1,1) = {" yI -er +cx hY rt xL dq -kt +DY Ha -Wn +dB Gf -xG +sy IF -xD +is Sn "} (16,1,1) = {" tt yI -bN -AX +BE +fX Fz yI uK Rj -bd +NY Gf -mQ -Lw +Wl +pW Sn eS "} @@ -3052,11 +3010,11 @@ bA tt yI yI -jA +iL yI Gf -wM -oc +XO +GK Gf Sn Sn @@ -3069,11 +3027,11 @@ bA Gf jF gj -lT +rO At DJ Bu -DL +Cr Es of bA @@ -3100,12 +3058,12 @@ bA bA ka Gf -vg +oN Gf tc -fh +YO Gf -av +XR Gf Gf bA @@ -3116,13 +3074,13 @@ bA bA eF VR -sw +Zx Gf -Uh -UB +rh +py Gf SH -DU +fR mz bA bA @@ -3132,15 +3090,15 @@ bA bA ka qN -uH +MA Gf -Jy -UY +mV +Fu Gf rL Hw UP -bA +vo bA "} (23,1,1) = {" @@ -3164,13 +3122,13 @@ bA bA rk gH -xH +Fy cR -oA +tD em -bX -EK -zl +XM +dI +Ew cR bA bA @@ -3198,12 +3156,12 @@ Gu cR Ok cR -RX +Yn Nr YM GF zu -zu +hk bA bA "} @@ -3214,11 +3172,11 @@ bA EO cR cR -Sr +kJ tQ zu -zu -zu +Gm +hk bA bA bA @@ -3230,9 +3188,9 @@ bA bA bA Gu -zu -zu -zu +Gm +Gm +qL bA bA bA diff --git a/_maps/shuttles/shiptest/nanotrasen_delta.dmm b/_maps/shuttles/shiptest/nanotrasen_delta.dmm index 169aa574ce72..29de7618b348 100644 --- a/_maps/shuttles/shiptest/nanotrasen_delta.dmm +++ b/_maps/shuttles/shiptest/nanotrasen_delta.dmm @@ -5,26 +5,6 @@ "ab" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo) -"ad" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/white, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/folder/yellow, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/obj/item/paper/fluff{ - info = "As a reminder, older ore processing lines may come unlinked from their control terminals. In such cases simply use a multitool to restore the data link."; - name = "Memo - Processor Reliability" - }, -/obj/item/multitool{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) "ae" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/hallway/port) @@ -42,33 +22,6 @@ "ai" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering) -"aj" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"ak" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet/crate, -/obj/effect/turf_decal/industrial/outline/yellow, -/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/item/reagent_containers/food/snacks/canned/beans, -/obj/item/reagent_containers/food/snacks/canned/beans, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "al" = ( /obj/item/reagent_containers/glass/bucket, /obj/item/clothing/suit/caution{ @@ -80,6 +33,7 @@ /obj/item/clothing/suit/caution, /obj/structure/mopbucket, /obj/item/mop, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/port) "am" = ( @@ -89,25 +43,9 @@ }, /turf/open/floor/plating, /area/ship/hallway/port) -"an" = ( -/obj/item/toy/talking/AI, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/port) -"ao" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/weather, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/ship/cargo) "ap" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/advanced_airlock_controller{ - pixel_x = -32; - pixel_y = 11 - }, /obj/structure/closet/emcloset/wall{ dir = 4; pixel_x = -32; @@ -115,55 +53,12 @@ }, /turf/open/floor/plating, /area/ship/hallway/port) -"aq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 1 - }, -/obj/machinery/button/door{ - dir = 4; - id = "Mining Bay Door"; - name = "Mining Bay Door"; - pixel_x = -24; - pixel_y = 10 - }, -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_y = 26 - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) "ar" = ( /obj/effect/turf_decal/corner/opaque/brown{ dir = 1 }, /turf/open/floor/plasteel, /area/ship/cargo) -"at" = ( -/obj/effect/turf_decal/weather, -/obj/structure/rack, -/obj/item/weldingtool/hugetank/empty, -/obj/item/clothing/mask/gas/welding, -/obj/item/slimepotion/slime/sentience/mining, -/obj/item/slimepotion/slime/sentience/mining, -/obj/item/slimepotion/slime/sentience/mining, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 4; - id = "Mining Bay Door"; - name = "Mining Bay Door"; - pixel_x = -24 - }, -/obj/item/borg/upgrade/modkit/cooldown/minebot, -/obj/item/borg/upgrade/modkit/cooldown/minebot, -/obj/item/borg/upgrade/modkit/cooldown/minebot, -/turf/open/floor/pod/dark, -/area/ship/cargo) "au" = ( /obj/machinery/conveyor{ dir = 8; @@ -202,26 +97,6 @@ "ax" = ( /turf/closed/wall/mineral/titanium, /area/ship/cargo) -"ay" = ( -/obj/machinery/power/shuttle/engine/fueled/plasma{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "whiteship_windows" - }, -/turf/open/floor/plating/airless, -/area/ship/engineering) -"az" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering) "aA" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -229,49 +104,12 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/plating, /area/ship/engineering) -"aB" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/bag/trash{ - pixel_x = 6 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/ship/engineering) "aC" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/weldingtool/largetank, /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plating, /area/ship/engineering) -"aD" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_x = -13 - }, -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/structure/mirror{ - pixel_x = 25 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/turf/open/floor/plasteel/freezer, -/area/ship/hallway/port) -"aE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/phone, -/obj/structure/table, -/obj/item/borg/upgrade/ai, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/port) "aF" = ( /obj/structure/rack, /obj/item/aiModule/core/full/corp{ @@ -300,19 +138,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) -"aH" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/railing/corner, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/plasteel, -/area/ship/cargo) "aI" = ( /obj/structure/railing, /obj/effect/turf_decal/siding/white, @@ -321,26 +146,6 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) -"aJ" = ( -/obj/machinery/light/small/built, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/closet/firecloset/wall{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) "aK" = ( /obj/effect/turf_decal/weather, /obj/effect/turf_decal/industrial/outline/yellow, @@ -350,33 +155,6 @@ }, /turf/open/floor/pod, /area/ship/cargo) -"aL" = ( -/obj/effect/turf_decal/weather, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/turf_decal/number/two, -/obj/machinery/camera{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/mob/living/simple_animal/hostile/mining_drone{ - name = "\improper B0S-O" - }, -/turf/open/floor/pod, -/area/ship/cargo) -"aM" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "whiteship_windows" - }, -/turf/open/floor/plating/airless, -/area/ship/engineering) "aN" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -431,65 +209,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/port) -"aS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) -"aT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/machinery/camera, -/turf/open/floor/plasteel, -/area/ship/hallway/port) -"aU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue/bordercorner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) "aV" = ( /obj/machinery/conveyor{ dir = 1; @@ -497,98 +216,19 @@ }, /turf/open/floor/plating, /area/ship/cargo) -"aW" = ( +"aZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /obj/structure/catwalk/over/plated_catwalk/dark, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plating, /area/ship/hallway/port) -"aX" = ( +"bb" = ( /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/neutral{ - dir = 4 - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Port Hallway" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) -"aY" = ( -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/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{ - dir = 1 - }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/hallway/port) -"aZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/catwalk/over/plated_catwalk/dark, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/turf/open/floor/plating, -/area/ship/hallway/port) -"ba" = ( -/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{ - name = "Cargo Bay" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"bb" = ( -/obj/structure/cable{ - icon_state = "1-8" + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -620,19 +260,6 @@ }, /turf/open/floor/pod, /area/ship/cargo) -"be" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/structure/closet/crate, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "bi" = ( /obj/effect/turf_decal/weather, /obj/machinery/conveyor_switch/oneway{ @@ -651,53 +278,6 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating, /area/ship/engineering) -"bo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) -"bq" = ( -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/command, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"br" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/port) "bu" = ( /turf/open/floor/plasteel/patterned, /area/ship/cargo) @@ -743,40 +323,9 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"bA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) "bB" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/bridge) -"bC" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/machinery/computer/cargo/express{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "bD" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -796,22 +345,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"bE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/camera{ - dir = 10 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) "bF" = ( /obj/machinery/vending/cigarette, /obj/effect/decal/cleanable/dirt/dust, @@ -827,26 +360,6 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/central) -"bI" = ( -/obj/machinery/camera{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 10 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) -"bJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo) "bK" = ( /obj/structure/closet/crate, /obj/effect/turf_decal/industrial/outline/yellow, @@ -885,57 +398,10 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"bT" = ( -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/closet/secure_closet{ - icon_state = "cap"; - name = "captain's locker"; - req_access = list(20) - }, -/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, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"bV" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1; - piping_layer = 2 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small/built, -/turf/open/floor/plating, -/area/ship/engineering) "bW" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering) -"bX" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner/north, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/camera{ - dir = 5 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) "bY" = ( /obj/structure/cable{ icon_state = "1-2" @@ -961,35 +427,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"cc" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering) "ce" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/bridge) -"cf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/AIcore, -/obj/item/circuitboard/aicore, -/obj/item/stack/sheet/rglass, -/obj/item/stack/sheet/rglass, -/obj/item/stack/sheet/rglass, -/obj/item/stack/sheet/rglass, -/obj/item/stack/sheet/rglass, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 4; - name = "AI Core Access" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) "cg" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1006,6 +447,7 @@ /area/ship/bridge) "ch" = ( /obj/machinery/holopad/emergency/command, +/obj/effect/landmark/observer_start, /turf/open/floor/plasteel/dark, /area/ship/bridge) "cj" = ( @@ -1020,14 +462,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"ck" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering) "cl" = ( /obj/machinery/power/smes/engineering{ charge = 1e+006 @@ -1040,6 +474,7 @@ /area/ship/engineering) "cm" = ( /obj/machinery/vending/snack/random, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) "co" = ( @@ -1155,22 +590,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"cE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/catwalk/over/plated_catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/hallway/central) "cF" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1192,47 +611,6 @@ /obj/machinery/vending/robotics, /turf/open/floor/plasteel/white, /area/ship/science/robotics) -"cJ" = ( -/obj/structure/table, -/obj/item/paicard{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/aicard{ - pixel_x = 13; - pixel_y = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/white, -/area/ship/science/robotics) -"cK" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/camera, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table, -/obj/item/mmi/posibrain{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/mmi/posibrain{ - pixel_x = 5 - }, -/obj/item/survey_handheld{ - pixel_x = -6 - }, -/turf/open/floor/plasteel/white, -/area/ship/science/robotics) "cN" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/turf_decal/industrial/warning/corner{ @@ -1260,25 +638,6 @@ /obj/structure/sign/departments/engineering, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering) -"cQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/crew) "cR" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1327,24 +686,6 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) -"cW" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/rack, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/item/clothing/suit/hooded/wintercoat/science{ - pixel_y = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/medical) "cX" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/effect/turf_decal/weather, @@ -1353,17 +694,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"cY" = ( -/obj/machinery/light/small/built{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = -10 - }, -/turf/open/floor/plasteel/white, -/area/ship/science/robotics) "da" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, @@ -1422,27 +752,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/cargo) -"df" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) "dg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -1469,70 +778,6 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/crew) -"di" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/structure/curtain/bounty, -/obj/effect/turf_decal/corner/opaque/bar{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/bar, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ship/crew) -"dj" = ( -/obj/effect/decal/cleanable/dirt/dust, -/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{ - name = "Crew Quarters" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew) -"dk" = ( -/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/bar, -/obj/effect/turf_decal/corner/opaque/bar{ - dir = 1 - }, -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/light_switch{ - pixel_x = 10; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/ship/crew) "dl" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1564,27 +809,6 @@ }, /turf/open/floor/plasteel, /area/ship/crew) -"dn" = ( -/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/medical/glass{ - name = "Medbay" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/medical) "do" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1658,27 +882,6 @@ }, /turf/open/floor/plating, /area/ship/science/robotics) -"dt" = ( -/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/research{ - name = "Robotics" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/science/robotics) "du" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -1708,16 +911,6 @@ dir = 8 }, /area/ship/science/robotics) -"dw" = ( -/obj/structure/catwalk/over/plated_catwalk/dark, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ship/science/robotics) "dx" = ( /obj/structure/catwalk/over/plated_catwalk/dark, /obj/structure/cable{ @@ -1731,43 +924,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"dB" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/multitool{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/stack/cable_coil/red, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"dC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing/corner, -/obj/structure/catwalk/over/plated_catwalk/white, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ship/science/robotics) -"dD" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor{ - id = "whiteship_windows" - }, -/turf/open/floor/plating, -/area/ship/hallway/central) "dE" = ( /obj/effect/turf_decal/corner/opaque/neutral{ dir = 4 @@ -1818,24 +974,6 @@ /obj/effect/turf_decal/corner/opaque/bar, /turf/open/floor/plasteel, /area/ship/crew) -"dH" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/curtain/bounty, -/obj/effect/turf_decal/corner/opaque/bar{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/bar, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ship/crew) "dI" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 @@ -1848,77 +986,17 @@ /obj/item/stamp/captain, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"dJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/camera{ - dir = 8 - }, -/obj/structure/table, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"dK" = ( -/obj/effect/turf_decal/rechargefloor, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"dL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/ship/science/robotics) -"dM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/railing{ - dir = 4 +"dK" = ( +/obj/effect/turf_decal/rechargefloor, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"dM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/railing{ + dir = 4 }, /turf/open/floor/plasteel/white, /area/ship/science/robotics) -"dN" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) -"dO" = ( -/obj/effect/turf_decal/corner/opaque/blue, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 8 - }, -/obj/machinery/computer/helm{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "dP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -1968,137 +1046,157 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"dT" = ( +"dV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/science/robotics) +"em" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/ship/engineering) +"ev" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/hallway/central) +"ez" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/curtain/bounty, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"eZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/effect/turf_decal/corner/opaque/neutral{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/lime, -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -24 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 }, -/obj/structure/closet/wall{ - dir = 4; - name = "Radio Storage"; - pixel_x = -28 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, -/area/ship/crew) -"dU" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/ship/hallway/port) +"ff" = ( +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/closet/secure_closet{ + icon_state = "cap"; + name = "captain's locker"; + req_access = list(20) + }, +/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, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"fy" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) -"dV" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/science/robotics) -"dZ" = ( -/obj/machinery/button/door{ - id = "cargobaydoors"; - name = "Cargo Bay Door Control"; - pixel_y = 24 +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/computer/mech_bay_power_console, -/obj/machinery/button/shieldwallgen{ - id = "delta_mechbay"; - pixel_x = 10; - pixel_y = 23 +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"ea" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 +/obj/machinery/camera{ + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/ship/science/robotics) -"eb" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor{ - id = "whiteship_bridge" +/obj/structure/table, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"fC" = ( +/obj/machinery/atmospherics/pipe/simple/orange, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/industrial/warning{ + dir = 10 }, /turf/open/floor/plating, -/area/ship/bridge) -"ec" = ( +/area/ship/engineering) +"fU" = ( /obj/structure/table/glass, /obj/item/storage/backpack/duffelbag/med/surgery{ pixel_y = 4 }, /obj/item/storage/firstaid/medical, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/plasteel/white, /area/ship/medical) -"ev" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/hallway/central) -"gc" = ( -/obj/machinery/door/poddoor{ - id = "cargobaydoors"; - name = "Cargo Bay Door" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 1; - id = "delta_mechbay"; - locked = 1 +"gv" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; + dwidth = 15 }, -/turf/open/floor/plasteel/tech, -/area/ship/science/robotics) -"gN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/effect/turf_decal/corner/opaque/blue{ +/turf/template_noop, +/area/template_noop) +"gL" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/bar{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/bar, +/obj/machinery/light/small/directional/east, +/obj/item/trash/plate{ + pixel_x = -6; + pixel_y = 2 }, -/obj/structure/closet/wardrobe/robotics_black, -/obj/item/clothing/under/suit/senior_roboticist, -/obj/item/clothing/under/suit/senior_roboticist/skirt, -/obj/item/clothing/under/rank/rnd/roboticist/biomech_engineer, -/obj/item/clothing/under/rank/rnd/roboticist/biomech_engineer/skirt, -/obj/item/clothing/under/rank/rnd/roboticist/mech_engineer, -/obj/item/clothing/under/rank/rnd/roboticist/mech_engineer/skirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 +/obj/item/kitchen/fork{ + pixel_x = 5 }, /turf/open/floor/plasteel, /area/ship/crew) -"gX" = ( -/obj/effect/turf_decal/corner/opaque/neutral, -/obj/effect/turf_decal/corner/opaque/neutral{ +"gQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/camera{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/medical) +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/head/welding{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/machinery/light/small/built/directional/east, +/turf/open/floor/plating, +/area/ship/engineering) "hd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 @@ -2108,22 +1206,6 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"hh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/camera{ - dir = 10 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/computer/rdconsole/robotics{ - dir = 1 - }, -/obj/machinery/light/small/built, -/turf/open/floor/plasteel/white, -/area/ship/science/robotics) "hi" = ( /obj/structure/table, /obj/machinery/microwave, @@ -2136,51 +1218,125 @@ }, /turf/open/floor/plasteel, /area/ship/crew) -"hW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 +"hR" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plating, +/area/ship/hallway/central) +"jk" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/white, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/folder/yellow, +/obj/item/radio/intercom/directional/east, +/obj/item/paper/fluff{ + info = "As a reminder, older ore processing lines may come unlinked from their control terminals. In such cases simply use a multitool to restore the data link."; + name = "Memo - Processor Reliability" + }, +/obj/item/multitool{ + pixel_x = -7; + pixel_y = 4 }, +/turf/open/floor/plasteel, +/area/ship/cargo) +"jt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"iM" = ( +"jw" = ( +/obj/structure/extinguisher_cabinet/directional/east, /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/structure/catwalk/over/plated_catwalk, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) +"jD" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) +"kn" = ( +/obj/machinery/light/small/built/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, +/obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, -/area/ship/hallway/central) -"jt" = ( +/area/ship/hallway/port) +"lc" = ( +/obj/effect/turf_decal/corner/opaque/neutral, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/mmi, +/obj/item/mmi{ + pixel_y = 7 + }, +/obj/machinery/light/small/directional/west, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 +/obj/item/folder/white, +/turf/open/floor/plasteel, +/area/ship/medical) +"lp" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_bridge" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/engineering) +/area/ship/bridge) "ls" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 @@ -2190,23 +1346,42 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"lv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "engine fuel pump" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering) +"lx" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/science/robotics) "mt" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/medical) +"mw" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/curtain/bounty, +/obj/effect/turf_decal/corner/opaque/bar{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/bar, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ship/crew) +"mZ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/window/reinforced/spawner/north, +/obj/item/radio/intercom/wideband/directional/west, +/obj/machinery/camera{ + dir = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "nf" = ( /obj/effect/decal/cleanable/cobweb, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, @@ -2248,23 +1423,20 @@ }, /turf/open/floor/plating, /area/ship/medical) -"oo" = ( -/obj/machinery/light/small, +"nY" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/turf_decal/corner/opaque/neutral{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/blue/bordercorner, -/turf/open/floor/plasteel, -/area/ship/hallway/port) +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) "op" = ( /obj/effect/turf_decal/floordetail/edgedrain, /obj/machinery/door/airlock{ @@ -2276,189 +1448,476 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/port) -"pb" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, +"oq" = ( +/obj/machinery/light/small/built/directional/south, /obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"rC" = ( -/obj/machinery/door/airlock/external, -/obj/docking_port/mobile{ - callTime = 250; - dir = 2; - launch_status = 0; - name = "NT Frigate"; - port_direction = 8; - preferred_direction = 4 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"rW" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "engine fuel pump" + icon_state = "4-8" }, -/obj/machinery/shower{ +/obj/effect/turf_decal/corner/opaque/neutral{ dir = 4 }, -/obj/effect/turf_decal/techfloor{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering) -"sp" = ( -/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/structure/closet/firecloset/wall{ + dir = 1; + pixel_y = -28 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) -"sv" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/autolathe, -/turf/open/floor/plating, -/area/ship/engineering) -"uC" = ( -/obj/machinery/door/poddoor{ - id = "cargobaydoors"; - name = "Cargo Bay Door" +/turf/open/floor/plasteel, +/area/ship/hallway/port) +"oz" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "2-8" }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "delta_mechbay"; - locked = 1 +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/science/robotics) -"uT" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"vf" = ( -/obj/machinery/light/small{ +/obj/effect/turf_decal/ntspaceworks_small{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, /turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"vk" = ( -/obj/structure/window/reinforced{ - dir = 8 +"oI" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/curtain/bounty, +/obj/effect/turf_decal/corner/opaque/bar{ + dir = 1 }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Engine Access" +/obj/effect/turf_decal/corner/opaque/bar, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ship/crew) +"oN" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/rack, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/clothing/suit/hooded/wintercoat/science{ + pixel_y = 4 }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ +/obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering) -"vm" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/ship/medical) -"vo" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner/east, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 +"ps" = ( +/obj/machinery/camera{ + dir = 5 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) -"wg" = ( -/obj/machinery/atmospherics/pipe/simple/orange, -/obj/machinery/airalarm/all_access{ +/obj/machinery/light_switch{ dir = 4; - pixel_x = -24 + pixel_x = -24; + pixel_y = 10 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 10 +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"pU" = ( +/obj/machinery/door/airlock/medical/glass{ + dir = 4; + name = "Medbay" }, -/turf/open/floor/plating, -/area/ship/engineering) -"wH" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor{ - id = "whiteship_bridge" +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/machinery/door/firedoor/border_only{ - dir = 1 + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/medical) +"qe" = ( +/obj/effect/turf_decal/weather, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/turf_decal/number/two, +/obj/machinery/camera{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/mob/living/simple_animal/hostile/mining_drone{ + name = "\improper B0S-O" + }, +/turf/open/floor/pod, +/area/ship/cargo) +"qt" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/bridge) -"xe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue/bordercorner, +/turf/open/floor/plasteel, +/area/ship/hallway/port) +"qC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, -/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/clothing/under/suit/senior_roboticist, +/obj/item/clothing/under/suit/senior_roboticist/skirt, +/obj/item/clothing/under/rank/rnd/roboticist/biomech_engineer, +/obj/item/clothing/under/rank/rnd/roboticist/biomech_engineer/skirt, +/obj/item/clothing/under/rank/rnd/roboticist/mech_engineer, +/obj/item/clothing/under/rank/rnd/roboticist/mech_engineer/skirt, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/ship/crew) +"qY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 1 + }, +/obj/machinery/button/door{ + dir = 4; + id = "Mining Bay Door"; + name = "Mining Bay Door"; + pixel_x = -24; + pixel_y = 10 + }, +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8; + pixel_y = 26 + }, +/obj/machinery/light/small/built/directional/west, +/turf/open/floor/plasteel, +/area/ship/cargo) +"rl" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/science/robotics) +"rs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/closet/crate, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"rC" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/ship/hallway/port) +"rW" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "engine fuel pump" + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"sp" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/hallway/central) -"xk" = ( +/area/ship/engineering) +"sv" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/autolathe, +/turf/open/floor/plating, +/area/ship/engineering) +"sF" = ( +/obj/machinery/door/airlock{ + dir = 4; + name = "Crew Quarters" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/crew) +"tf" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, -/obj/structure/frame/computer{ +/obj/item/radio/intercom/directional/south, +/obj/structure/frame/computer/retro{ dir = 1 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, /turf/open/floor/plasteel/white, /area/ship/medical) -"xA" = ( -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"xO" = ( +"tr" = ( +/obj/structure/extinguisher_cabinet/directional/east, /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 }, /obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"xW" = ( +"tU" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 }, +/obj/effect/turf_decal/number/seven{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/ship/external) -"AG" = ( +"ur" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/ntspaceworks_small/right{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"uT" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"vk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Engine Access" + }, +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, /obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"vm" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/medical) +"vF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ship/crew) +"vG" = ( +/obj/effect/turf_decal/weather, +/obj/structure/rack, +/obj/item/weldingtool/hugetank/empty, +/obj/item/clothing/mask/gas/welding, +/obj/item/slimepotion/slime/sentience/mining, +/obj/item/slimepotion/slime/sentience/mining, +/obj/item/slimepotion/slime/sentience/mining, +/obj/machinery/light/small/directional/east, +/obj/machinery/button/door{ + dir = 4; + id = "Mining Bay Door"; + name = "Mining Bay Door"; + pixel_x = -24 + }, +/obj/item/borg/upgrade/modkit/cooldown/minebot, +/obj/item/borg/upgrade/modkit/cooldown/minebot, +/obj/item/borg/upgrade/modkit/cooldown/minebot, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"ww" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/camera{ + dir = 10 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) +"xe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"xz" = ( +/obj/machinery/door/airlock/mining/glass{ + dir = 4; + name = "Port Hallway" + }, +/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/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/port) +"xA" = ( +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"xD" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light/small/built/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"xF" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/multitool{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/stack/cable_coil/red, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plating, +/area/ship/engineering) +"xL" = ( +/obj/machinery/button/door{ id = "cargobaydoors"; - name = "Cargo Bay Door" + name = "Cargo Bay Door Control"; + pixel_y = 24 }, -/turf/open/floor/plasteel/tech, +/obj/machinery/button/shieldwallgen{ + id = "delta_mechbay"; + pixel_x = 10; + pixel_y = 22 + }, +/obj/machinery/computer/mech_bay_power_console/retro, +/turf/open/floor/plasteel/dark, /area/ship/science/robotics) -"Bz" = ( +"ya" = ( +/obj/machinery/light/small/built/directional/west, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = -10 + }, +/turf/open/floor/plasteel/white, +/area/ship/science/robotics) +"yy" = ( +/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 = "Cargo Bay" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/cargo) +"zJ" = ( +/obj/item/toy/talking/AI, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/port) +"zT" = ( /obj/machinery/button/door{ dir = 4; id = "whiteship_bridge"; @@ -2487,6 +1946,121 @@ /obj/item/areaeditor/shuttle, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Aw" = ( +/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/bar, +/obj/effect/turf_decal/corner/opaque/bar{ + dir = 1 + }, +/obj/machinery/light/small/built/directional/north, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/light_switch{ + pixel_x = 10; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/ship/crew) +"AM" = ( +/obj/structure/table, +/obj/item/paicard{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/aicard{ + pixel_x = 13; + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/ship/science/robotics) +"AW" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"Bh" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/science/robotics) +"Bm" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Bw" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating/airless, +/area/ship/engineering) +"BA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/hallway/central) +"BE" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/AIcore, +/obj/item/circuitboard/aicore, +/obj/item/stack/sheet/rglass, +/obj/item/stack/sheet/rglass, +/obj/item/stack/sheet/rglass, +/obj/item/stack/sheet/rglass, +/obj/item/stack/sheet/rglass, +/obj/machinery/door/window/brigdoor/westleft{ + dir = 4; + name = "AI Core Access" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"BH" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/east, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "BI" = ( /obj/machinery/atmospherics/components/unary/tank/toxins{ dir = 1 @@ -2497,65 +2071,78 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"BO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/machinery/camera{ - dir = 8 - }, +"BY" = ( +/obj/item/phone, /obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 4 - }, -/obj/item/flashlight{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/head/welding{ - pixel_x = -2; - pixel_y = 1 +/obj/item/borg/upgrade/ai, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/port) +"Cg" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/weather, +/obj/machinery/light/small/directional/east, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"Cz" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 }, -/obj/machinery/light/small/built{ - dir = 4 +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/industrial/warning{ + dir = 9 }, /turf/open/floor/plating, /area/ship/engineering) -"BT" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +"CP" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/toilet{ + pixel_y = 8 }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/mirror{ + pixel_x = 25 }, -/obj/machinery/cryopod{ - dir = 8 +/obj/structure/sink{ + dir = 8; + pixel_x = 12 }, -/turf/open/floor/plasteel/white, -/area/ship/crew) -"CF" = ( +/turf/open/floor/plasteel/freezer, +/area/ship/hallway/port) +"Dq" = ( /obj/machinery/door/poddoor{ - id = "whiteship_windows" + dir = 4; + id = "whiteship_bridge" }, -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/ship/bridge) +"DS" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "cargobaydoors"; + name = "Cargo Bay Door" }, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "0-8" }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ - dir = 4 +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "delta_mechbay"; + locked = 1 }, -/turf/open/floor/plating/airless, -/area/ship/engineering) -"DG" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel/white, +/turf/open/floor/plasteel/tech, /area/ship/science/robotics) +"DU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/port) "DZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -2565,6 +2152,15 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) +"Eh" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/machinery/light/small/built/directional/west, +/turf/open/floor/plating, +/area/ship/engineering) "Fg" = ( /obj/machinery/door/window/westright{ name = "Processor Access Door" @@ -2591,6 +2187,21 @@ "Gw" = ( /turf/closed/wall/mineral/titanium, /area/ship/science/robotics) +"GM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/hallway/port) "Hi" = ( /obj/structure/ore_box, /obj/effect/turf_decal/industrial/outline/yellow, @@ -2610,6 +2221,15 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) +"ID" = ( +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/machinery/modular_computer/console/preset/command, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "IM" = ( /obj/structure/window/reinforced{ dir = 8 @@ -2624,6 +2244,10 @@ /obj/structure/cable{ icon_state = "0-8" }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" + }, /turf/open/floor/plating, /area/ship/engineering) "Je" = ( @@ -2637,6 +2261,47 @@ }, /turf/open/floor/plating, /area/ship/cargo) +"Jj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/port) +"Jo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/camera{ + dir = 10 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/small/built/directional/south, +/obj/machinery/computer/rdconsole/robotics/retro{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ship/science/robotics) +"Jt" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/crew) "Jy" = ( /obj/machinery/shower{ pixel_y = 20 @@ -2652,16 +2317,6 @@ }, /turf/open/floor/plasteel, /area/ship/medical) -"KS" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) "KV" = ( /obj/machinery/recharge_station, /turf/open/floor/plasteel/dark, @@ -2692,6 +2347,32 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Lv" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/machinery/computer/cargo/express/retro{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Ly" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/railing/corner, +/obj/effect/turf_decal/corner/opaque/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plasteel, +/area/ship/cargo) "Mc" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor{ @@ -2699,45 +2380,47 @@ }, /turf/open/floor/plating, /area/ship/science/robotics) -"Mt" = ( -/obj/effect/turf_decal/corner/opaque/neutral, -/obj/effect/turf_decal/corner/opaque/neutral{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/mmi, -/obj/item/mmi{ - pixel_y = 7 - }, -/obj/machinery/light/small{ +"MS" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/industrial/warning/corner, +/obj/machinery/mech_bay_recharge_port{ dir = 8 }, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) +"Nd" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/closet/crate, +/obj/effect/turf_decal/industrial/outline/yellow, +/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/item/reagent_containers/food/snacks/canned/beans, +/obj/item/reagent_containers/food/snacks/canned/beans, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"Ni" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/item/folder/white, -/turf/open/floor/plasteel, -/area/ship/medical) -"ME" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Robotics" }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"MN" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/ship/science/robotics) "Nm" = ( /obj/effect/turf_decal/floordetail/edgedrain, @@ -2750,20 +2433,30 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/port) -"Np" = ( -/obj/structure/railing/corner{ - dir = 8 +"NF" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/science/robotics) -"Nx" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 4 }, -/turf/open/floor/plasteel/white, -/area/ship/science/robotics) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/port) +"NL" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -9 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/engineering) "Pd" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor{ @@ -2772,6 +2465,18 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plating, /area/ship/medical) +"Pt" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/ntspaceworks_small/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/science/robotics) "Qx" = ( /obj/structure/window/reinforced{ dir = 8 @@ -2789,17 +2494,76 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"QH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/camera{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ship/engineering) -"QC" = ( -/obj/machinery/cryopod{ +"QR" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 1; + id = "delta_mechbay"; + locked = 1 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "cargobaydoors"; + name = "Cargo Bay Door" + }, +/turf/open/floor/plasteel/tech, +/area/ship/science/robotics) +"Rq" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"SE" = ( +/obj/effect/turf_decal/corner/opaque/blue, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/machinery/computer/helm/retro{ dir = 8 }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"SF" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/white, -/area/ship/crew) +/area/ship/science/robotics) "SN" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/crew) +"SW" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/advanced_airlock_controller{ + pixel_y = -20 + }, +/turf/open/floor/plating, +/area/ship/hallway/port) "SY" = ( /obj/effect/turf_decal/weather, /obj/machinery/conveyor{ @@ -2813,14 +2577,18 @@ /obj/structure/plasticflaps/opaque, /turf/open/floor/plating, /area/ship/cargo) +"Td" = ( +/obj/effect/turf_decal/corner/opaque/neutral, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/ship/medical) "Te" = ( /obj/machinery/rnd/production/protolathe/department/science, /turf/open/floor/plasteel/white, /area/ship/science/robotics) -"Tt" = ( -/obj/structure/railing/corner, -/turf/open/floor/plasteel/white, -/area/ship/science/robotics) "TD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2833,45 +2601,134 @@ /obj/structure/chair, /turf/open/floor/plating, /area/ship/hallway/central) +"TK" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "cargobaydoors"; + name = "Cargo Bay Door" + }, +/turf/open/floor/plasteel/tech, +/area/ship/science/robotics) +"TO" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/ship/engineering) "Us" = ( /turf/open/floor/plasteel/white, /area/ship/science/robotics) -"UW" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 +"Vt" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/structure/curtain/bounty, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 10 +/obj/effect/turf_decal/number/four{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plating/airless, +/area/ship/external) +"VU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/bag/trash{ + pixel_x = 6 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) "VW" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"XC" = ( +"Wf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/camera, +/obj/machinery/light/small/directional/north, +/obj/structure/railing{ + dir = 4 + }, /obj/structure/table, -/obj/effect/turf_decal/corner/opaque/bar{ +/obj/item/mmi/posibrain{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/mmi/posibrain{ + pixel_x = 5 + }, +/obj/item/survey_handheld{ + pixel_x = -6 + }, +/turf/open/floor/plasteel/white, +/area/ship/science/robotics) +"WX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/bar, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/light/small/directional/east, +/obj/machinery/cryopod{ + dir = 8 }, -/obj/item/trash/plate{ - pixel_x = -6; - pixel_y = 2 +/turf/open/floor/plasteel/white, +/area/ship/crew) +"Xp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "engine fuel pump" }, -/obj/item/kitchen/fork{ - pixel_x = 5 +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Xv" = ( +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 4 }, +/obj/effect/turf_decal/corner/opaque/lime, +/obj/structure/closet/wall{ + dir = 4; + name = "Radio Storage"; + pixel_x = -28 + }, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/machinery/computer/cryopod/retro/directional/south, /turf/open/floor/plasteel, /area/ship/crew) +"Xy" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) +"XR" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/number/nine{ + dir = 4 + }, +/obj/docking_port/mobile{ + dir = 8; + launch_status = 0; + name = "NT Frigate"; + preferred_direction = 4 + }, +/turf/open/floor/plating/airless, +/area/ship/external) "XZ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -2883,20 +2740,47 @@ /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "whiteship_windows" + }, /turf/open/floor/plating, /area/ship/engineering) -"Yd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +"Yi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/camera{ +/obj/effect/turf_decal/corner/opaque/blue/bordercorner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/port) +"Yw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, +/obj/structure/catwalk/over/plated_catwalk/white, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plating, -/area/ship/engineering) +/area/ship/science/robotics) "Zi" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2921,8 +2805,18 @@ /area/ship/hallway/port) "Zl" = ( /obj/machinery/vending/boozeomat/all_access, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"Zn" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1; + piping_layer = 2 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/light/small/built/directional/south, +/turf/open/floor/plating, +/area/ship/engineering) "ZY" = ( /obj/machinery/porta_turret/centcom_shuttle/weak{ dir = 4 @@ -2935,14 +2829,15 @@ aa aa aa aa +aa ah -aM -ay +Bw +em ah aa ah -ay -CF +em +TO ah aa aa @@ -2951,6 +2846,7 @@ aa "} (2,1,1) = {" aa +aa ah ai ai @@ -2970,25 +2866,27 @@ aa "} (3,1,1) = {" aa +aa ai -az +Eh rW -hW +Cz by bP -bV -cc -ck +Zn +ai +Xy cs cB -wg -lv +fC +Xp BI ai aa "} (4,1,1) = {" aa +aa ai aA aN @@ -2996,7 +2894,7 @@ bk bz bQ cU -ai +NL cl dS cC @@ -3008,29 +2906,31 @@ aa "} (5,1,1) = {" aa +aa ai -aB +VU dd jt -bA +tr cz cD dF -dN -dU -xO +jD +jw +nY cO Ic -dB +xF ai aa "} (6,1,1) = {" aa +aa ai aC sp -Yd +QH bW bB bB @@ -3038,37 +2938,39 @@ bB bB bB ai -BO +gQ sp sv ai aa "} (7,1,1) = {" +aa ZY ai ai -df +AW cP bB -UW -bX -cf -vo -Bz +ez +mZ +BE +BH +zT bB cP -df +AW ai ai ZY "} (8,1,1) = {" +aa ae al Nm aR -bo +Jj bD cu bY @@ -3076,74 +2978,78 @@ cg co cu Ln -cQ +vF dg dE -dT +Xv SN "} (9,1,1) = {" +aa ae ae ae -aS -br +eZ +DU ce -bq +ID bZ ch cp -bT +ff ce -gN +qC dh -BT -QC +WX +Jt SN "} (10,1,1) = {" +aa ae Jy ae -aT +NF ae bB -eb -bC +bB +Lv dI -dO -eb +SE +bB bB SN -dj +sF SN SN SN "} (11,1,1) = {" +aa ae -aD +CP op -oo +qt ae bF -eb -eb -eb -eb -wH +Dq +Dq +Dq +Dq +lp VW SN -dk -dH -di +Aw +mw +oI SN "} (12,1,1) = {" +aa ae ae ae -aU +Yi aP cv cv @@ -3159,17 +3065,18 @@ dQ Lb "} (13,1,1) = {" +aa am -aE +BY ae Zi bw bH -cE +BA TD -dJ +fy cF -iM +hR xe cR dm @@ -3178,29 +3085,31 @@ dR SN "} (14,1,1) = {" +aa ae -an +zJ aG -aJ +oq ae cm ev -dD +Bm ev -dD +Bm ev Zl SN dq -XC +gL hi Go "} (15,1,1) = {" +aa am aF ae -aX +xz ae ev cG @@ -3210,16 +3119,17 @@ aa cG ev vm -dn +pU mt vm vm "} (16,1,1) = {" +aa ae ae ae -aY +kn DZ ae aa @@ -3230,11 +3140,12 @@ aa vm nf do -Mt -ec +lc +fU vm "} (17,1,1) = {" +aa af ap aO @@ -3254,11 +3165,12 @@ uT nq "} (18,1,1) = {" +gv rC -aj +SW ae -aW -bE +GM +ww ae aa aa @@ -3266,17 +3178,18 @@ aa aa aa vm -cW +oN dr -gX -xk +Td +tf vm "} (19,1,1) = {" +aa ab ab ab -ba +yy ab ab ax @@ -3286,31 +3199,33 @@ aa Gw HJ HJ -dt +Ni HJ dV HJ "} (20,1,1) = {" +aa ab -aq -aH +qY +Ly bb -bI -bJ +ps +Rq ab aa aa aa HJ -cJ -cY +AM +ya ds -dL -ea +SF +lx HJ "} (21,1,1) = {" +aa cS ar aI @@ -3330,25 +3245,27 @@ Te Mc "} (22,1,1) = {" +aa ab aw -ad -be +jk +rs de -ak +Nd ab aa aa aa HJ -DG -Tt -dC +Bh +Us +Yw Us -Nx +rl HJ "} (23,1,1) = {" +aa ab au ab @@ -3360,14 +3277,15 @@ aa aa aa HJ -cK +Wf db dv dM -hh +Jo HJ "} (24,1,1) = {" +aa ab bN aV @@ -3379,14 +3297,15 @@ aa aa aa HJ -dZ -Np -dw +xL +xA +dx xA KV HJ "} (25,1,1) = {" +aa ab ab bx @@ -3406,29 +3325,31 @@ Hi Mc "} (26,1,1) = {" +aa ab -at +vG bO bi bO -ao +Cg cX aa aa aa HJ -vf -MN -ME -pb -KS +MS +ur +oz +Pt +xD HJ "} (27,1,1) = {" +aa ZY ab aK -aL +qe bd ab ZY @@ -3437,14 +3358,15 @@ aa aa ZY HJ -uC -AG -gc +DS +TK +QR HJ ZY "} (28,1,1) = {" aa +aa ax ab ab @@ -3456,9 +3378,9 @@ aa aa aa Gw -xW -xW -xW +tU +XR +Vt Gw aa "} diff --git a/_maps/shuttles/shiptest/nanotrasen_gecko.dmm b/_maps/shuttles/shiptest/nanotrasen_gecko.dmm index 40dce2e31406..37668fa5e4b3 100644 --- a/_maps/shuttles/shiptest/nanotrasen_gecko.dmm +++ b/_maps/shuttles/shiptest/nanotrasen_gecko.dmm @@ -28,6 +28,30 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) +"ah" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = 32 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"an" = ( +/turf/open/floor/plating/airless, +/area/ship/external) +"aq" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "az" = ( /obj/docking_port/mobile{ can_move_docking_ports = 1; @@ -42,13 +66,6 @@ }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/maintenance/port) -"aB" = ( -/obj/machinery/computer/rdconsole{ - dir = 8; - icon_state = "computer-right" - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "aD" = ( /obj/structure/cable{ icon_state = "2-8" @@ -60,6 +77,21 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/ship/maintenance/fore) +"aK" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden, +/obj/machinery/atmospherics/pipe/manifold/purple/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "aM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/binary/valve/digital{ @@ -70,19 +102,6 @@ "aS" = ( /turf/closed/wall, /area/ship/engineering/communications) -"aY" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/aft) "bb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -133,49 +152,53 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/communications) -"bp" = ( -/obj/machinery/power/apc/auto_name/south, +"bs" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-8" }, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/cargo/starboard) -"bq" = ( +/area/ship/bridge) +"bw" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) +"bB" = ( /obj/machinery/door/poddoor/shutters{ - id = "gecko_port" + id = "gecko_starboard" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 8; + id = "gecko_starboard_field" + }, /obj/effect/turf_decal/industrial/warning/fulltile, /turf/open/floor/plasteel/tech/grid, -/area/ship/cargo/port) -"bA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 24 - }, +/area/ship/cargo/starboard) +"bH" = ( +/turf/closed/wall, +/area/ship/maintenance/port) +"bK" = ( +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/suit/space/hardsuit/mining, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, /obj/effect/turf_decal/techfloor{ - dir = 5 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew) -"bC" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 }, -/turf/open/floor/plasteel/tech/techmaint, +/turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"bH" = ( -/turf/closed/wall, -/area/ship/maintenance/port) "bL" = ( /obj/structure/table/reinforced, /obj/structure/sign/poster/retro/random{ @@ -208,34 +231,11 @@ "bU" = ( /turf/closed/wall, /area/ship/bridge) -"cb" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) -"ce" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"cf" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/ship/engineering/engine) +"bV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/external) "ch" = ( /obj/structure/cable{ icon_state = "4-8" @@ -243,14 +243,11 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/ship/maintenance/fore) -"cq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning, +"cj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull, -/area/ship/external) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) "cr" = ( /obj/structure/cable{ icon_state = "1-2" @@ -259,44 +256,88 @@ dir = 1 }, /area/ship/maintenance/starboard) -"cy" = ( -/obj/machinery/atmospherics/components/binary/pump{ +"cv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/igniter/incinerator_atmos, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/airless, +/area/ship/engineering/engine) +"cx" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced/spawner{ + dir = 8 + }, +/obj/machinery/door/window/eastright{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ dir = 4; - name = "Waste to Environment"; - piping_layer = 5 + id = "gecko_thrusters" }, -/obj/structure/railing, /turf/open/floor/plating, +/area/ship/maintenance/starboard) +"cE" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/directional/west, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/obj/item/folder/blue, +/obj/item/megaphone, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"cG" = ( +/obj/machinery/computer/atmos_alert{ + icon_state = "computer-right" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"cK" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 8 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/engine, /area/ship/engineering/engine) +"cL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "cP" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) -"cW" = ( -/obj/structure/cable{ - icon_state = "2-4" +"cX" = ( +/obj/machinery/door/airlock/mining{ + name = "Starboard Cargo Bay" }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/machinery/door/poddoor/preopen{ + id = "gecko_starboard_int" }, +/obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"cY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/turf/open/floor/plating, -/area/ship/maintenance/fore) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo/starboard) "dd" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/industrial/outline/yellow, @@ -306,21 +347,6 @@ /obj/effect/turf_decal/industrial/loading, /turf/open/floor/plasteel/patterned, /area/ship/cargo/port) -"dg" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/effect/turf_decal/borderfloor, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"dj" = ( -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) "dk" = ( /turf/open/floor/plating, /area/ship/maintenance/starboard) @@ -356,20 +382,14 @@ /obj/item/clothing/glasses/meson, /turf/open/floor/plasteel/patterned/grid, /area/ship/cargo/port) -"dB" = ( -/obj/machinery/button/door{ - id = "gecko_bridge"; - name = "Window Shutters"; - pixel_x = 6; - pixel_y = 24; - sync_doors = 0 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 1 +"dC" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gecko_port" }, -/obj/machinery/modular_computer/console/preset/id, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo/port) "dG" = ( /obj/machinery/atmospherics/components/binary/valve/digital{ dir = 4 @@ -377,65 +397,45 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/engineering/engine) -"dI" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 +"dN" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/bag/trash, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/pushbroom, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"dX" = ( +/obj/machinery/door/airlock{ + name = "Crew Quarters" }, -/obj/effect/spawner/lootdrop/salvage_50, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/port) -"dK" = ( -/obj/machinery/light{ +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, -/obj/structure/closet/secure_closet{ - anchored = 1; - icon_state = "ce"; - name = "operations chief's locker"; - req_access_txt = "56" +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/item/pipe_dispenser, -/obj/item/construction/rcd, -/obj/item/gun/energy/laser, -/obj/item/clothing/under/rank/engineering/chief_engineer, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/glasses/meson/engine, -/obj/item/tank/internals/emergency_oxygen/engi, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) -"dN" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/bag/trash, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/pushbroom, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"dR" = ( -/obj/machinery/power/smes/shuttle/precharged{ +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew) +"dZ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/ntspaceworks_big/one{ dir = 4 }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner{ - dir = 8 - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" - }, -/obj/machinery/door/poddoor{ - id = "gecko_thrusters" - }, /turf/open/floor/plating, -/area/ship/maintenance/port) +/area/ship/engineering/engine) +"ef" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel, +/area/ship/cargo/starboard) "ej" = ( /obj/effect/spawner/lootdrop/salvage_50, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/borderfloor, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/aft) "ek" = ( @@ -466,15 +466,20 @@ /obj/item/clothing/head/welding, /turf/open/floor/plating, /area/ship/engineering/engine) -"eo" = ( -/obj/structure/cable{ - icon_state = "4-8" +"et" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/fore) +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "eu" = ( /obj/structure/cable{ icon_state = "2-8" @@ -519,6 +524,32 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plastic, /area/ship/crew/toilet) +"eE" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) +"eG" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/hallway/central) +"eI" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull, +/area/ship/external) "eQ" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/effect/decal/cleanable/dirt, @@ -530,30 +561,61 @@ /obj/structure/sign/nanotrasen, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/bridge) -"fF" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 +"fh" = ( +/obj/machinery/door/airlock{ + name = "Restrooms" }, -/obj/effect/turf_decal/siding/white{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/toilet) +"fj" = ( +/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/purple/hidden/layer1{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/grid, +/obj/effect/turf_decal/ntspaceworks_big/three{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"fn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, /area/ship/hallway/aft) -"fG" = ( +"fv" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"fD" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/effect/turf_decal/arrows, +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, /turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) +/area/ship/cargo/starboard) "fK" = ( /obj/structure/cable{ icon_state = "1-2" @@ -561,9 +623,31 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/stairs, /area/ship/maintenance/port) +"fP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/borderfloor, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "fS" = ( /turf/closed/wall, /area/ship/engineering/atmospherics) +"fZ" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics" + }, +/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/techmaint, +/area/ship/engineering/atmospherics) "ga" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -573,47 +657,60 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"gc" = ( -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/suit/space/hardsuit/engine, +"ge" = ( +/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ + dir = 9 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/techfloor{ +/obj/effect/turf_decal/ntspaceworks_big/two{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"gf" = ( +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) -"gq" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"gg" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, +/obj/effect/turf_decal/arrows, /obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner{ - dir = 8 - }, -/obj/machinery/door/window/eastleft{ - name = "Engine Access" + icon_state = "4-8" }, -/obj/machinery/door/poddoor{ - id = "gecko_thrusters" +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"gh" = ( +/obj/effect/spawner/lootdrop/salvage_50, +/obj/structure/cable{ + icon_state = "1-2" }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) +"gr" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/maintenance/starboard) -"gs" = ( -/obj/effect/turf_decal/borderfloor, -/obj/machinery/status_display/shuttle{ - pixel_y = -32 +/area/ship/maintenance/fore) +"gw" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 }, -/obj/structure/chair/comfy/shuttle{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) "gB" = ( /obj/structure/sign/warning/nosmoking, /turf/closed/wall, @@ -630,6 +727,40 @@ dir = 4 }, /area/ship/maintenance/fore) +"gF" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"gN" = ( +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/suit/space/hardsuit/engine, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"gP" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull, +/area/ship/external) "gQ" = ( /obj/structure/cable{ icon_state = "2-4" @@ -645,19 +776,6 @@ "gS" = ( /turf/closed/wall/mineral/titanium, /area/ship/bridge) -"gV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -5 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/cargo/port) "hb" = ( /obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ dir = 10 @@ -665,26 +783,9 @@ /obj/machinery/atmospherics/components/binary/pump, /turf/open/floor/plating, /area/ship/engineering/engine) -"hq" = ( -/obj/structure/closet/secure_closet{ - anchored = 1; - icon_state = "eng_secure"; - name = "engine technician's locker"; - req_access = list(11) - }, -/obj/item/storage/belt/utility/full/engi, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/under/rank/engineering/engineer/nt, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/glasses/meson/engine/tray, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plating, +"hn" = ( +/obj/effect/decal/fakelattice, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/engine) "hs" = ( /obj/machinery/atmospherics/components/binary/valve/digital{ @@ -692,49 +793,9 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"ht" = ( -/obj/machinery/door/airlock/command{ - name = "Bridge" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/bridge) "hu" = ( /turf/template_noop, /area/template_noop) -"hv" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) -"hx" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "hy" = ( /obj/structure/window/reinforced{ dir = 4 @@ -744,43 +805,20 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/crew) -"hI" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) -"hP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-9" - }, -/turf/open/floor/plasteel/stairs{ - dir = 4 - }, -/area/ship/storage) -"hR" = ( -/obj/machinery/door/airlock/maintenance_hatch, +"hA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_50, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"hL" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 + icon_state = "2-8" }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/maintenance/starboard) +/area/ship/maintenance/port) "hT" = ( /obj/effect/decal/fakelattice, /obj/machinery/power/smes/engineering, @@ -802,10 +840,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"hU" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/engine) "hX" = ( /obj/machinery/atmospherics/components/trinary/mixer{ dir = 8; @@ -813,13 +847,28 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"id" = ( -/obj/machinery/power/apc/auto_name/south, +"if" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "1-8" }, -/turf/open/floor/plating, -/area/ship/engineering/communications) +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"ih" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) "in" = ( /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5, /obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1, @@ -834,35 +883,25 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"iw" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"ix" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 +"iH" = ( +/obj/machinery/air_sensor/atmos/incinerator_tank{ + id_tag = "gecko_burn_sensor" }, -/obj/machinery/igniter/incinerator_atmos, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/airless, -/area/ship/engineering/engine) -"iA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/poddoor{ - id = "gecko_thrusters" +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 4; + filter_types = list("n2","co2","bz","water_vapor","miasma","freon","pluox","tritium","n20","no2","nob"); + id_tag = "incinerator_out" }, -/turf/open/floor/plating, +/turf/open/floor/engine/airless, /area/ship/engineering/engine) +"iJ" = ( +/obj/effect/spawner/lootdrop/salvage_50, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) "iK" = ( /obj/structure/cable{ icon_state = "4-8" @@ -870,16 +909,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"iN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/borderfloor{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/aft) "iQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -898,52 +927,55 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/port) -"iX" = ( -/obj/machinery/door/airlock/maintenance_hatch, +"iZ" = ( +/obj/item/radio/intercom/wideband/directional/south, +/obj/structure/table/reinforced, +/obj/item/areaeditor/shuttle, +/obj/item/megaphone/command, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"jc" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"jd" = ( /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/techmaint, -/area/ship/maintenance/fore) -"ja" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gecko_port" + icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo/port) -"jb" = ( -/obj/machinery/atmospherics/pipe/manifold/dark/hidden/layer5{ +/turf/open/floor/plating, +/area/ship/engineering/engine) +"jn" = ( +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "0-8" }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/structure/window/plasma/reinforced/spawner{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 +/obj/machinery/door/window/eastright{ + name = "Engine Access" }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"jd" = ( -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/door/poddoor{ + dir = 4; + id = "gecko_thrusters" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/ship/engineering/engine) +/area/ship/maintenance/port) +"jp" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "jt" = ( /obj/effect/spawner/structure/window/shutters, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -976,31 +1008,10 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"jM" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/machinery/advanced_airlock_controller{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "jO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/catwalk/over, -/obj/structure/marker_beacon, -/turf/open/floor/plating, -/area/ship/external) +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) "jQ" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ dir = 4 @@ -1008,36 +1019,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull/reinforced, /area/ship/external) -"kc" = ( +"jV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/chair/comfy/shuttle{ - dir = 1 +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -5 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/turf/open/floor/plasteel/patterned/grid, +/area/ship/cargo/port) +"kq" = ( +/obj/structure/sign/warning/vacuum{ + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/turf/closed/wall, +/area/ship/cargo/port) +"kr" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) -"ks" = ( +/obj/effect/turf_decal/arrows, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"ks" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/ship/engineering/engine) -"kt" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo/port) "ku" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -1054,49 +1074,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/communications) -"kx" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigpack_cannabis{ - pixel_y = 7 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24; - pixel_y = -6 - }, -/obj/structure/railing, -/obj/machinery/button/door{ - dir = 8; - id = "gecko_engine_vent"; - name = "Combustion Chamber Blast Door Control"; - pixel_x = 24; - pixel_y = 6; - sync_doors = 0 - }, -/obj/item/storage/box/matches{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/lighter/greyscale{ - pixel_x = 8; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"kA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) "kC" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 5 @@ -1108,11 +1085,13 @@ /obj/effect/landmark/start/station_engineer, /turf/open/floor/plating, /area/ship/engineering/engine) -"kP" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/spawner/lootdrop/salvage_50, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) +"kM" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/engineering/communications) "kS" = ( /obj/machinery/rnd/production/protolathe/department/engineering, /obj/effect/decal/cleanable/dirt/dust, @@ -1152,96 +1131,99 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"la" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 32 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) "lb" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, /obj/structure/curtain/bounty, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"le" = ( -/obj/machinery/light, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/status_display/shuttle{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, +"lE" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/spawner/lootdrop/salvage_50, +/turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo/starboard) -"lj" = ( -/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ +"lM" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/ore_box, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) +"lS" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ dir = 8 }, -/obj/machinery/atmospherics/components/binary/valve/digital/layer2{ - dir = 8; - name = "Engine Fuel Input 1"; - piping_layer = 1 +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"lT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"lu" = ( -/obj/machinery/power/apc/auto_name/north, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) +"lU" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/maintenance/starboard) -"ly" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor{ - id = "gecko_bridge" - }, +/area/ship/crew) +"lW" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/table, +/obj/machinery/cell_charger, /turf/open/floor/plating, -/area/ship/bridge) -"mi" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25; - pixel_y = -5 - }, -/obj/structure/bed, -/obj/structure/curtain/bounty, -/obj/item/bedsheet/captain, -/obj/effect/turf_decal/borderfloor{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"mw" = ( -/obj/machinery/light{ - dir = 1 +/area/ship/engineering/engine) +"lY" = ( +/obj/docking_port/stationary{ + dwidth = 10; + width = 20; + height = 15 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/turf/template_noop, +/area/template_noop) +"lZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/effect/turf_decal/borderfloor{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, /turf/open/floor/plasteel, -/area/ship/hallway/fore) -"mx" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/turf_decal/arrows, +/area/ship/cargo/port) +"mb" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/spawner/lootdrop/salvage_50, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) +"mm" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gecko_port" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo/port) +"ms" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "4-8" }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "mC" = ( /obj/structure/curtain, /obj/structure/window/reinforced/tinted/frosted{ @@ -1253,14 +1235,60 @@ /obj/effect/turf_decal/corner_techfloor_grid, /turf/open/floor/plastic, /area/ship/crew/toilet) +"mL" = ( +/obj/structure/closet/emcloset, +/obj/item/tank/internals/plasmaman/full, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/structure/sign/warning/gasmask{ + pixel_x = 32 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"mM" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "mN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/borderfloor, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/aft) +"mS" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"mX" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) "nc" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -1272,15 +1300,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold/visible, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"nk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) "nm" = ( /obj/machinery/atmospherics/components/unary/tank/oxygen{ dir = 1 @@ -1289,61 +1308,32 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"no" = ( -/obj/effect/turf_decal/box/corners, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/port) -"nr" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ +"nq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/layer2{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) -"nC" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/arrows{ - dir = 1 +"nH" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Waste to Environment"; + piping_layer = 5 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) -"nE" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo/starboard) -"nP" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"nP" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) -"od" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +"oi" = ( +/obj/effect/turf_decal/box/corners, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo/port) "oj" = ( @@ -1358,28 +1348,6 @@ "on" = ( /turf/open/floor/plating, /area/ship/engineering/engine) -"oo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/rnd/production/circuit_imprinter, -/turf/open/floor/plasteel/patterned, -/area/ship/storage) -"or" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gecko_port" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 8; - id = "gecko_port_field" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo/port) "os" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -1392,6 +1360,25 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) +"ov" = ( +/obj/effect/decal/cleanable/dirt/dust, +/mob/living/simple_animal/hostile/mining_drone{ + desc = "A minebot with the name \"Molly\" painted on the side in careful cursive writing. She may be cute, but she still constantly gets in the way."; + name = "\improper Mo11-E" + }, +/obj/effect/turf_decal/borderfloor, +/turf/open/floor/plasteel, +/area/ship/hallway/aft) +"oy" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) "oJ" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1401,14 +1388,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) -"oK" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/crew) "oM" = ( /obj/machinery/light_switch{ dir = 1; @@ -1433,27 +1412,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull, /area/ship/external) -"pc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +"oT" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/turf_decal/siding/white{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"oW" = ( +/obj/effect/turf_decal/box/corners{ dir = 4 }, -/obj/effect/turf_decal/siding/white{ +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/aft) +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) +"oZ" = ( +/obj/machinery/autolathe, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/storage) "pe" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo/port) +"ph" = ( +/obj/machinery/computer/communications{ + dir = 8; + icon_state = "computer-left" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "pr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -1461,13 +1458,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plastic, /area/ship/crew/toilet) -"pw" = ( -/obj/machinery/computer/helm{ - dir = 8; - icon_state = "computer-middle" +"pu" = ( +/obj/machinery/vending/coffee, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/borderfloor{ + dir = 1 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "pD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -1488,14 +1486,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"pI" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible/layer5{ - dir = 5 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) "pK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -1520,14 +1510,32 @@ /obj/structure/chair/stool, /turf/open/floor/plating, /area/ship/engineering/engine) -"pY" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +"pW" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + icon_state = "eng_secure"; + name = "engine technician's locker"; + req_access = list(11) }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plastic, -/area/ship/crew/toilet) +/obj/item/storage/belt/utility/full/engi, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/under/rank/engineering/engineer/nt, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/glasses/meson/engine/tray, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"pX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "qb" = ( /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 @@ -1546,14 +1554,13 @@ }, /turf/open/floor/plating, /area/ship/hallway/fore) -"ql" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, +"qc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) -"qo" = ( -/obj/machinery/power/apc/auto_name/west, +/area/ship/storage) +"qn" = ( +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -1561,23 +1568,103 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) +"qp" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "qu" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) -"qw" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) -"qD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/salvage_50, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) +"qv" = ( +/obj/effect/turf_decal/borderfloor, +/obj/machinery/status_display/shuttle{ + pixel_y = -32 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"qB" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"qK" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_cannabis{ + pixel_y = 7 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/railing, +/obj/machinery/button/door{ + dir = 8; + id = "gecko_engine_vent"; + name = "Combustion Chamber Blast Door Control"; + pixel_x = 24; + pixel_y = 6; + sync_doors = 0 + }, +/obj/item/storage/box/matches{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/lighter/greyscale{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"qL" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/secure_closet{ + anchored = 1; + icon_state = "ce"; + name = "operations chief's locker"; + req_access_txt = "56" + }, +/obj/item/pipe_dispenser, +/obj/item/construction/rcd, +/obj/item/gun/energy/laser, +/obj/item/clothing/under/rank/engineering/chief_engineer, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/glasses/meson/engine, +/obj/item/tank/internals/emergency_oxygen/engi, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) "qO" = ( /turf/closed/wall/mineral/titanium, /area/ship/maintenance/fore) +"qT" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) "qY" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/effect/decal/cleanable/dirt/dust, @@ -1586,19 +1673,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"rb" = ( -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo/port) -"rc" = ( -/obj/effect/spawner/lootdrop/salvage_50, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) "rd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -1651,13 +1725,6 @@ /obj/item/storage/cans/sixbeer, /turf/open/floor/plasteel/grimy, /area/ship/crew) -"rr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/maintenance/port) "rs" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1675,37 +1742,10 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"rC" = ( -/obj/structure/closet/emcloset, -/obj/item/tank/internals/plasmaman/full, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/structure/sign/warning/gasmask{ - pixel_x = 32 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "rD" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/maintenance/fore) -"rE" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gecko_starboard" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo/starboard) "rF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/siding/white{ @@ -1719,40 +1759,66 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) -"rP" = ( -/obj/machinery/light{ +"rH" = ( +/obj/structure/chair/comfy/shuttle{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +/obj/machinery/advanced_airlock_controller{ + pixel_x = 32 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) -"sm" = ( -/obj/effect/spawner/lootdrop/salvage_50, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ +/obj/effect/turf_decal/techfloor{ dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/cargo/starboard) -"so" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"rM" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -5 }, -/obj/machinery/light/small{ +/obj/structure/bed, +/obj/structure/curtain/bounty, +/obj/item/bedsheet/captain, +/obj/effect/turf_decal/borderfloor{ dir = 1 }, -/obj/effect/turf_decal/siding/yellow{ +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"rU" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external/glass{ + name = "External Hull Access" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) +"sg" = ( +/obj/machinery/door/airlock/mining{ + frequency = 1331; + id_tag = "port_cargo_interior"; + name = "Port Cargo Bay" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/area/ship/cargo/port) +"sj" = ( +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) "ss" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1775,6 +1841,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ship/engineering/engine) +"sy" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gecko_port" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo/port) "sJ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/dark/visible/layer5{ @@ -1788,44 +1861,37 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"sM" = ( -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/suit/space/hardsuit/mining, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +"sL" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "gecko_engine_vent"; + name = "Combustion Chamber Vent" }, -/obj/effect/turf_decal/techfloor{ +/turf/open/floor/engine, +/area/ship/engineering/engine) +"sS" = ( +/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) -"sV" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 +/obj/machinery/atmospherics/components/binary/valve/digital/layer2{ + dir = 8; + name = "Engine Fuel Input 1"; + piping_layer = 1 }, -/obj/effect/spawner/lootdrop/salvage_50, -/turf/open/floor/plasteel, -/area/ship/cargo/starboard) -"sX" = ( -/obj/machinery/light{ - dir = 1 +/obj/effect/turf_decal/ntspaceworks_big/seven{ + dir = 4 }, -/obj/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/plating, +/area/ship/engineering/engine) +"sY" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) -"ta" = ( -/obj/effect/turf_decal/box/corners, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "td" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1836,67 +1902,57 @@ /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) -"tt" = ( -/obj/machinery/autolathe, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/patterned, -/area/ship/storage) -"tv" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"te" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + dir = 4; + id = "gecko_bridge" }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/maintenance/fore) +/turf/open/floor/plating, +/area/ship/bridge) "tB" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/maintenance/port) -"tF" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/engineering/engine) "tH" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, /turf/open/floor/plasteel/telecomms_floor, /area/ship/engineering/communications) -"tJ" = ( -/obj/machinery/computer/communications{ - dir = 8; - icon_state = "computer-left" +"tN" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"tM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/structure/chair/comfy/shuttle{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/obj/effect/turf_decal/borderfloor, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/ship/hallway/central) +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) +"tQ" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull, +/area/ship/external) +"tU" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) +"tV" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "ud" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/n2, /obj/machinery/atmospherics/pipe/simple/dark/visible/layer5{ @@ -1943,8 +1999,25 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"up" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gecko_port" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 8; + id = "gecko_port_field" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo/port) "uv" = ( -/obj/structure/sign/warning/vacuum, +/obj/structure/sign/warning/vacuum{ + pixel_y = 5 + }, /turf/closed/wall, /area/ship/cargo/starboard) "uz" = ( @@ -1953,6 +2026,14 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) +"uA" = ( +/obj/machinery/computer/helm/viewscreen/directional/north{ + pixel_y = 18 + }, +/obj/item/folder/documents, +/obj/structure/filingcabinet/double/grey, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) "uH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/siding/white{ @@ -1964,6 +2045,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) +"uP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "uW" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, @@ -1998,6 +2088,12 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/ship/maintenance/fore) +"vl" = ( +/obj/effect/turf_decal/number/five{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "vo" = ( /obj/structure/sign/warning, /turf/closed/wall, @@ -2005,11 +2101,15 @@ "vv" = ( /turf/closed/wall, /area/ship/crew/toilet) -"vx" = ( +"vy" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/catwalk/over, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/external) +/area/ship/cargo/starboard) "vz" = ( /obj/structure/sink{ dir = 4; @@ -2025,6 +2125,14 @@ }, /turf/open/floor/plastic, /area/ship/crew/toilet) +"vG" = ( +/obj/effect/spawner/lootdrop/salvage_50, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/ship/hallway/aft) "vJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -2035,6 +2143,9 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"vL" = ( +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) "vR" = ( /turf/closed/wall, /area/ship/hallway/central) @@ -2063,22 +2174,33 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/visible/layer2, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"vY" = ( -/obj/machinery/door/airlock/mining{ - frequency = 1331; - id_tag = "port_cargo_interior"; - name = "Port Cargo Bay" +"wh" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/start/assistant, +/obj/machinery/newscaster/directional/north{ + pixel_y = 32 }, -/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"ws" = ( +/obj/machinery/atmospherics/pipe/manifold/dark/hidden/layer5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo/port) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "wv" = ( /obj/structure/cable{ icon_state = "1-4" @@ -2087,14 +2209,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) -"wx" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/ore_box, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/port) "wy" = ( /obj/structure/cable{ icon_state = "0-4" @@ -2104,16 +2218,6 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/external) -"wA" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1, -/turf/open/floor/plating, -/area/ship/engineering/engine) "wB" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/maintenance/starboard) @@ -2130,38 +2234,23 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/communications) -"wL" = ( -/obj/machinery/door/airlock/external/glass{ - name = "External Hull Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/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/techmaint, -/area/ship/hallway/central) -"wM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/salvage_50, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) "wP" = ( /obj/effect/spawner/lootdrop/salvage_50, /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel, /area/ship/cargo/port) -"wT" = ( -/obj/item/radio/intercom{ - pixel_y = 24 +"wR" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) +"wV" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen/fountain/captain, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/engineering/engine) "wY" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ @@ -2169,10 +2258,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"wZ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ship/engineering/engine) "xd" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/dirt/dust, @@ -2189,43 +2274,37 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/external) +"xl" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "xm" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/cargo/starboard) -"xv" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 +"xr" = ( +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ship/cargo/port) +"xG" = ( +/obj/item/radio/intercom/directional/north, /obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) -"xD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, +/obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel, -/area/ship/cargo/starboard) -"xF" = ( -/obj/item/folder/documents, -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/double/grey, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) +/area/ship/cargo/port) "xJ" = ( /obj/effect/spawner/structure/window/shutters, /turf/open/floor/plating, @@ -2244,9 +2323,9 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"xR" = ( -/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ - dir = 10 +"yc" = ( +/obj/effect/turf_decal/ntspaceworks_big/five{ + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering/engine) @@ -2304,14 +2383,37 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"yq" = ( -/obj/machinery/washing_machine, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 +"yp" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plastic, -/area/ship/crew/toilet) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-9" + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/ship/storage) +"yw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/maintenance/fore) "yD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2329,35 +2431,25 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) -"yK" = ( -/obj/structure/chair/comfy/shuttle{ +"yM" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) -"yS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light/small, -/obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"yW" = ( -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/turf/open/floor/plastic, +/area/ship/crew/toilet) +"yQ" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/arrows{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) +/area/ship/cargo/starboard) "yX" = ( /obj/structure/sign/number/two{ dir = 1 @@ -2382,60 +2474,27 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"zs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Bay" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +"zn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ +/obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/storage) -"zu" = ( -/obj/machinery/light, -/obj/effect/turf_decal/borderfloor, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"zw" = ( -/obj/machinery/air_sensor/atmos/incinerator_tank{ - id_tag = "gecko_burn_sensor" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 4; - filter_types = list("n2","co2","bz","water_vapor","miasma","freon","pluox","tritium","n20","no2","nob"); - id_tag = "incinerator_out" +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/engine/airless, -/area/ship/engineering/engine) -"zy" = ( +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"zv" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/salvage_50, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/port) -"zC" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 8 +/obj/effect/turf_decal/ntspaceworks_big/six{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/maintenance/fore) +/area/ship/engineering/engine) "zE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -2465,17 +2524,36 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"zT" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +"zQ" = ( +/obj/docking_port/stationary{ + dwidth = 4; + width = 11; + height = 15; + dir = 2 + }, +/turf/template_noop, +/area/template_noop) +"zS" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gecko_port" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 4; + id = "gecko_port_field" + }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-2" }, -/turf/open/floor/plasteel/patterned, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/tech/grid, /area/ship/cargo/port) +"zW" = ( +/obj/structure/table, +/obj/item/soap/nanotrasen, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plastic, +/area/ship/crew/toilet) "zZ" = ( /obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1, /obj/structure/cable{ @@ -2486,30 +2564,33 @@ /obj/machinery/atmospherics/pipe/simple/green/hidden, /turf/open/floor/plating, /area/ship/engineering/engine) -"Ae" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/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/techmaint, -/area/ship/engineering/atmospherics) -"An" = ( -/obj/effect/turf_decal/industrial/warning, +"As" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) -"Au" = ( -/turf/closed/wall, -/area/ship/maintenance/starboard) -"AB" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"Au" = ( +/turf/closed/wall, +/area/ship/maintenance/starboard) +"AA" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"AB" = ( +/obj/structure/cable{ + icon_state = "2-8" }, /obj/structure/cable{ icon_state = "2-4" @@ -2530,36 +2611,68 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"AU" = ( -/obj/effect/spawner/lootdrop/salvage_50, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/port) -"AY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +"AI" = ( +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/bridge) +"AM" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) +"AN" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/spawner/lootdrop/salvage_50, /turf/open/floor/plasteel, /area/ship/cargo/starboard) +"AW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk/over, +/obj/structure/marker_beacon, +/turf/open/floor/plating, +/area/ship/external) "Ba" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 4 }, /turf/open/floor/plasteel/tech/grid, /area/ship/crew) -"Bz" = ( -/obj/effect/spawner/lootdrop/salvage_50, -/obj/effect/turf_decal/borderfloor{ - dir = 1 +"Bi" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 4 }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/ship/hallway/aft) +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/ship/engineering/engine) "BB" = ( /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 @@ -2570,15 +2683,6 @@ /obj/structure/railing, /turf/open/floor/plating, /area/ship/engineering/engine) -"BC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible/layer2{ - dir = 10 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) "BF" = ( /obj/machinery/cryopod{ dir = 4 @@ -2588,83 +2692,47 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/crew) -"BG" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/bridge) -"BH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +"BM" = ( +/obj/effect/spawner/lootdrop/salvage_50, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 }, -/turf/open/floor/plasteel/patterned, +/turf/open/floor/plasteel, /area/ship/cargo/starboard) -"BL" = ( -/obj/machinery/door/airlock/mining{ - frequency = 1331; - id_tag = "port_cargo_interior"; - name = "Port Cargo Bay" - }, -/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/techmaint, -/area/ship/cargo/port) "BP" = ( /obj/effect/turf_decal/industrial/loading{ dir = 1 }, /turf/open/floor/plasteel/patterned, /area/ship/cargo/starboard) -"BT" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/hallway/central) "BU" = ( /obj/structure/sign/number/nine{ color = "#00000F" }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/maintenance/fore) -"BW" = ( -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"BV" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_50, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plasteel/patterned/cargo_one, +/turf/open/floor/plasteel/patterned, /area/ship/cargo/port) -"Cd" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gecko_starboard" +"Cc" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 8; - id = "gecko_starboard_field" +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/plasteel/tech/grid, +/turf/open/floor/plasteel/patterned, /area/ship/cargo/starboard) "Ce" = ( /obj/effect/turf_decal/industrial/fire{ @@ -2673,10 +2741,44 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull/reinforced, /area/ship/external) +"Ch" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible/layer5{ + dir = 5 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "Cj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ship/engineering/engine) +"Cn" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Fore Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/fore) "Ct" = ( /obj/effect/turf_decal/siding/white{ dir = 4 @@ -2701,6 +2803,20 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) +"CF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"CI" = ( +/obj/machinery/computer/helm{ + dir = 8; + icon_state = "computer-middle" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "CL" = ( /obj/machinery/atmospherics/components/unary/tank/oxygen{ dir = 8 @@ -2709,14 +2825,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/ship/maintenance/fore) -"CM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/storage) "CN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -2727,82 +2835,24 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"CS" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, +"CQ" = ( /obj/structure/cable{ icon_state = "1-4" }, /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) -"CU" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/maintenance/port) -"De" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"Dk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, /obj/structure/cable{ - icon_state = "1-8" + icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/trimline/transparent/white/filled/warning{ dir = 1 }, /turf/open/floor/plating, -/area/ship/maintenance/port) -"Dp" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden, -/obj/machinery/atmospherics/pipe/manifold/purple/hidden/layer1{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Ds" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Dv" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/railing, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"DG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) -"DK" = ( +/area/ship/maintenance/starboard) +"CT" = ( /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 }, @@ -2828,28 +2878,69 @@ }, /turf/open/floor/plating, /area/ship/hallway/aft) -"DR" = ( -/obj/effect/turf_decal/box/corners{ +"CU" = ( +/turf/closed/wall/mineral/titanium, +/area/ship/maintenance/port) +"Da" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/helm/viewscreen/directional/north{ + pixel_y = 18 + }, +/obj/effect/turf_decal/borderfloor{ dir = 1 }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"De" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Du" = ( +/obj/machinery/firealarm/directional/south, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"Dv" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/railing, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Dw" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 }, -/turf/open/floor/plasteel/patterned/cargo_one, +/turf/open/floor/plasteel, /area/ship/cargo/starboard) -"Ea" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/dark/hidden{ - dir = 4 +"DQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gecko_starboard" }, -/obj/machinery/door/poddoor{ - id = "gecko_thrusters" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 4; + id = "gecko_starboard_field" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo/starboard) +"DS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/ntspaceworks_big/eight{ + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering/engine) +"DT" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/borderfloor, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Eb" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 6 @@ -2875,146 +2966,56 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) -"Ew" = ( -/obj/structure/sign/number/three{ - color = "#00000F"; +"Eh" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/maintenance/fore) -"Ez" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo/port) -"EE" = ( -/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /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/siding/white, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"Ek" = ( /obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ - dir = 4 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/aft) -"EM" = ( -/obj/machinery/holopad/emergency/command, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/obj/effect/turf_decal/siding/yellow, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) +"En" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/communications) -"EO" = ( -/obj/structure/sign/number/four{ - color = "#00000F" +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"Ew" = ( +/obj/structure/sign/number/three{ + color = "#00000F"; + dir = 1 }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/maintenance/fore) -"EQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"EZ" = ( -/obj/structure/closet/secure_closet{ - icon_state = "cap"; - name = "\proper captain's locker"; - req_access_txt = "20" - }, -/obj/item/stock_parts/cell/gun, -/obj/item/gun/energy/laser, -/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/machinery/light{ - dir = 1 +"EA" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/effect/turf_decal/borderfloor{ +/obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Fq" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Fu" = ( -/obj/effect/turf_decal/industrial/fire{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/reinforced, -/area/ship/external) -"Fx" = ( -/obj/effect/decal/fakelattice, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/engine) -"Fy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) -"FE" = ( /obj/effect/turf_decal/borderfloor, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, /turf/open/floor/plasteel, -/area/ship/hallway/fore) -"FM" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 +/area/ship/hallway/central) +"EB" = ( +/obj/machinery/mineral/ore_redemption{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/salvage_50, -/turf/open/floor/plasteel/patterned/cargo_one, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/plasteel/tech/grid, /area/ship/cargo/port) -"FN" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, +"EE" = ( /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 }, @@ -3024,65 +3025,86 @@ /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/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/aft) +"EK" = ( +/obj/effect/turf_decal/box/corners{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) -"FQ" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) +"EM" = ( +/obj/machinery/holopad/emergency/command, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"FR" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) -"FT" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 +/turf/open/floor/plasteel/tech, +/area/ship/engineering/communications) +"EO" = ( +/obj/structure/sign/number/four{ + color = "#00000F" }, -/obj/effect/turf_decal/siding/white{ +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/maintenance/fore) +"EQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"FZ" = ( +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Fq" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ dir = 8 }, /turf/open/floor/plating, /area/ship/engineering/engine) -"Ga" = ( -/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ +"Fu" = ( +/obj/effect/turf_decal/industrial/fire{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/ship/external) +"FQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"FZ" = ( +/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ dir = 8 }, /turf/open/floor/plating, @@ -3108,51 +3130,49 @@ }, /turf/open/floor/plating, /area/ship/hallway/fore) -"Gi" = ( -/obj/machinery/computer/apc_control{ - icon_state = "computer-left" - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) -"Gp" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ +"Gj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull, -/area/ship/external) -"Gv" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) -"Gz" = ( +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"Gm" = ( +/obj/structure/closet/wardrobe, +/obj/machinery/light/small/directional/north, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/clothing/suit/jacket/letterman_nanotrasen, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"Gt" = ( +/obj/machinery/computer/helm/viewscreen/directional/south, /obj/structure/table/reinforced, /obj/machinery/button/door{ dir = 4; - id = "gecko_port"; + id = "gecko_starboard"; name = "External Shutter Control"; pixel_x = -6; pixel_y = 8; sync_doors = 0 }, -/obj/machinery/computer/helm/viewscreen{ - pixel_y = 32 - }, +/obj/effect/decal/cleanable/dirt, /obj/machinery/button/shieldwallgen{ dir = 4; - id = "gecko_port_field"; + id = "gecko_starboard_field"; pixel_x = -4; pixel_y = -2 }, /turf/open/floor/plasteel/patterned/grid, -/area/ship/cargo/port) +/area/ship/cargo/starboard) +"Gu" = ( +/obj/machinery/computer/rdconsole{ + dir = 8; + icon_state = "computer-right" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "GE" = ( /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 10 @@ -3179,6 +3199,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/engineering/engine) +"GN" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/cargo/starboard) "GQ" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/o2, /obj/structure/cable{ @@ -3186,20 +3215,16 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"GS" = ( -/obj/machinery/door/airlock/mining{ - name = "Starboard Cargo Bay" - }, -/obj/machinery/door/poddoor/preopen{ - id = "gecko_starboard_int" +"GR" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/effect/turf_decal/techfloor{ + dir = 5 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo/starboard) +/obj/machinery/computer/cryopod/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) "GT" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3211,6 +3236,25 @@ /obj/structure/sign/warning, /turf/closed/wall, /area/ship/maintenance/fore) +"GZ" = ( +/obj/machinery/door/airlock/mining{ + name = "Starboard Cargo Bay" + }, +/obj/machinery/door/poddoor/preopen{ + id = "gecko_starboard_int" + }, +/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/techmaint, +/area/ship/cargo/starboard) +"Ha" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/plasteel/patterned, +/area/ship/storage) "Hc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -3247,100 +3291,102 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"Hp" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 +"Hx" = ( +/obj/machinery/button/door{ + id = "gecko_bridge"; + name = "Window Shutters"; + pixel_x = 6; + pixel_y = 24; + sync_doors = 0 }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/turf_decal/borderfloor{ + dir = 1 }, -/obj/structure/window/plasma/reinforced/spawner{ - dir = 8 +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"HK" = ( +/obj/machinery/light/directional/north, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/effect/turf_decal/borderfloor{ + dir = 1 }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" +/turf/open/floor/plasteel, +/area/ship/hallway/aft) +"HN" = ( +/obj/effect/spawner/lootdrop/salvage_50, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) +"HT" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/door/poddoor{ - id = "gecko_thrusters" +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"Ht" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gecko_starboard" +"Ia" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 4; - id = "gecko_starboard_field" +/obj/machinery/status_display/shuttle{ + pixel_y = 32 }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo/starboard) -"HF" = ( -/obj/machinery/light/small{ - dir = 4 +/obj/effect/turf_decal/borderfloor{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"HI" = ( -/obj/machinery/light/small{ - dir = 8 +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Ig" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/secure_closet{ + icon_state = "cap"; + name = "\proper captain's locker"; + req_access_txt = "20" }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"HO" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 6 +/obj/item/stock_parts/cell/gun, +/obj/item/gun/energy/laser, +/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/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) -"HS" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 +/obj/item/clothing/glasses/sunglasses, +/obj/effect/turf_decal/borderfloor{ + dir = 1 }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Ij" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/port) -"Ia" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/obj/machinery/status_display/shuttle{ - pixel_y = 32 +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -5 }, -/obj/effect/turf_decal/borderfloor{ - dir = 1 +/turf/open/floor/plasteel/patterned/grid, +/area/ship/cargo/starboard) +"Im" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"Ii" = ( -/obj/machinery/computer/atmos_alert{ - icon_state = "computer-right" +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) -"Ik" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 +/obj/effect/turf_decal/siding/yellow{ + dir = 5 }, -/obj/effect/turf_decal/borderfloor, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/aft) "In" = ( /obj/structure/cable{ @@ -3351,17 +3397,6 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"Io" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) "Is" = ( /obj/effect/turf_decal/borderfloor{ dir = 1 @@ -3369,6 +3404,24 @@ /obj/effect/turf_decal/industrial/loading, /turf/open/floor/plasteel, /area/ship/hallway/aft) +"Iu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/port) +"Iv" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/dark/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "gecko_thrusters" + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Iy" = ( /turf/closed/wall, /area/ship/hallway/aft) @@ -3428,55 +3481,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull, /area/ship/external) -"IV" = ( -/obj/machinery/power/smes/shuttle/precharged{ +"Jc" = ( +/turf/closed/wall, +/area/ship/maintenance/fore) +"Jj" = ( +/obj/effect/turf_decal/siding/white{ dir = 4 }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner{ +/obj/effect/turf_decal/siding/white{ dir = 8 }, -/obj/machinery/door/window/eastright{ - name = "Engine Access" - }, -/obj/machinery/door/poddoor{ - id = "gecko_thrusters" - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"IW" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Jb" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/airless, -/area/ship/engineering/engine) -"Jc" = ( -/turf/closed/wall, -/area/ship/maintenance/fore) -"Jf" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 10 +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ + dir = 1; + target_pressure = 4500 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/ship/engineering/engine) +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/central) "Jk" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, @@ -3496,14 +3516,11 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) -"Jv" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/port) +"Jz" = ( +/obj/effect/turf_decal/borderfloor, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "JD" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3530,10 +3547,49 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"JY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible/layer2{ + dir = 10 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "Kc" = ( /obj/structure/sign/number/one, /turf/closed/wall, /area/ship/cargo/port) +"Kd" = ( +/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ + dir = 8 + }, +/obj/effect/turf_decal/number/three{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"Ki" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/maintenance/port) +"Ko" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/structure/sign/poster/retro/random{ + pixel_x = 32 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"Kv" = ( +/obj/machinery/washing_machine, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plastic, +/area/ship/crew/toilet) "KA" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -3541,34 +3597,26 @@ /obj/effect/turf_decal/borderfloor, /turf/open/floor/plasteel, /area/ship/hallway/central) -"KC" = ( +"KH" = ( +/turf/closed/wall, +/area/ship/hallway/fore) +"KM" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "4-8" }, -/obj/machinery/light/small{ +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/siding/yellow{ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"KE" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"KQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull, +/obj/structure/catwalk/over, +/turf/open/floor/plating, /area/ship/external) -"KH" = ( -/turf/closed/wall, -/area/ship/hallway/fore) -"KJ" = ( -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) "KS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 8 @@ -3585,6 +3633,13 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/central) +"KU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/port) "KW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -3592,28 +3647,15 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"Lb" = ( -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) -"Lm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo/port) "Lo" = ( /turf/closed/wall, /area/ship/cargo/starboard) +"Lq" = ( +/obj/effect/turf_decal/number/zero{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) "Lr" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -3630,36 +3672,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/ship/maintenance/fore) -"Lz" = ( -/obj/machinery/computer/cargo/express{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -20 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 5; - pixel_y = -25 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) -"LA" = ( -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/suit/space/hardsuit/engine, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "LH" = ( /obj/machinery/atmospherics/pipe/simple/green/hidden{ dir = 9 @@ -3688,44 +3700,21 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/crew) -"LN" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/borderfloor, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) -"LS" = ( -/obj/machinery/door/airlock/external/glass{ - name = "External Hull Access" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) -"LV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/shuttle{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/ship/cargo/port) -"LX" = ( -/obj/effect/turf_decal/industrial/warning, +"LL" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/arrows{ - dir = 1 +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/maintenance/starboard) +"LU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plasteel/patterned, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel, /area/ship/cargo/starboard) "LY" = ( /obj/structure/cable{ @@ -3747,15 +3736,19 @@ /obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/inverse, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"Mk" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Mf" = ( +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/suit/space/hardsuit/engine, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/techfloor{ + dir = 8 }, -/obj/machinery/light/small{ - dir = 1 +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "Ml" = ( /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 @@ -3782,60 +3775,66 @@ /obj/effect/spawner/structure/window/shutters, /turf/open/floor/plating, /area/ship/engineering/engine) -"Mr" = ( -/obj/structure/cable{ - icon_state = "2-8" +"Mw" = ( +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Aft Hallway" }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"Ms" = ( -/obj/effect/turf_decal/box/corners{ +/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 }, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) -"Mu" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) -"MW" = ( -/obj/structure/chair/comfy/shuttle, -/obj/effect/landmark/start/assistant, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) -"Nj" = ( -/obj/machinery/vending/coffee, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 4 }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/aft) +"Nq" = ( +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/borderfloor{ dir = 1 }, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"NA" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 +"Nr" = ( +/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ + dir = 10 }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/effect/turf_decal/ntspaceworks_big/four{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"Nu" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/borderfloor, +/turf/open/floor/plasteel, +/area/ship/hallway/aft) +"Nz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_50, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) +"NC" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gecko_starboard" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo/starboard) "NJ" = ( /turf/closed/wall/mineral/titanium, /area/ship/maintenance/starboard) @@ -3849,55 +3848,15 @@ "NP" = ( /turf/open/floor/plating, /area/ship/maintenance/fore) -"NU" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Og" = ( -/obj/effect/spawner/lootdrop/salvage_50, +"Oe" = ( +/obj/machinery/light/directional/north, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/radio/intercom{ - pixel_y = 24 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/shuttle{ + pixel_y = 32 }, /turf/open/floor/plasteel, /area/ship/cargo/port) -"Oi" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/cargo/starboard) -"Oj" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Aft Hallway" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/aft) "Om" = ( /obj/machinery/atmospherics/components/unary/tank/oxygen{ dir = 8 @@ -3916,13 +3875,29 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/visible/layer2, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"Ot" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gecko_starboard" +"Ov" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/plasteel/tech/grid, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/maintenance/fore) +"Ow" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/patterned, /area/ship/cargo/starboard) "OB" = ( /obj/structure/sign/warning/nosmoking, @@ -3932,16 +3907,6 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel, /area/ship/cargo/port) -"OP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/shuttle{ - pixel_y = 32 - }, -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) "OQ" = ( /obj/structure/cable{ icon_state = "0-4" @@ -3997,50 +3962,81 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/patterned, /area/ship/storage) -"Pu" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ +"Pk" = ( +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced/spawner{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "gecko_thrusters" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"Pn" = ( +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/industrial/hatch/yellow, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"PF" = ( -/turf/closed/wall, +"Pr" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/engineering/engine) -"PG" = ( +"Px" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) -"PH" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +"PC" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ship/crew/toilet) +"PF" = ( +/turf/closed/wall, +/area/ship/engineering/engine) +"PG" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) -"PL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"PQ" = ( +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/shuttle{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, +/obj/effect/turf_decal/techfloor{ dir = 4 }, /obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/cargo/port) +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "PV" = ( /obj/structure/closet/secure_closet{ anchored = 1; @@ -4058,43 +4054,27 @@ /obj/item/clothing/glasses/meson, /turf/open/floor/plasteel/patterned/grid, /area/ship/cargo/starboard) -"Qb" = ( -/obj/machinery/door/airlock/mining{ - name = "Starboard Cargo Bay" - }, -/obj/machinery/door/poddoor/preopen{ - id = "gecko_starboard_int" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo/starboard) -"Qd" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, +"Qc" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/external) +"Qg" = ( +/obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, /turf/open/floor/plasteel/patterned, /area/ship/cargo/port) -"Qi" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" +"Qp" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull, +/area/ship/external) "Qr" = ( /obj/machinery/atmospherics/components/binary/pump/on/layer2{ dir = 8; @@ -4114,16 +4094,26 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"Qy" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" +"Qv" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 }, -/turf/open/floor/plasteel/patterned, +/obj/effect/spawner/lootdrop/salvage_50, +/turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo/starboard) +"Qz" = ( +/obj/machinery/door/airlock/command{ + name = "Communications" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) "QA" = ( /obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1, /obj/structure/cable{ @@ -4134,6 +4124,20 @@ /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5, /turf/open/floor/plating, /area/ship/engineering/engine) +"QC" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/aft) "QD" = ( /obj/machinery/atmospherics/components/binary/valve/digital/layer2{ dir = 8; @@ -4155,6 +4159,32 @@ /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/ship/cargo/starboard) +"QZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage Bay" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/storage) +"Rc" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) "Rh" = ( /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 @@ -4188,35 +4218,29 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"Rl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) -"Rx" = ( -/obj/machinery/door/airlock{ - name = "Crew Quarters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +"Ru" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ship/crew) +"RK" = ( +/obj/machinery/computer/cargo/express{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/item/radio/intercom/directional/west, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 5; + pixel_y = -25 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew) +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) "RN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/layer2{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, +/obj/machinery/space_heater, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "RS" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 1; @@ -4229,6 +4253,15 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) +"Sa" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) "Se" = ( /obj/structure/chair/comfy/shuttle, /obj/effect/landmark/start/assistant, @@ -4294,16 +4327,28 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"SJ" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt/dust, -/mob/living/simple_animal/hostile/mining_drone{ - desc = "A minebot with the name \"Molly\" painted on the side in careful cursive writing. She may be cute, but she still constantly gets in the way."; - name = "\improper Mo11-E" +"SE" = ( +/obj/machinery/door/airlock/mining{ + frequency = 1331; + id_tag = "port_cargo_interior"; + name = "Port Cargo Bay" + }, +/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/techmaint, +/area/ship/cargo/port) +"SK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 }, -/obj/effect/turf_decal/borderfloor, /turf/open/floor/plasteel, -/area/ship/hallway/aft) +/area/ship/cargo/port) "SM" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4373,197 +4418,73 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"Tg" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 8 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"Tj" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"Tl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ +"Th" = ( +/obj/effect/turf_decal/box/corners{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/aft) -"Tn" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gecko_port" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo/port) -"To" = ( -/obj/structure/closet/wardrobe, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) -"Tq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/reinforced, -/area/ship/external) -"Ts" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/hallway/central) -"Tt" = ( -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/reinforced, -/obj/item/areaeditor/shuttle, -/obj/item/megaphone/command, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"Tv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/salvage_50, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/port) -"Tz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) -"TD" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer2{ - dir = 1; - target_pressure = 4500 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/hallway/central) -"TL" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gecko_port" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 4; - id = "gecko_port_field" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/industrial/warning/fulltile, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo/port) -"TZ" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) -"Ug" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/engine) -"Uh" = ( -/obj/machinery/door/airlock/command{ - name = "Communications" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/area/ship/cargo/port) +"Tl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/communications) -"Uj" = ( -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_y = 32 +/obj/effect/turf_decal/siding/white{ + dir = 4 }, -/obj/effect/turf_decal/borderfloor{ - dir = 1 +/obj/effect/turf_decal/siding/white{ + dir = 8 }, -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Uo" = ( -/obj/machinery/door/airlock{ - name = "Restrooms" +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/aft) +"Tq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/ship/external) +"Ts" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/hallway/central) +"TA" = ( +/obj/machinery/door/airlock/external/glass{ + name = "External Hull Access" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/effect/turf_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ dir = 1 }, /turf/open/floor/plasteel/tech/techmaint, -/area/ship/crew/toilet) -"Uq" = ( -/obj/effect/turf_decal/box/corners, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/area/ship/hallway/central) +"TF" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 }, +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo/port) -"Uw" = ( -/obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/purple/hidden/layer1{ - dir = 8 +"TK" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 4 }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ship/engineering/engine) +"Ug" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/engineering/engine) "Ux" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4590,9 +4511,27 @@ /obj/structure/sign/nanotrasen, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/hallway/central) -"UD" = ( +"UC" = ( /obj/effect/spawner/lootdrop/salvage_50, -/turf/open/floor/plasteel/patterned, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) +"UI" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gecko_starboard" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/warning/fulltile, +/turf/open/floor/plasteel/tech/grid, /area/ship/cargo/starboard) "UK" = ( /obj/machinery/atmospherics/pipe/layer_manifold{ @@ -4654,65 +4593,82 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"Vq" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/cargo/starboard) -"Vu" = ( -/obj/machinery/door/poddoor{ - id = "gecko_engine_vent"; - name = "Combustion Chamber Vent" +"Vb" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"Vz" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/ship/maintenance/fore) -"VA" = ( -/obj/structure/cable{ - icon_state = "1-4" +/area/ship/engineering/engine) +"Vm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/siding/white{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/siding/white{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"VE" = ( -/turf/closed/wall, -/area/ship/cargo/port) -"VL" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_x = -18 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/obj/item/folder/blue, -/obj/item/megaphone, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering/communications) -"VM" = ( +/turf/open/floor/plasteel/patterned/grid, +/area/ship/hallway/aft) +"Vn" = ( +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -5 +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) +"Vq" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/ship/cargo/starboard) +"Vr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/grid, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, /area/ship/cargo/starboard) +"Vw" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_50, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) +"Vz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"VC" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"VE" = ( +/turf/closed/wall, +/area/ship/cargo/port) +"VK" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "VN" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt/dust, @@ -4735,6 +4691,15 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) +"VT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/airless, +/area/ship/engineering/engine) "VU" = ( /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 @@ -4757,16 +4722,38 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/hallway/aft) -"VW" = ( -/obj/structure/cable{ - icon_state = "4-8" +"VV" = ( +/obj/machinery/computer/helm/viewscreen/directional/north{ + pixel_y = 18 }, -/obj/machinery/light/small{ - dir = 1 +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + dir = 4; + id = "gecko_port"; + name = "External Shutter Control"; + pixel_x = -6; + pixel_y = 8; + sync_doors = 0 + }, +/obj/machinery/button/shieldwallgen{ + dir = 4; + id = "gecko_port_field"; + pixel_x = -4; + pixel_y = -2 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/cargo/port) +"VZ" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor{ + dir = 4; + id = "gecko_thrusters" }, -/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/ship/maintenance/fore) +/area/ship/engineering/engine) "Wb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -4782,6 +4769,16 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/communications) +"Wj" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/port) "Wo" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -4795,53 +4792,15 @@ icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ - dir = 9 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/fore) -"Wt" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - dir = 4; - id = "gecko_starboard"; - name = "External Shutter Control"; - pixel_x = -6; - pixel_y = 8; - sync_doors = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/helm/viewscreen{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/button/shieldwallgen{ - dir = 4; - id = "gecko_starboard_field"; - pixel_x = -4; - pixel_y = -2 - }, -/turf/open/floor/plasteel/patterned/grid, -/area/ship/cargo/starboard) -"Wz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull, -/area/ship/external) -"WA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/catwalk/over, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 9 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, /turf/open/floor/plating, -/area/ship/external) +/area/ship/maintenance/fore) "WF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -4865,34 +4824,19 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) -"WH" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/crew/toilet) +"WJ" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/borderfloor, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) "WN" = ( /obj/machinery/atmospherics/components/binary/circulator, /obj/structure/disposalpipe/segment, /turf/open/floor/engine, /area/ship/engineering/engine) -"WQ" = ( -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/suit/space/hardsuit/mining, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "WR" = ( /obj/structure/sign/poster/official/random{ pixel_y = 32 @@ -4903,6 +4847,12 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/fore) +"WS" = ( +/obj/machinery/rnd/server, +/obj/machinery/airalarm/directional/south, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "WT" = ( /turf/closed/wall, /area/ship/storage) @@ -4947,19 +4897,21 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"Xj" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, +"Xr" = ( +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/suit/space/hardsuit/mining, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/turf/open/floor/plasteel/patterned/cargo_one, -/area/ship/cargo/starboard) +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "Xs" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -4968,13 +4920,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull, /area/ship/external) -"Xt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/ship/engineering/engine) "Xv" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -4982,27 +4927,17 @@ }, /turf/open/floor/plating, /area/ship/maintenance/fore) -"XB" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ +"XA" = ( +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/starboard) -"XI" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/yellow, +/obj/structure/railing/corner{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"XL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/patterned, -/area/ship/cargo/port) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) "XN" = ( /obj/structure/sign/number/four{ color = "#00000F"; @@ -5010,37 +4945,61 @@ }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/maintenance/fore) -"XQ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hallway" +"XR" = ( +/obj/machinery/light/directional/north, +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"XS" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/green/hidden, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"XY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo/starboard) +"Yf" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engine Room" + }, /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/green/hidden{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ dir = 4 }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/fore) -"XS" = ( -/obj/machinery/atmospherics/pipe/manifold/purple/hidden/layer1{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/green/hidden, -/turf/open/floor/plating, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) "Yo" = ( /obj/structure/sign/number/three{ @@ -5062,13 +5021,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/maintenance/fore) -"Yz" = ( -/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/ship/engineering/engine) "YA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -5076,16 +5028,17 @@ /obj/effect/turf_decal/siding/yellow, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/engine) -"YB" = ( -/obj/machinery/light{ - dir = 1 +"YC" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/spawner/lootdrop/salvage_50, -/obj/effect/turf_decal/borderfloor{ - dir = 1 +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/hallway/aft) +/turf/open/floor/plating, +/area/ship/maintenance/fore) "YG" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5105,15 +5058,13 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating, /area/ship/maintenance/fore) -"YK" = ( +"YM" = ( +/obj/item/radio/intercom/directional/north, /obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/structure/sign/poster/retro/random{ - pixel_x = 32 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/grimy, -/area/ship/crew) +/obj/item/paper_bin, +/obj/item/pen/fountain/captain, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "YQ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5135,6 +5086,50 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/crew) +"Zb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/white/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/cargo/port) +"Ze" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"Zn" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced/spawner{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "gecko_thrusters" + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "Zo" = ( /obj/machinery/power/terminal{ dir = 8 @@ -5167,31 +5162,15 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/aft) -"ZA" = ( -/obj/structure/table, -/obj/item/soap/nanotrasen, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plastic, -/area/ship/crew/toilet) -"ZC" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor, -/turf/open/floor/plasteel, -/area/ship/hallway/fore) -"ZK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"ZB" = ( +/obj/machinery/computer/apc_control{ + icon_state = "computer-left" }, -/obj/machinery/light/small, -/obj/effect/turf_decal/siding/yellow, -/obj/structure/railing/corner{ - dir = 8 +/obj/machinery/status_display/shuttle{ + pixel_y = 32 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/engine) +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) "ZM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/siding/white{ @@ -5205,15 +5184,6 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/hallway/fore) -"ZN" = ( -/obj/machinery/rnd/server, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "ZS" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/disposal/bin, @@ -5228,9 +5198,10 @@ /turf/open/floor/plasteel/tech/grid, /area/ship/crew) "ZY" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall, -/area/ship/cargo/port) +/obj/effect/spawner/lootdrop/salvage_50, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo/starboard) (1,1,1) = {" hu @@ -5274,9 +5245,9 @@ Ug jQ Tq oj -hU -Vu -hU +Pr +sL +Pr oj Tc NN @@ -5300,15 +5271,15 @@ hu hu Ug Ug -Ea +Iv Ug Ug -zw -ix -Jb +iH +cv +VT Ug Ug -iA +VZ Ug Ug hu @@ -5330,13 +5301,13 @@ oj oj GM dG -tF -Fx -Tg -Xt -Tg -Fx -IW +AA +hn +cK +CF +cK +hn +TK UW GM oj @@ -5364,7 +5335,7 @@ ZS WN Sv uz -iw +Bi Tb st Tb @@ -5386,14 +5357,14 @@ hu hu Ug ok -xR -Uw -Yz -wZ +Nr +fj +ge +dZ BB td Ml -Jf +mS hb XS zl @@ -5407,19 +5378,19 @@ hu hu "} (7,1,1) = {" -Tc +Ki wy xh -Tc +Ki hu hu Ug Iz -Cj -lj -Ds -on -cy +DS +sS +zv +yc +nH UP hX Cj @@ -5430,24 +5401,24 @@ Hg Ug hu hu -Tq +bV xh OQ -Tc +LL "} (8,1,1) = {" tB -dR -IV +Zn +jn tB hu hu Ug -hq -on -Ga -on +pW on +Kd +Lq +vl wY xN FZ @@ -5455,13 +5426,13 @@ on on Fq on -cf +lW Ug hu hu wB -gq -Hp +Pk +cx wB "} (9,1,1) = {" @@ -5473,17 +5444,17 @@ hu CU tB tB -nk +Vb GE in QA -jb +ws kZ -Dp -wA +aK +oT zZ LH -NU +wV wB wB NJ @@ -5501,11 +5472,11 @@ tB tB tB UV -hx +qp jd zM pQ -kx +qK ss Xh Lr @@ -5513,7 +5484,7 @@ el YH CN pH -hR +Ze In wB wB @@ -5524,44 +5495,44 @@ wB "} (11,1,1) = {" az -KC -cW +hL +qB fK fK yD -Dk +As bH re Mp re PF -so +KM Tf -ZK +XA OB re jt re Au -Mr +HT cr ye cr -VA -yS +CQ +uP wB "} (12,1,1) = {" tB Wo -Qi +VC tB tB tB -rr +KU bH -Gz -gV +VV +jV du re eu @@ -5569,14 +5540,14 @@ ag YA re PV -VM -Wt +Ij +Gt Au -Mk +En wB wB wB -lu +mM dk wB "} @@ -5589,7 +5560,7 @@ hu tB iT bH -LV +Oe zI OG re @@ -5599,7 +5570,7 @@ Sl re xm QY -le +ef Au Sy wB @@ -5616,21 +5587,21 @@ tB CU hu Vq -bp +GN Lo -Og -Ez +xG +lZ wP re -aY +Im Rh -HO +aq re Jk -xD -sV +Vr +AN Lo -Oi +vy Vq hu NJ @@ -5647,17 +5618,17 @@ hu Vq Lo Lo -rb -PL -Lm +xr +Zb +SK PF Iy -FN +Yf PF PF -nE -AY -sm +Dw +LU +BM Lo Lo Vq @@ -5673,23 +5644,23 @@ hu hu hu hu -cq -TL -kA -dI -od -Rl +tQ +zS +gF +qT +Th +Gj Kc -iN +fn EE ej yX -Fy -DR -Ms -rP -Ht -Gp +cj +gw +EK +Cc +DQ +eI hu hu hu @@ -5703,21 +5674,21 @@ hu hu hu IQ -ja -mx -Tv -BW -An -vY -pc -DK -fF -Qb -Qy -Tz -rc -CS -rE +dC +kr +lT +UC +Qg +sg +Vm +CT +QC +cX +fD +XY +gh +AM +UI oR hu hu @@ -5732,21 +5703,21 @@ hu hu hu uW -ja -zT -FM -Uq -FR -VE +dC +BV +Vw +Wj +Du +kq Sj bb -SJ +ov uv -UD -Xj -kP -XB -Ot +ZY +oW +lE +eE +NC oR hu hu @@ -5761,23 +5732,23 @@ hu hu hu ae -ja -fG -XL -yW +dC +gg +jO +gf df -kt +EB Is bb Zv Pg BP -BH -KJ -LX -Ot +Vn +vL +Ow +NC vS -hu +zQ hu hu hu @@ -5790,21 +5761,21 @@ hu hu hu uW -Tn -Qd -Jv -HS -ql -ZY -YB +sy +Eh +TF +mX +Iu +VE +HK bb mN Lo -sX -xv -cb -PH -rE +wR +tN +Rc +ih +UI Xs hu hu @@ -5819,21 +5790,21 @@ hu hu hu IQ -bq -fG -AU -zy -dj -BL +mm +gg +HN +Nz +sj +SE Ct VU Tl -GS -Mu -wM -wM -nC -Ot +GZ +Ek +mb +mb +yQ +NC Xs hu hu @@ -5847,23 +5818,23 @@ hu hu hu hu -Wz -or -DG -wx -no -qD +gP +up +if +lM +oi +hA Kc -Bz +vG IK -Ik +Nu yX -UD -TZ -ta -Io -Cd -KE +iJ +Qv +tU +Sa +bB +Qp hu hu hu @@ -5884,7 +5855,7 @@ xJ xJ VE Iy -Oj +Mw Iy Lo Pc @@ -5904,17 +5875,17 @@ hu hu hu hu -hu +Ts UB vo -gc -LA -WQ -sM +Mf +gN +bK +Xr vR -la +Da UR -tM +fP jC BF ZX @@ -5932,20 +5903,20 @@ hu hu hu hu -hu -hu -LS -bC -TD -FT +lY +an +rU +oy +Jj +xl bQ -Tj -wL +et +TA KS Ed -dg +EA jC -bA +GR Ba hy Jc @@ -5964,17 +5935,17 @@ hu hu qO Ts -RN -hI -jM -nr -rC +nq +lS +rH +PQ +mL vR Ia UR KA jC -To +Gm zE lb Jc @@ -5992,7 +5963,7 @@ hu hu hu dl -BT +eG vR vR vR @@ -6000,14 +5971,14 @@ vR vR vR KH -XQ +Cn KH jC -MW +wh yG lb jC -oK +lU eC dl hu @@ -6023,14 +5994,14 @@ hu dl aD gQ -iX +Ov vc -CM +qc oM WT -Nj +pu yd -LN +WJ jC Se YR @@ -6051,19 +6022,19 @@ hu hu qO dl -hP +yp WT Pi Ux YQ -zs +QZ ue Gd ZM -Rx +dX rF Hc -qw +Ru Jc PG dl @@ -6080,21 +6051,21 @@ hu hu hu dl -ce +YC Jc kS -oo -tt +Ha +oZ WT -mw +bw rd LZ jC -YK -NA +Ko +jc ro Jc -VW +ms dl hu hu @@ -6117,7 +6088,7 @@ WT WT WR rd -FE +Jz vv vv vv @@ -6141,15 +6112,15 @@ dl nP Jc JV -VL -Lz +cE +RK aS -hv +Nq rd -ZC +jp vv vz -yq +Kv eD Jc PG @@ -6169,17 +6140,17 @@ qO dl ch Jc -OP +XR pD eA -Uh +Qz uH qb Jn -Uo +fh pr Yr -pY +yM Jc Ho dl @@ -6198,19 +6169,19 @@ dl pK nP Jc -xF +uA wD -yK +fv aS VO WF SV vv -ZA +zW Sw mC vv -WH +PC wv dl hu @@ -6222,12 +6193,12 @@ hu hu hu hu -qO +hu dl bh nP Jc -Ii +ZB EM Pf fS @@ -6254,21 +6225,21 @@ hu dl dl dl -eo +Px Jc -Gi +cG jx -kc +zn fS -Pu +tV Qr Rk -Lb +Pn rx Rk nm Jc -cY +pX dl qO hu @@ -6280,22 +6251,22 @@ hu hu hu hu -WA +KQ hu ze PG Jc -dK +qL ku Wb -Ae +fZ Ta ud os sJ GQ nc -pI +Ch Jc nP BU @@ -6309,17 +6280,17 @@ hu hu hu hu -WA +KQ hu XN -id +kM aS kT bo tH fS -BC -Gv +JY +VK Mc On WX @@ -6338,13 +6309,13 @@ hu hu hu hu -WA +KQ hu Ew CE bU bU -ht +AI bU bU fS @@ -6352,7 +6323,7 @@ Jc Jc GX gB -tv +yw Jc Jc PG @@ -6367,23 +6338,23 @@ hu hu hu hu -vx +Qc hu bk eQ bU -mi +rM Zr -ZN +WS bU -XI -HI +sY +RN Mn dd Dv gE -qo -zC +qn +cL GT ez hu @@ -6396,12 +6367,12 @@ hu hu hu hu -vx +Qc hu qO dl bU -EZ +Ig pO bL bU @@ -6425,16 +6396,16 @@ hu hu hu hu -vx +Qc hu hu rh bU -Uj +ah EQ -gs +qv bU -BG +bs vi NP UK @@ -6454,14 +6425,14 @@ hu hu hu hu -vx +Qc hu hu fb bU -dB +Hx iQ -zu +DT bU zc Eb @@ -6483,14 +6454,14 @@ hu hu hu hu -WA +KQ hu hu rh bU -wT +YM JX -Tt +iZ bU qY AG @@ -6512,21 +6483,21 @@ hu hu hu hu -WA +KQ hu hu gS rh -aB -pw -tJ +ph +CI +Gu rh CL -HF +gr Om vi Cv -HF +gr Om qO qO @@ -6541,14 +6512,14 @@ hu hu hu hu -jO +AW hu hu hu gS -ly -ly -ly +te +te +te rh dl dl diff --git a/_maps/shuttles/shiptest/nanotrasen_mimir.dmm b/_maps/shuttles/shiptest/nanotrasen_mimir.dmm new file mode 100644 index 000000000000..d6e22cebf0c7 --- /dev/null +++ b/_maps/shuttles/shiptest/nanotrasen_mimir.dmm @@ -0,0 +1,10722 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"af" = ( +/obj/structure/table, +/obj/item/picket_sign, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"ah" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"ak" = ( +/obj/effect/turf_decal/siding/wideplating/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/light/corner{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"al" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"am" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"ax" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/plastic, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"aE" = ( +/obj/structure/table, +/obj/machinery/door/window, +/turf/open/floor/plating, +/area/ship/crew/hydroponics) +"aF" = ( +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"aG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/crew/dorm/dormthree) +"aQ" = ( +/obj/vehicle/ridden/wheelchair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"aS" = ( +/obj/machinery/door/window, +/obj/item/bikehorn/rubberducky/plasticducky, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"aV" = ( +/obj/structure/closet/emcloset/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"aX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"bb" = ( +/turf/closed/wall/r_wall, +/area/ship/security) +"be" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters{ + id = "starboard_eng"; + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"bf" = ( +/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/airalarm/directional/north, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"bj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"bk" = ( +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"bo" = ( +/obj/structure/chair/sofa/right, +/obj/item/toy/plush/beeplushie, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"bu" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"bx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"bz" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/iv_drip, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"bD" = ( +/obj/machinery/light_switch{ + pixel_y = 24; + pixel_x = -9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + icon_state = "stairs-old"; + dir = 8 + }, +/area/ship/bridge) +"bE" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + piping_layer = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/full, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"bK" = ( +/obj/structure/table/wood/reinforced, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"bL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"bO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"bQ" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"bS" = ( +/obj/structure/table, +/obj/machinery/door/window/brigdoor/security/holding/eastleft{ + name = "Warden Office Window" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/ship/security/armory) +"bT" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/patriot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"bU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters{ + name = "Electrical Window Shutter"; + id = "elec_shut_win" + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"cj" = ( +/obj/structure/cable{ + icon_state = "4-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, +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"ck" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"cm" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4; + pixel_x = -2 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"cn" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -13 + }, +/obj/structure/mirror{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"co" = ( +/obj/structure/cable{ + icon_state = "6-8" + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"cr" = ( +/obj/structure/cable{ + icon_state = "6-8" + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"cw" = ( +/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 = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"cx" = ( +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"cB" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/item/storage/box/lights/tubes, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"cE" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"cF" = ( +/obj/item/trash/sosjerky, +/obj/item/trash/chips, +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"cH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"cK" = ( +/turf/closed/wall/rust, +/area/ship/crew/hydroponics) +"cO" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/obj/item/toy/plush/slimeplushie{ + pixel_x = 6 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"cV" = ( +/obj/machinery/flasher{ + pixel_x = 24; + id = "midpoint_flashers" + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"dc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"dd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"df" = ( +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"dn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"dr" = ( +/obj/effect/turf_decal/steeldecal/steel_decals6, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"dt" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/item/clothing/gloves/boxing/yellow, +/obj/item/clothing/under/shorts/grey, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"dw" = ( +/obj/structure/closet/lasertag/blue, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"dF" = ( +/obj/machinery/door/poddoor{ + id = "mimir_sec_blasts" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"dG" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8; + pixel_y = 26 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"dH" = ( +/obj/structure/railing/modern/end{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + pixel_y = -1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/railing{ + layer = 3.1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"dJ" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/rainbow, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"dL" = ( +/obj/structure/railing/modern/end{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/structure/railing/corner{ + 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/dark, +/area/ship/bridge) +"dM" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"dN" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/item/reagent_containers/glass/bucket/wooden, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"dQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/remains/robot, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"dT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-9" + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"dV" = ( +/turf/closed/wall, +/area/ship/crew/canteen/kitchen) +"dY" = ( +/turf/closed/wall/r_wall, +/area/ship/security/prison) +"dZ" = ( +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"eb" = ( +/obj/structure/cable{ + icon_state = "4-5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"ee" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"eg" = ( +/obj/machinery/conveyor{ + id = "prison_scrap"; + dir = 8 + }, +/obj/machinery/door/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"em" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_shut"; + name = "Mining Bay Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/storage/eva) +"eo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"eq" = ( +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ship/crew/canteen/kitchen) +"er" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"eu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"ew" = ( +/obj/structure/closet{ + name = "Prisoner Locker"; + desc = "Basic items for prisoners." + }, +/obj/item/clothing/head/helmet/space/plasmaman/prisoner, +/obj/item/clothing/under/plasmaman/prisoner, +/obj/item/clothing/under/plasmaman/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/gloves/color/orange, +/obj/item/taperecorder, +/obj/item/cane, +/obj/item/laser_pointer/purple, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/clothing/under/plasmaman/prisoner/skirt, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"eC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"eD" = ( +/obj/effect/turf_decal/floordetail/traction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"eF" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/fancy/cigarettes/cigpack_cannabis, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"eJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera/autoname, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"eN" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"eO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"eP" = ( +/obj/structure/table/wood/reinforced, +/obj/item/storage/box/cups, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"eR" = ( +/obj/item/pickaxe/rusted, +/obj/structure/rack, +/obj/item/gps/mining, +/obj/item/shovel/spoon, +/obj/item/storage/bag/ore, +/obj/item/mining_scanner, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"eS" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/dorm/dormthree) +"eU" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + id = "starboard_eng"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"fd" = ( +/obj/structure/table/wood/reinforced, +/obj/item/storage/box/donkpockets/donkpocketteriyaki{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 9; + pixel_x = -9 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 9; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 5; + pixel_x = -9 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 2; + pixel_x = -9 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/item/storage/fancy/donut_box{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 10 + }, +/obj/machinery/light/directional/east{ + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"fe" = ( +/obj/machinery/grill, +/turf/open/floor/plating/rust, +/area/ship/maintenance/starboard) +"fj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"fk" = ( +/obj/item/seeds/cannabis, +/obj/item/seeds/cannabis, +/turf/open/floor/plating/rust, +/area/ship/maintenance/starboard) +"fp" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"fq" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"fA" = ( +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"fC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-9" + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"fJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"fL" = ( +/obj/machinery/door/airlock/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"fS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"fT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"fV" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"fY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"fZ" = ( +/obj/structure/cable{ + icon_state = "8-9" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"ga" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -23; + pixel_x = -6 + }, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"ge" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/caution, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"gf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"gg" = ( +/obj/item/seeds/reishi, +/obj/item/seeds/reishi, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"gt" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 10 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"gv" = ( +/obj/item/circuitboard/machine/plantgenes, +/turf/open/floor/plating/rust, +/area/ship/maintenance/starboard) +"gw" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"gz" = ( +/obj/structure/cable{ + icon_state = "5-10" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"gA" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"gF" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"gI" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + name = "Electrical Window Shutter"; + id = "elec_shut_win" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"gJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/remains/robot, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/caution, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"gR" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/noslip, +/area/ship/security/prison) +"gU" = ( +/obj/structure/table, +/obj/item/stack/medical/splint/ghetto{ + pixel_y = -2; + pixel_x = -3 + }, +/obj/item/stack/medical/splint/ghetto{ + pixel_y = -2; + pixel_x = -3 + }, +/obj/item/stack/medical/gauze/improvised{ + pixel_y = -2; + pixel_x = 4 + }, +/obj/item/stack/medical/gauze/improvised{ + pixel_y = -2; + pixel_x = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -9 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"gZ" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet/royalblack, +/area/ship/crew/dorm/dormfive) +"hd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"hg" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"hi" = ( +/turf/closed/wall/rust, +/area/ship/crew/toilet) +"hj" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/industrial/traffic/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"hk" = ( +/obj/structure/window/reinforced/spawner, +/obj/machinery/flasher{ + pixel_x = 24; + id = "midpoint_flashers" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"hm" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/violent_video_games, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"hq" = ( +/turf/open/floor/plastic, +/area/ship/crew/dorm/dormthree) +"hs" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1; + piping_layer = 2 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"hu" = ( +/obj/structure/table, +/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/pod/dark, +/area/ship/crew/cryo) +"hw" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/machinery/conveyor/inverted{ + id = "retrieval"; + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"hx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"hz" = ( +/turf/closed/wall, +/area/ship/storage/eva) +"hB" = ( +/obj/item/storage/bag/money, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"hC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/decal/cleanable/insectguts, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"hG" = ( +/obj/structure/railing, +/obj/item/trash/cheesie, +/obj/item/trash/can/food/peaches/maint, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"hH" = ( +/obj/effect/turf_decal/techfloor/orange, +/obj/structure/railing/modern/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"hN" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"hP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch/seclock{ + name = "Engineering" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"hS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-9" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"hW" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"hX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"hZ" = ( +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"id" = ( +/obj/structure/chair/sofa/corner, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"ig" = ( +/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/ship/maintenance/starboard) +"ii" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"ij" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "midpoint_shut"; + dir = 4 + }, +/obj/machinery/door/airlock/security/glass/seclock{ + name = "Midpoint Airlock"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"im" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/conveyor/inverted{ + id = "prison_scrap"; + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"io" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/item/flashlight/lamp{ + pixel_y = 13 + }, +/obj/item/paper/fluff/mimir/treasure, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"is" = ( +/obj/structure/cable{ + icon_state = "2-10" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"iu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters{ + name = "Starboard Window Shutter"; + id = "starb_shut_win" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"iv" = ( +/turf/open/floor/plating, +/area/ship/crew/canteen) +"iw" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"iy" = ( +/obj/structure/table, +/obj/item/table_bell/brass, +/obj/machinery/door/window, +/turf/open/floor/plating, +/area/ship/crew/canteen/kitchen) +"iz" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/electrical) +"iF" = ( +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"iI" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/pill_bottle/dice{ + pixel_x = 6 + }, +/obj/item/toy/cards/deck{ + pixel_y = 1; + pixel_x = -6 + }, +/obj/item/dice/d100, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"iL" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"iO" = ( +/obj/structure/table/wood/reinforced, +/obj/machinery/microwave, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"iW" = ( +/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/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"iX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"jd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"jf" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"jg" = ( +/turf/closed/wall/r_wall, +/area/ship/medical) +"jj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/rack, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"jp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"jt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Starboard Maintenance"; + 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/techfloor/orange, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"jw" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/wideplating/light, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"jx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"jC" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/lethal, +/obj/item/storage/box/lethalshot, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"jG" = ( +/obj/structure/table/optable, +/obj/item/storage/firstaid/regular, +/obj/item/storage/box/syringes, +/obj/item/storage/box/medipens, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/masks, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"jI" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"jJ" = ( +/obj/machinery/smartfridge, +/turf/open/floor/plasteel, +/area/ship/crew/canteen/kitchen) +"jK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"jM" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"jQ" = ( +/obj/structure/fermenting_barrel, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"jR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"jS" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/machinery/conveyor/inverted{ + id = "prison_scrap"; + dir = 6 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/machinery/mineral/processing_unit{ + input_dir = 2; + output_dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"jX" = ( +/turf/closed/wall/r_wall, +/area/ship/engineering/atmospherics) +"jY" = ( +/turf/template_noop, +/area/template_noop) +"ka" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/hydroponics) +"kb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"ke" = ( +/obj/machinery/button/door{ + dir = 4; + pixel_y = 1; + pixel_x = -27; + id = "mimir_sec_blasts"; + name = "blast doors" + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/engine/hull, +/area/ship/external) +"kj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/security/armory) +"kl" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"km" = ( +/obj/structure/closet/wall/blue{ + dir = 4; + pixel_x = -30; + name = "Space Suits"; + desc = "Contains supplies for space walking." + }, +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 4 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/space/eva{ + pixel_x = 5 + }, +/obj/item/clothing/head/helmet/space/eva{ + pixel_y = -7; + pixel_x = -7 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"ko" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"kp" = ( +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"kq" = ( +/obj/effect/turf_decal/siding/wideplating/light/corner{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"kv" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"ky" = ( +/obj/machinery/door/window{ + 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/spline/fancy/wood{ + dir = 4 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"kA" = ( +/obj/machinery/button/door{ + id = "mimir_sec_blasts"; + name = "blast doors"; + dir = 8; + pixel_y = -6; + pixel_x = 27 + }, +/obj/machinery/button/shieldwallgen{ + dir = 8; + pixel_x = 26; + pixel_y = 8; + id = "mimir_blast_holo" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/caution{ + pixel_y = -1 + }, +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"kB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"kD" = ( +/obj/effect/turf_decal/borderfloor/corner, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"kE" = ( +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/storage/belt/medical/paramedic{ + pixel_y = 4 + }, +/obj/item/storage/belt/medical/webbing/paramedic{ + pixel_y = 8; + pixel_x = 3 + }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/structure/table/greyscale, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"kJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"kL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"kP" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + id = "port_eng"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"kQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"kR" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryo Prisoner Entrance" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) +"kY" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/obj/item/kitchen/knife/shiv, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"lc" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"lj" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/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/turf_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange/corner, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"lm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/cable{ + icon_state = "1-5" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"ln" = ( +/obj/structure/chair/greyscale, +/obj/item/reagent_containers/food/snacks/popcorn, +/obj/structure/railing/modern{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/maintenance/starboard) +"lq" = ( +/turf/closed/wall, +/area/ship/engineering/atmospherics) +"lr" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/button/door{ + dir = 4; + pixel_y = 1; + pixel_x = -27; + id = "starb_shut_win"; + name = "window shutters" + }, +/obj/structure/railing/modern/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"ls" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/structure/railing, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"lA" = ( +/obj/structure/closet/emcloset/wall{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"lC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"lS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + name = "Recycled Air to Supply"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/full, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"lW" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"lX" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/item/flashlight/lamp{ + pixel_y = 13 + }, +/obj/item/storage/book/bible/booze, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"ma" = ( +/turf/closed/wall, +/area/ship/crew/hydroponics) +"mc" = ( +/obj/structure/urinal{ + pixel_y = 30; + pixel_x = 17 + }, +/obj/structure/urinal{ + pixel_y = 30; + pixel_x = -19 + }, +/obj/structure/urinal{ + pixel_y = 30; + pixel_x = -1 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plastic, +/area/ship/crew/dorm/dormthree) +"mf" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -13 + }, +/obj/structure/mirror{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"mj" = ( +/obj/item/storage/backpack/satchel/flat/mimir_jackets, +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"mk" = ( +/obj/structure/table, +/obj/item/gavelblock{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/item/gavelhammer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/spline/plain/opaque/blue, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"mt" = ( +/obj/structure/table, +/obj/item/toy/figure/secofficer, +/turf/open/floor/plasteel, +/area/ship/security) +"mz" = ( +/obj/machinery/hydroponics/constructable{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"mD" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"mE" = ( +/obj/machinery/door/airlock/wood{ + name = "Prisoner Dorms"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"mF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"mG" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/caution, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"mI" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"mJ" = ( +/obj/machinery/light/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + icon_state = "stairs-old"; + dir = 8 + }, +/area/ship/bridge) +"mO" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"mS" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "2-6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-6" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/traffic/corner, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"mU" = ( +/obj/effect/turf_decal/siding/wideplating/light, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"mV" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/item/reagent_containers/food/snacks/urinalcake, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"nb" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/item/flashlight/lamp{ + pixel_y = 13 + }, +/obj/item/book/codex_gigas, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"nh" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/dorm/dormtwo) +"ni" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"nk" = ( +/obj/structure/railing, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"nq" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/electrical) +"nv" = ( +/obj/machinery/suit_storage_unit/security, +/obj/structure/cable{ + icon_state = "4-9" + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"nx" = ( +/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/medical/glass{ + name = "Medbay"; + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"nG" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth, +/obj/item/bedsheet/medical, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"nH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"nJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"nK" = ( +/turf/closed/wall/r_wall, +/area/ship/maintenance/fore) +"nL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"nM" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/obj/effect/turf_decal/spline/plain/opaque/blue, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"nO" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/random, +/obj/structure/railing/modern/end{ + layer = 4.2 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"nR" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"nS" = ( +/obj/structure/ore_box, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"nU" = ( +/obj/structure/table/wood/poker, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_y = 1; + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_y = 5 + }, +/obj/item/lighter/enigma, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"nW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"oa" = ( +/obj/docking_port{ + name = "Mimir Docking-Port"; + dwidth = 39; + height = 38; + width = 46; + dheight = 34 + }, +/turf/template_noop, +/area/template_noop) +"ob" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/turf_decal/spline/plain/opaque/blue, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"od" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/industrial/traffic/corner{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 10 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"oe" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/flora/ausbushes/leafybush, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"oi" = ( +/obj/structure/girder/reinforced, +/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/grid, +/area/ship/maintenance/starboard) +"oj" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"os" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/traffic, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"oF" = ( +/obj/structure/holohoop, +/turf/open/floor/noslip, +/area/ship/security/prison) +"oG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"oI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"oK" = ( +/obj/machinery/computer/camera_advanced{ + dir = 1 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"oM" = ( +/obj/structure/closet{ + name = "Prisoner Locker"; + desc = "Basic items for prisoners." + }, +/obj/item/clothing/head/helmet/space/plasmaman/prisoner, +/obj/item/clothing/under/plasmaman/prisoner, +/obj/item/clothing/under/plasmaman/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/gloves/color/orange, +/obj/item/taperecorder, +/obj/item/cane, +/obj/item/laser_pointer/purple, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/clothing/under/plasmaman/prisoner/skirt, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"oR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"oS" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"oU" = ( +/obj/structure/chair/greyscale, +/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/ship/security/prison) +"oX" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/ship/crew/hydroponics) +"oY" = ( +/obj/structure/railing, +/obj/item/trash/boritos, +/obj/item/trash/can, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/robot_debris/limb, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"pc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-9" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/techfloor/orange/corner, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/caution{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"pe" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"ph" = ( +/turf/closed/wall, +/area/ship/medical) +"pk" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/electrical) +"pw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/full, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + name = "Waste Exhaust" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"pA" = ( +/obj/item/radio/intercom/wideband/directional/west, +/obj/effect/turf_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/steeldecal/steel_decals9, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"pG" = ( +/obj/structure/bookcase/random/fiction, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"pL" = ( +/turf/closed/wall, +/area/ship/crew/dorm/dormthree) +"pO" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"pP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security/glass/seclock{ + name = "Security Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"pT" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-9" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"pV" = ( +/obj/structure/railing, +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"pY" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"qb" = ( +/obj/machinery/light/directional/south, +/obj/structure/bookcase/random/nonfiction, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"qc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch/seclock{ + name = "Atmospherics" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"qd" = ( +/obj/structure/rack, +/obj/item/hatchet, +/obj/item/hatchet, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/cable{ + icon_state = "1-9" + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"qe" = ( +/obj/structure/closet/secure_closet/freezer{ + name = "Refrigerator"; + desc = "A refrigerated cabinet for food." + }, +/obj/effect/turf_decal/siding/wideplating/light/end{ + dir = 4 + }, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/milk, +/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/reagent_containers/food/condiment/soymilk, +/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/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/snacks/tofu, +/obj/item/reagent_containers/food/snacks/tofu, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"qh" = ( +/obj/machinery/hydroponics/constructable{ + pixel_y = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"qj" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"ql" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"qm" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"qn" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/effect/decal/cleanable/oil, +/obj/machinery/door/poddoor/shutters{ + id = "port_eng"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"qr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "retrieval"; + pixel_x = -11 + }, +/obj/effect/turf_decal/industrial/traffic{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"qw" = ( +/obj/machinery/button/flasher{ + dir = 4; + pixel_x = -25; + id = "quickpoint_flashers"; + pixel_y = -1 + }, +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/machinery/button/door{ + name = "Quickpoint Shutters"; + id = "quickpoint_shut"; + dir = 4; + pixel_y = 8; + pixel_x = -27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"qy" = ( +/turf/closed/wall, +/area/ship/security/prison) +"qB" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"qF" = ( +/obj/machinery/computer/helm{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"qH" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/nanotrasen, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"qI" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"qN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/conveyor_switch/oneway{ + id = "prison_scrap" + }, +/obj/item/multitool{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"qO" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"qR" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"qS" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"qW" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/wood, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"rc" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/storage/belt/security, +/obj/item/holosign_creator/security, +/obj/item/assembly/flash, +/obj/item/reagent_containers/spray/pepper, +/obj/item/clothing/glasses/hud/security/sunglasses, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/clothing/head/helmet/space/plasmaman/security, +/obj/item/clothing/under/plasmaman/security, +/obj/item/clothing/under/plasmaman/security/skirt, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plasteel, +/area/ship/security) +"rn" = ( +/obj/machinery/door/airlock/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/dorm/dormthree) +"rq" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/end{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"ru" = ( +/obj/structure/cable{ + icon_state = "5-9" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"rv" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"rC" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/wrapping, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"rG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch/seclock{ + name = "Port Maintenance"; + 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/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"rI" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/greenglow, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"rK" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + piping_layer = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/full, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"rN" = ( +/obj/structure/windoor_assembly{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"rS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"rT" = ( +/obj/machinery/camera/autoname, +/obj/item/kirbyplants/photosynthetic, +/obj/machinery/light_switch{ + pixel_y = 24; + pixel_x = -9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"rV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"rW" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"sa" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"sd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"sg" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"si" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/autolathe, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"ss" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"sx" = ( +/obj/machinery/light_switch{ + pixel_y = 25; + pixel_x = 6 + }, +/turf/open/floor/plating/rust, +/area/ship/crew/canteen) +"sA" = ( +/obj/structure/closet/crate, +/obj/machinery/door/window{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"sH" = ( +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/restraints/legcuffs/bola/energy, +/obj/item/restraints/legcuffs/bola/energy, +/obj/item/restraints/legcuffs/bola/energy, +/obj/item/restraints/legcuffs/bola/energy, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/prisoner, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/seccarts, +/obj/item/storage/box/teargas, +/obj/item/storage/box/zipties, +/obj/structure/closet/secure_closet/empty/warden{ + name = "\proper supply locker" + }, +/obj/item/storage/box/flashes, +/obj/structure/cable{ + icon_state = "4-5" + }, +/obj/structure/cable{ + icon_state = "2-5" + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"sM" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"sO" = ( +/obj/machinery/computer/camera_advanced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"sQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "6-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"sR" = ( +/obj/structure/table/wood/poker, +/obj/item/flashlight/lamp/bananalamp{ + pixel_y = 7 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"sT" = ( +/obj/item/bikehorn/rubberducky, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/rack, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"sU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"td" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"te" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/traffic, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"tg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch/seclock{ + name = "Atmospherics" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"tm" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/turf_decal/spline/fancy/wood, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"tn" = ( +/obj/structure/window/reinforced/spawner, +/obj/machinery/shower{ + pixel_y = 12 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"tq" = ( +/obj/item/kirbyplants/fullysynthetic, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"tw" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"tC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"tD" = ( +/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/command/glass/seclock{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"tE" = ( +/turf/closed/wall/r_wall, +/area/ship/storage/eva) +"tK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"tM" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/structure/cable{ + icon_state = "6-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/ship/security) +"tO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/security/armory) +"tP" = ( +/obj/structure/falsewall, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"tQ" = ( +/turf/closed/wall/r_wall, +/area/ship/maintenance/starboard) +"tV" = ( +/obj/item/skub, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"tW" = ( +/obj/machinery/holopad/emergency, +/obj/structure/railing{ + layer = 3.1 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"tY" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/techfloor/orange{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"tZ" = ( +/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/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"uh" = ( +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/storage/crayons, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"uk" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/storage/belt/security, +/obj/item/holosign_creator/security, +/obj/item/assembly/flash, +/obj/item/reagent_containers/spray/pepper, +/obj/item/clothing/glasses/hud/security/sunglasses, +/obj/machinery/light/directional/south, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/clothing/head/helmet/space/plasmaman/security, +/obj/item/clothing/under/plasmaman/security, +/obj/item/clothing/under/plasmaman/security/skirt, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plasteel, +/area/ship/security) +"us" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"ut" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_airlock_shut"; + name = "Mining Airlock Shutters"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"uw" = ( +/turf/closed/wall/r_wall, +/area/ship/maintenance/port) +"uz" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/item/bikehorn/rubberducky/plasticducky{ + pixel_y = 8 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/white, +/area/ship/crew/dorm/dormthree) +"uI" = ( +/obj/structure/closet{ + name = "Prisoner Locker"; + desc = "Basic items for prisoners." + }, +/obj/item/clothing/head/helmet/space/plasmaman/prisoner, +/obj/item/clothing/under/plasmaman/prisoner, +/obj/item/clothing/under/plasmaman/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/gloves/color/orange, +/obj/item/taperecorder, +/obj/item/cane, +/obj/item/laser_pointer/purple, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/clothing/under/plasmaman/prisoner/skirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"uK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_shut"; + name = "Mining Bay Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/storage/eva) +"uO" = ( +/obj/structure/closet/firecloset/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"uQ" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"uZ" = ( +/obj/effect/turf_decal/floordetail/traction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"vg" = ( +/obj/machinery/airalarm/directional/north, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"vj" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"vl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"vm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"vo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_nose_shut" + }, +/turf/open/floor/plating, +/area/ship/bridge) +"vq" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-9" + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"vs" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"vw" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"vE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"vG" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"vS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"wa" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 14; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wideplating/light/corner{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"we" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"wj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"wk" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 28 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"wm" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/loading, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"wn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"wt" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"wv" = ( +/turf/closed/wall/r_wall, +/area/ship/bridge) +"wx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/paper/fluff/mimir/recycler, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"wy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security/glass/wardenlock{ + name = "Warden's Quarters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"wD" = ( +/obj/structure/chair/greyscale{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"wE" = ( +/obj/machinery/cryopod, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"wF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"wI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"wP" = ( +/obj/structure/table/wood/reinforced, +/obj/structure/bedsheetbin, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"wR" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"wT" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"wW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "midpoint_shut"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-6" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"wY" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/ship/crew/canteen/kitchen) +"xb" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/rice{ + pixel_y = 10; + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"xc" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"xg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"xi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/road/stop{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"xq" = ( +/obj/structure/table, +/obj/machinery/door/window, +/turf/open/floor/plasteel, +/area/ship/crew/hydroponics) +"xs" = ( +/obj/structure/cable{ + icon_state = "2-9" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"xv" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"xx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/industrial/traffic{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"xI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"xM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"xP" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/ship/crew/canteen) +"xR" = ( +/obj/machinery/holopad/emergency, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"xT" = ( +/obj/machinery/computer/cargo/express{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"xX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/item/bikehorn/rubberducky, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"yc" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"ye" = ( +/obj/structure/closet/crate, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/storage/box/drinkingglasses, +/obj/item/clothing/suit/apron/chef, +/obj/item/clothing/head/chefhat, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"yi" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"yj" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"ys" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/dorm) +"yu" = ( +/obj/item/clothing/mask/gas/monkeymask, +/obj/item/clothing/suit/monkeysuit, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"yw" = ( +/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"yy" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/railing, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"yz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/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 = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light_switch{ + pixel_y = 25; + pixel_x = 6 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange/corner, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"yC" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_airlock_shut"; + name = "Mining Airlock Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/storage/eva) +"yG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_nose_shut"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/bridge) +"yI" = ( +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"yN" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/item/toy/plush/among, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"yP" = ( +/obj/item/soap/nanotrasen{ + pixel_y = 2; + pixel_x = 4 + }, +/obj/machinery/door/window{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/dorm/dormthree) +"yR" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/door/poddoor/shutters{ + id = "port_eng"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/engine) +"yU" = ( +/obj/structure/cable{ + icon_state = "2-5" + }, +/turf/open/floor/plating/rust, +/area/ship/crew/canteen) +"yV" = ( +/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 = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/stand_clear, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"yY" = ( +/obj/machinery/hydroponics/constructable{ + pixel_y = 16 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"za" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"zd" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quickpoint_shut"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ship/hallway/central) +"zf" = ( +/obj/item/clothing/glasses/hud/security/sunglasses, +/obj/structure/closet/secure_closet/brig_phys, +/obj/item/holosign_creator/medical, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/clothing/under/plasmaman/security/secmed, +/obj/item/clothing/under/plasmaman/security/secmed/skirt, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"zn" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/steeldecal/steel_decals_central7{ + pixel_y = 2; + pixel_x = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 9; + pixel_y = 8; + pixel_x = -1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 9; + pixel_y = 8; + pixel_x = 6 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central4{ + dir = 4; + pixel_y = 1; + pixel_x = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/dorm/dormthree) +"zq" = ( +/obj/effect/decal/cleanable/food/flour, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"zs" = ( +/obj/structure/table/wood/bar, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/food/drinks/modglass/large, +/obj/item/reagent_containers/food/drinks/modglass/large, +/obj/item/reagent_containers/food/drinks/modglass/large, +/obj/item/reagent_containers/food/drinks/modglass, +/obj/item/reagent_containers/food/drinks/modglass, +/obj/item/reagent_containers/food/drinks/modglass, +/obj/item/reagent_containers/food/drinks/modglass/small, +/obj/item/reagent_containers/food/drinks/modglass/small, +/obj/item/reagent_containers/food/drinks/modglass/small, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"zt" = ( +/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/plasteel, +/area/ship/security/prison) +"zv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine/hull, +/area/ship/external) +"zx" = ( +/turf/closed/wall, +/area/ship/crew/canteen) +"zB" = ( +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/ship/crew/dorm/dormfive) +"zE" = ( +/obj/machinery/door/airlock{ + name = "Restrooms" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/ship/crew/toilet) +"zH" = ( +/obj/structure/statue/sandstone/venus, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"zJ" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/red, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"zL" = ( +/obj/structure/chair/greyscale, +/obj/item/reagent_containers/food/snacks/sosjerky/healthy, +/obj/structure/railing/modern{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/maintenance/starboard) +"Ad" = ( +/turf/closed/wall, +/area/ship/crew/dorm/dormfive) +"Ae" = ( +/obj/machinery/light/broken/directional/east, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Af" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ship/security/armory) +"Ah" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Am" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ship/security) +"As" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Au" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"AD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"AE" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"AG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"AH" = ( +/obj/structure/table, +/obj/item/toy/figure/chef, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 10; + pixel_x = -7 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"AI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"AM" = ( +/obj/structure/cable{ + icon_state = "6-9" + }, +/obj/machinery/door/airlock/security/glass/wardenlock{ + name = "Warden's Office" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "8-9" + }, +/obj/structure/cable{ + icon_state = "4-9" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"AP" = ( +/obj/structure/closet/wall/blue{ + dir = 4; + pixel_x = -30; + name = "Space Suits"; + desc = "Contains supplies for space walking." + }, +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 4 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/space/eva{ + pixel_x = 5 + }, +/obj/item/clothing/head/helmet/space/eva{ + pixel_y = -7; + pixel_x = -7 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"AQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/stairs{ + icon_state = "stairs-old"; + dir = 8 + }, +/area/ship/crew/dorm/dormthree) +"AV" = ( +/turf/closed/wall/r_wall, +/area/ship/hallway/central) +"Ba" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-9" + }, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"Be" = ( +/obj/machinery/flasher{ + pixel_y = -24; + id = "quickpoint_flashers" + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/effect/turf_decal/road/stop{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "5-9" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Bi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/door/airlock/security/glass/seclock{ + name = "Security Office" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Bq" = ( +/obj/item/melee/baseball_bat, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Br" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/vending_refill/cigarette, +/obj/item/storage/box/stockparts/basic, +/obj/item/stack/circuit_stack, +/obj/structure/railing, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Bs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Bt" = ( +/turf/open/floor/engine/hull, +/area/ship/external) +"BE" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "0-9" + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"BF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"BL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"BR" = ( +/obj/structure/window/reinforced/spawner, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/conveyor/inverted{ + id = "prison_scrap"; + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"BV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/rack, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"BW" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/toilet{ + dir = 8; + pixel_y = 11; + pixel_x = 5 + }, +/turf/open/floor/plastic, +/area/ship/crew/dorm/dormthree) +"Cb" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-10" + }, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Cc" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/ship/crew/dorm/dormfive) +"Cd" = ( +/obj/structure/chair/greyscale{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/ship/security) +"Cf" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 4; + id = "mimir_blast_holo"; + locked = 1 + }, +/obj/machinery/door/poddoor{ + id = "mimir_sec_blasts" + }, +/obj/docking_port/mobile{ + callTime = 250; + dir = 2; + launch_status = 0; + name = "NT Mimir"; + port_direction = 8; + preferred_direction = 4 + }, +/obj/structure/cable{ + icon_state = "0-6" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"Cg" = ( +/obj/item/banner/security, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Ch" = ( +/obj/structure/cable{ + icon_state = "6-9" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Cl" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Co" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/item/reagent_containers/food/snacks/donut/jelly/plain, +/obj/item/reagent_containers/food/snacks/donut/jelly/matcha, +/obj/item/reagent_containers/food/snacks/donut/jelly/choco, +/obj/item/reagent_containers/food/snacks/donut/jelly/caramel, +/obj/item/reagent_containers/food/snacks/donut/jelly/berry, +/obj/item/reagent_containers/food/snacks/donut/jelly/apple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Cp" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"Cv" = ( +/obj/item/circuitboard/machine/deep_fryer, +/turf/open/floor/plating/rust, +/area/ship/maintenance/starboard) +"Cw" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/item/bedsheet/random, +/obj/structure/curtain/cloth/grey, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -9 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"Cx" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"CH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"CJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/mineral/processing_unit_console{ + machinedir = 6; + pixel_y = 26 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"CN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/machinery/conveyor/inverted{ + id = "retrieval"; + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"CP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"CQ" = ( +/obj/structure/table, +/obj/item/toy/beach_ball/holoball, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"CR" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 13; + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 2 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = -1; + pixel_x = -7 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"CT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/security) +"Dd" = ( +/obj/structure/closet, +/obj/item/clothing/suit/space/hardsuit/carp/old, +/obj/item/clothing/mask/gas/explorer/old, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Dg" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/ship/crew/canteen) +"Dh" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/donkpockets, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Dm" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 7; + pixel_x = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/structure/table, +/obj/item/storage/box/stockparts/basic, +/obj/item/holosign_creator/atmos, +/obj/item/storage/box/lights/tubes, +/obj/item/multitool, +/obj/structure/cable/yellow{ + icon_state = "4-10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"Dq" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/siding/wideplating/light/end{ + dir = 8 + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"Dr" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Ds" = ( +/obj/structure/cable{ + icon_state = "6-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Dv" = ( +/obj/effect/turf_decal/number/seven, +/turf/closed/wall/r_wall, +/area/ship/maintenance/starboard) +"Dy" = ( +/obj/structure/table/wood/reinforced, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/obj/item/paper/fluff/mimir/jacket, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"DA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall, +/area/ship/storage/eva) +"DB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"DE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"DF" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"DH" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"DM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"DO" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"DQ" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"DR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"DY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Ee" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/effect/turf_decal/road/stop{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Ef" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"Eh" = ( +/turf/open/floor/plating/rust, +/area/ship/crew/canteen) +"Er" = ( +/mob/living/simple_animal/cow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"Ew" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Ey" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun, +/obj/structure/cable{ + icon_state = "8-9" + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"ED" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"EK" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"EO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"EQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_airlock_shut"; + name = "Mining Airlock Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/storage/eva) +"ET" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/closet/secure_closet{ + name = "Anesthetics Closet" + }, +/obj/item/tank/internals/anesthetic, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"EU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"EV" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/dorm/dormfour) +"EX" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"EY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Fa" = ( +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/twentythreeXtwentythree, +/obj/structure/closet/crate/trashcart, +/obj/item/paint/anycolor, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/sprayweb, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"Fg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/wideplating/light, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"Fh" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 1; + pixel_y = -23; + id = "starboard_eng"; + name = "Engine Shutters"; + pixel_x = -6 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Fl" = ( +/obj/machinery/atmospherics/components/binary/pump/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/full, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Fn" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"Ft" = ( +/obj/machinery/vending/coffee, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + icon_state = "5-9" + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Fy" = ( +/obj/structure/closet, +/obj/item/seeds/wheat, +/obj/item/seeds/wheat, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/tomato, +/obj/item/seeds/tomato, +/obj/item/seeds/tobacco, +/obj/item/seeds/tobacco, +/obj/item/seeds/sugarcane, +/obj/item/seeds/sugarcane, +/obj/item/seeds/soya, +/obj/item/seeds/soya, +/obj/item/seeds/potato, +/obj/item/seeds/potato, +/obj/item/seeds/plump, +/obj/item/seeds/plump, +/obj/item/seeds/grass, +/obj/item/seeds/grass, +/obj/item/seeds/corn, +/obj/item/seeds/corn, +/obj/item/seeds/coffee, +/obj/item/seeds/coffee, +/obj/item/seeds/cocoapod, +/obj/item/seeds/cocoapod, +/obj/item/seeds/chili, +/obj/item/seeds/chili, +/obj/item/seeds/cherry, +/obj/item/seeds/cherry, +/obj/item/seeds/chanter, +/obj/item/seeds/chanter, +/obj/item/seeds/carrot, +/obj/item/seeds/carrot, +/obj/item/seeds/banana, +/obj/item/seeds/banana, +/obj/item/seeds/berry, +/obj/item/seeds/berry, +/obj/item/seeds/apple, +/obj/item/seeds/apple, +/obj/item/seeds/orange, +/obj/item/seeds/orange, +/obj/item/seeds/tower, +/obj/item/seeds/tower, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"Fz" = ( +/obj/item/book/manual/chef_recipes, +/obj/structure/table, +/obj/item/book/granter/crafting_recipe/cooking_sweets_101, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"FB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/ship/crew/canteen/kitchen) +"FC" = ( +/obj/structure/railing/modern/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"FF" = ( +/turf/closed/wall, +/area/ship/maintenance/starboard) +"FH" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Mining"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_shut"; + name = "Mining Bay Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/storage/eva) +"FI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"FK" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"FL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch/seclock{ + name = "Atmospherics" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"FT" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"FU" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"FW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/security) +"FX" = ( +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"Ga" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"Gd" = ( +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Gj" = ( +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/falsewall, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"Gk" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-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/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Gn" = ( +/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/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Gq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/spline/plain/opaque/blue, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Gt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch/seclock{ + name = "Port Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"Gy" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"GA" = ( +/obj/machinery/light/directional/west, +/obj/machinery/door/window/brigdoor/security/holding, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"GC" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/cable{ + icon_state = "6-8" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"GH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"GJ" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"GP" = ( +/mob/living/simple_animal/bot/secbot/beepsky, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"GQ" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 10 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"GS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"GV" = ( +/obj/machinery/light/directional/west, +/obj/structure/closet/cardboard, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"GX" = ( +/obj/structure/chair/greyscale, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"GY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"GZ" = ( +/obj/effect/spawner/lootdrop/maintenance/four, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Ha" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Hh" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering) +"Hl" = ( +/obj/machinery/hydroponics/constructable{ + pixel_y = 16 + }, +/obj/item/storage/backpack/satchel/flat/mimir_refill, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"Hm" = ( +/turf/closed/wall, +/area/ship/crew/dorm) +"Hr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch/seclock{ + name = "Port Maintenance"; + dir = 4 + }, +/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/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"Ht" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/storage/box/rubbershot, +/obj/item/clothing/suit/armor/riot, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"HD" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"HF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/borderfloor/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"HH" = ( +/obj/item/storage/box/syndie_kit/cutouts, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"HI" = ( +/obj/item/storage/fancy/cigarettes/cigpack_mindbreaker, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"HM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"HN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"HO" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"HP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"HT" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"HZ" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"Ib" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"Id" = ( +/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 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Ig" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quickpoint_shut"; + dir = 4 + }, +/obj/machinery/door/airlock/security/glass/seclock{ + name = "Quickpoint Airlock"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "6-10" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Ik" = ( +/obj/item/storage/backpack/satchel/flat/mimir_tech, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"Is" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"Iu" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Iw" = ( +/obj/effect/turf_decal/floordetail/traction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"Iy" = ( +/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/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"IF" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"IG" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/effect/turf_decal/spline/fancy/wood, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"IH" = ( +/turf/closed/wall/rust, +/area/ship/maintenance/starboard) +"IL" = ( +/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/cobweb/cobweb2, +/obj/effect/turf_decal/techfloor/orange{ + dir = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"IM" = ( +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 4; + pixel_y = 7; + pixel_x = -23; + id = "mimir_mining_shut"; + name = "Mining Bay Shutters"; + req_one_access = list(1,63) + }, +/obj/machinery/button/door{ + dir = 4; + pixel_y = -5; + pixel_x = -23; + id = "mimir_mining_airlock_shut"; + name = "Mining Airlock Shutters"; + req_one_access = list(1,63) + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"IP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/hatch, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"IX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"IY" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 8; + id = "mimir_blast_holo"; + locked = 1 + }, +/obj/machinery/door/poddoor{ + id = "mimir_sec_blasts" + }, +/obj/structure/cable{ + icon_state = "0-10" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"Jc" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"Jd" = ( +/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 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Jf" = ( +/obj/structure/chair/greyscale{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Jj" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Jm" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + piping_layer = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/full, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Jn" = ( +/turf/closed/wall, +/area/ship/crew/toilet) +"Jq" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/item/clothing/gloves/boxing/green, +/obj/item/clothing/under/shorts/green, +/turf/open/floor/plating/rust, +/area/ship/crew/canteen) +"Jr" = ( +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Jt" = ( +/obj/structure/fermenting_barrel, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"Jw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Jy" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Jz" = ( +/obj/structure/table/wood/reinforced, +/obj/item/flashlight/lamp/green{ + pixel_y = 12; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"JA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"JD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"JG" = ( +/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/ash/snappop_phoenix, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"JI" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -23; + pixel_x = -6 + }, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"JJ" = ( +/obj/structure/chair/greyscale, +/obj/item/reagent_containers/food/snacks/nachos, +/obj/structure/railing/modern{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/maintenance/starboard) +"JN" = ( +/obj/structure/table, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/item/toy/figure/warden{ + pixel_x = 1 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -5 + }, +/obj/item/lighter{ + pixel_x = 11 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -9 + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"JV" = ( +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 25 + }, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"JZ" = ( +/obj/structure/chair/greyscale, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Kg" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Kh" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"Kk" = ( +/obj/machinery/mineral/unloading_machine{ + input_dir = 2; + output_dir = 1 + }, +/obj/machinery/conveyor{ + id = "prison_scrap"; + dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"Km" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Kr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"Kv" = ( +/obj/structure/cable{ + icon_state = "4-9" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Kw" = ( +/obj/structure/railing, +/obj/item/trash/popcorn, +/obj/item/trash/waffles, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"KA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/crew/dorm/dormthree) +"KC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_nose_shut"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/bridge) +"KF" = ( +/turf/open/floor/noslip, +/area/ship/security/prison) +"KH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"KI" = ( +/obj/machinery/conveyor/inverted{ + id = "prison_scrap"; + dir = 1 + }, +/obj/machinery/mineral/stacking_machine{ + output_dir = 2; + input_dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"KM" = ( +/obj/structure/closet/crate, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"KP" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"KQ" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"KU" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"KV" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ + dir = 1; + pixel_x = 27 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ + dir = 1; + pixel_x = 25 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/closet/firecloset/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 8 + }, +/obj/structure/railing{ + layer = 3.1 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"KZ" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"La" = ( +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"Lb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/railing/modern/corner{ + layer = 4.2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"Ld" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Lf" = ( +/obj/structure/table, +/obj/item/toy/figure/warden, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Lj" = ( +/obj/structure/cable{ + icon_state = "6-9" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"Lk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/security/armory) +"Ll" = ( +/obj/machinery/vending/snack, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Lr" = ( +/obj/structure/table/wood/poker, +/obj/structure/cable{ + icon_state = "6-9" + }, +/obj/item/storage/fancy/cigarettes/cigpack_candy, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"Ls" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"Lt" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/ship/engineering) +"Lu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Lv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall, +/area/ship/crew/dorm/dormfive) +"LA" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/engine/hull, +/area/ship/external) +"LB" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"LC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"LE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"LI" = ( +/obj/structure/table, +/obj/machinery/door/window, +/obj/item/storage/box/cups, +/turf/open/floor/plasteel, +/area/ship/crew/canteen/kitchen) +"LJ" = ( +/obj/machinery/conveyor/inverted{ + id = "prison_scrap"; + dir = 5 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"LN" = ( +/obj/effect/turf_decal/number/zero, +/turf/closed/wall/r_wall, +/area/ship/maintenance/starboard) +"LQ" = ( +/obj/structure/closet, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/storage/bag/plants, +/obj/item/storage/bag/plants, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"LX" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"LZ" = ( +/obj/structure/table, +/obj/item/reagent_containers/hypospray/medipen/survival{ + pixel_y = 10 + }, +/obj/item/reagent_containers/hypospray/medipen/survival{ + pixel_y = 7 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Me" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"Mf" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"Mm" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/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 = "0-8" + }, +/obj/effect/turf_decal/industrial/traffic, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"Mq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/holopad/emergency, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"Ms" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/item/flashlight/lamp{ + pixel_y = 13 + }, +/obj/item/book/manual/srmlore, +/obj/item/disk/holodisk/roumain, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"Mv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Mx" = ( +/obj/structure/fermenting_barrel, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"MC" = ( +/obj/item/toy/plush/spider, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"ME" = ( +/mob/living/simple_animal/chicken, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"MG" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_airlock_shut"; + name = "Mining Airlock Shutters"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"MK" = ( +/obj/structure/cable{ + icon_state = "6-8" + }, +/turf/open/floor/carpet/royalblack, +/area/ship/crew/dorm/dormfive) +"ML" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"MS" = ( +/obj/structure/chair/greyscale{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"MU" = ( +/obj/structure/table, +/obj/item/instrument/piano_synth, +/obj/effect/turf_decal/spline/plain/opaque/blue, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Nd" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Nf" = ( +/obj/structure/mirror{ + pixel_x = -25 + }, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -13 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"Nh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/ship/crew/hydroponics) +"Ni" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/effect/turf_decal/industrial/traffic/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"Nk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"Nl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"No" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Ns" = ( +/obj/item/gun/energy/e_gun/hos, +/obj/item/clothing/gloves/krav_maga/sec, +/obj/item/door_remote/head_of_security, +/obj/item/clothing/mask/gas/sechailer/swat, +/obj/structure/closet/secure_closet/empty/warden, +/obj/item/holosign_creator/security, +/obj/item/assembly/flash, +/obj/item/grenade/flashbang/cluster, +/obj/item/flashlight/seclite, +/obj/item/reagent_containers/spray/pepper, +/obj/item/clothing/glasses/hud/security/sunglasses, +/obj/item/clothing/suit/armor/vest/security/warden/alt/nt, +/obj/item/clothing/under/plasmaman/security/warden, +/obj/item/clothing/under/plasmaman/security/warden/skirt, +/obj/item/clothing/under/rank/security/warden, +/obj/item/clothing/under/rank/security/warden/skirt, +/obj/item/clothing/under/rank/security/warden/nt, +/obj/item/clothing/under/rank/security/warden/nt/skirt, +/obj/item/clothing/head/warden/drill, +/obj/item/clothing/head/warden/red, +/obj/item/clothing/head/warden/cowboy, +/obj/item/clothing/head/warden, +/obj/item/clothing/head/beret/sec/warden, +/obj/item/pda/warden, +/obj/item/storage/belt/security, +/obj/item/megaphone/sec, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/effect/turf_decal/siding/red/end{ + dir = 4 + }, +/obj/item/storage/lockbox/medal/sec, +/obj/item/storage/box/seccarts, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"Nv" = ( +/obj/effect/decal/cleanable/food/egg_smudge, +/obj/effect/turf_decal/siding/wideplating/light/corner, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"Ny" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -10 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"NB" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"NC" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-5" + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"NE" = ( +/obj/structure/toilet/secret/mimir{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"NL" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"NN" = ( +/turf/open/floor/plasteel, +/area/ship/security/prison) +"NO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"NQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"NW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"Oa" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 1; + name = "Engine Shutters"; + pixel_x = -8; + id = "port_eng"; + pixel_y = -24 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"Oc" = ( +/obj/structure/rack, +/obj/item/toy/eightball, +/obj/item/toy/cards/deck/cas, +/obj/item/toy/cards/deck/cas/black, +/obj/item/camera, +/obj/item/camera_film, +/obj/item/decal_painter, +/obj/item/floor_painter, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Og" = ( +/obj/structure/chair/greyscale, +/obj/item/reagent_containers/food/snacks/no_raisin, +/obj/structure/railing/modern{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/maintenance/starboard) +"Oh" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Oi" = ( +/obj/structure/closet{ + name = "Prisoner Locker"; + desc = "Basic items for prisoners." + }, +/obj/item/clothing/head/helmet/space/plasmaman/prisoner, +/obj/item/clothing/under/plasmaman/prisoner, +/obj/item/clothing/under/plasmaman/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/gloves/color/orange, +/obj/item/taperecorder, +/obj/item/cane, +/obj/item/laser_pointer/purple, +/obj/item/tank/internals/plasmaman/belt, +/obj/item/clothing/under/plasmaman/prisoner/skirt, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"Oj" = ( +/obj/machinery/advanced_airlock_controller{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Oq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -13; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -25 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plastic, +/area/ship/crew/dorm/dormthree) +"Ov" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"Ow" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/canteen/kitchen) +"OA" = ( +/obj/structure/bookcase/random/religion, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"OH" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -13 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"OJ" = ( +/obj/machinery/button/flasher{ + dir = 4; + pixel_x = -25; + id = "midpoint_flashers"; + pixel_y = -2 + }, +/obj/structure/cable{ + icon_state = "2-5" + }, +/obj/machinery/button/door{ + name = "Midpoint Shutters"; + id = "midpoint_shut"; + dir = 4; + pixel_y = 9; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/caution{ + dir = 1 + }, +/obj/item/paper/fluff/mimir/recycler, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"OL" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"OZ" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"Pc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Pe" = ( +/obj/structure/chair/greyscale{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Pf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quickpoint_shut" + }, +/obj/machinery/door/airlock/security/glass/seclock{ + name = "Cryo Security Entrance" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/ship/crew/cryo) +"Pk" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"PC" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock_note_placer, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"PH" = ( +/obj/structure/table, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/obj/item/gps{ + pixel_x = 7 + }, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"PP" = ( +/obj/structure/chair/greyscale{ + 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 = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"PT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"Qc" = ( +/obj/machinery/vending/wallmed{ + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -16; + pixel_y = 4 + }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"Qe" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/cryo) +"Qf" = ( +/obj/effect/turf_decal/floordetail/traction, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"Qg" = ( +/obj/item/seeds/ambrosia, +/obj/item/seeds/ambrosia, +/turf/open/floor/plating/rust, +/area/ship/maintenance/starboard) +"Qh" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -27; + pixel_y = 10 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Qi" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Qm" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"Qx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/wideplating/light/corner{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"QE" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-5" + }, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"QO" = ( +/obj/effect/turf_decal/techfloor{ + dir = 5 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central3{ + dir = 4; + pixel_x = -15; + pixel_y = -15 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"QP" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/vending/cigarette, +/obj/item/toy/plush/among{ + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"QQ" = ( +/obj/structure/table_frame, +/obj/item/stack/tile/carpet/red/fifty, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"QS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"QT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Starboard Maintenance"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"QW" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange/corner, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"QX" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plasteel, +/area/ship/security) +"QZ" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/noslip, +/area/ship/security/prison) +"Ra" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Rb" = ( +/mob/living/simple_animal/chick, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/ship/crew/hydroponics) +"Rd" = ( +/obj/effect/turf_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/steeldecal/steel_decals9, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"Rm" = ( +/obj/structure/closet/firecloset/wall{ + pixel_y = 28 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Rr" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"Rv" = ( +/obj/structure/table, +/obj/item/areaeditor/shuttle{ + pixel_y = 9; + pixel_x = 2 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"Rz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"RC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"RG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"RO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_airlock_shut"; + name = "Mining Airlock Shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/storage/eva) +"RQ" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"RV" = ( +/obj/machinery/door/window, +/obj/item/soap/homemade, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"RW" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black/corner, +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ + dir = 8; + pixel_x = 27 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"RY" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Sb" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters{ + id = "starboard_eng"; + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"Sd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/food/plant_smudge, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"Sn" = ( +/obj/machinery/flasher/portable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-5" + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"Sp" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "midpoint_shut"; + dir = 4 + }, +/obj/machinery/door/airlock/security/glass/seclock{ + name = "Midpoint Airlock"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Ss" = ( +/obj/structure/closet, +/obj/item/clothing/suit/space/orange, +/obj/item/clothing/head/helmet/space/orange, +/obj/item/clothing/mask/gas/explorer/old, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/effect/turf_decal/siding/brown/end{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Sz" = ( +/obj/machinery/flasher/portable, +/obj/machinery/light/directional/west, +/obj/structure/cable{ + icon_state = "1-5" + }, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"SA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/security/armory) +"SB" = ( +/turf/closed/wall/rust, +/area/ship/crew/canteen) +"SG" = ( +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"SI" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/under/shorts/blue, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"SR" = ( +/obj/structure/table/wood/reinforced, +/obj/item/toy/cards/deck{ + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + 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 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"ST" = ( +/obj/structure/table/wood/reinforced, +/obj/item/toy/nuke{ + pixel_y = 12 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"SX" = ( +/obj/effect/turf_decal/siding/wideplating/light/corner, +/obj/effect/turf_decal/siding/wideplating/light/corner{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"Tc" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/caution{ + pixel_y = -1 + }, +/obj/effect/turf_decal/floordetail/traction{ + layer = 1 + }, +/obj/structure/cable{ + icon_state = "2-9" + }, +/obj/structure/cable{ + icon_state = "2-5" + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"Td" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_containers/food/drinks/beer/light, +/obj/item/reagent_containers/food/drinks/beer/light, +/obj/item/reagent_containers/food/drinks/beer/light, +/obj/item/reagent_containers/food/drinks/beer/light, +/obj/item/reagent_containers/food/drinks/beer/light, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/bottle/vermouth, +/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/food/drinks/bottle/patron, +/obj/item/reagent_containers/food/drinks/bottle/hooch, +/obj/item/reagent_containers/food/drinks/bottle/gin, +/obj/item/reagent_containers/food/drinks/bottle/cognac, +/obj/item/reagent_containers/food/drinks/bottle/bottleofnothing, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"Tf" = ( +/obj/structure/railing{ + layer = 3.1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"Ti" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Tj" = ( +/obj/machinery/hydroponics/constructable{ + pixel_y = 16 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/ship/crew/hydroponics) +"Tl" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"Tn" = ( +/turf/closed/wall/r_wall, +/area/ship/engineering/electrical) +"Tq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"TA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"TD" = ( +/turf/closed/wall/rust, +/area/ship/crew/dorm/dormfive) +"TG" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes, +/obj/item/lighter/greyscale{ + pixel_x = 6 + }, +/obj/item/storage/fancy/rollingpapers, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"TL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/light{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"TN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/warning/full, +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"TO" = ( +/obj/machinery/conveyor{ + id = "prison_scrap"; + dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"TP" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"TW" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"TY" = ( +/obj/machinery/light/dim/directional/south, +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_x = 8 + }, +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_y = 2; + pixel_x = -12 + }, +/obj/structure/table/wood/poker, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm/dormfive) +"TZ" = ( +/obj/machinery/light/directional/east, +/obj/item/kirbyplants/random, +/obj/structure/cable{ + icon_state = "8-10" + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Uc" = ( +/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/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/machinery/button/door{ + dir = 8; + id = "elec_shut_win"; + name = "window shutters"; + pixel_x = 27 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"Ug" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Um" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/structure/cable{ + icon_state = "0-9" + }, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Ut" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Uw" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = -22; + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormthree) +"Ux" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/orange, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"Uy" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"Uz" = ( +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/plasteel, +/area/ship/security) +"UA" = ( +/obj/structure/cable{ + icon_state = "8-10" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light/dim/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange/corner, +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"UH" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/caution{ + pixel_y = -1 + }, +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"UI" = ( +/obj/machinery/light/directional/west, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"UJ" = ( +/obj/structure/chair/greyscale, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"UL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"UN" = ( +/obj/structure/table/wood/reinforced, +/obj/item/storage/box/cups{ + pixel_y = 10; + pixel_x = -6 + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 10 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 9; + pixel_x = 5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 1; + pixel_x = 10 + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"UT" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -13 + }, +/obj/structure/mirror{ + pixel_x = -25 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/toilet) +"UX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/rack, +/obj/effect/turf_decal/techfloor/orange{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"Vh" = ( +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/neutral{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm/dormthree) +"Vp" = ( +/obj/structure/chair/greyscale{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Vq" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"Vr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"Vw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"VA" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/structure/curtain/cloth/grey, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"VD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"VG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"VI" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"VK" = ( +/obj/structure/table, +/obj/machinery/door/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/crew/canteen/kitchen) +"VP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"VU" = ( +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"VV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24; + pixel_x = -9 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm/dormtwo) +"Wb" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-9" + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Wf" = ( +/turf/closed/wall/r_wall, +/area/ship/engineering) +"Wg" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Wi" = ( +/obj/structure/statue/sandstone/assistant, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Wj" = ( +/obj/effect/decal/cleanable/food/salt, +/obj/effect/turf_decal/siding/wideplating/light, +/turf/open/floor/plastic, +/area/ship/crew/canteen/kitchen) +"Wl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Wo" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "mimir_mining_airlock_shut"; + name = "Mining Airlock Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/storage/eva) +"Wp" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-5" + }, +/obj/structure/cable{ + icon_state = "4-6" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/engine) +"Wq" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"Wr" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/obj/item/circuitboard/machine/pacman/super, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"Ws" = ( +/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/traffic, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"Wu" = ( +/obj/structure/chair/greyscale, +/obj/item/reagent_containers/food/snacks/cornchips, +/obj/structure/railing/modern{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/maintenance/starboard) +"Wv" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"Ww" = ( +/obj/structure/cable{ + icon_state = "4-9" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/ship/hallway/central) +"Wx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"Wz" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/button/door{ + dir = 4; + name = "Shutters"; + pixel_x = -25; + pixel_y = -9; + req_access = null; + req_access_txt = "56"; + id = "mimir_nose_shut" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"WB" = ( +/obj/item/pickaxe/rusted, +/obj/structure/rack, +/obj/item/gps/mining, +/obj/item/shovel/spoon, +/obj/item/storage/bag/ore, +/obj/item/mining_scanner, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"WF" = ( +/turf/closed/wall/r_wall, +/area/ship/engineering/engine) +"WH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ship/security/armory) +"WJ" = ( +/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/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"WP" = ( +/obj/structure/cable{ + icon_state = "8-10" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"WU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/light/dim/directional/east, +/obj/structure/rack, +/obj/item/flashlight/flare, +/obj/effect/turf_decal/techfloor/orange{ + dir = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Xd" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormfour) +"Xg" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Xh" = ( +/obj/effect/turf_decal/corner/opaque/orange/border{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/crew/dorm/dormthree) +"Xo" = ( +/obj/structure/table_frame, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"Xw" = ( +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"Xz" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + piping_layer = 2 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"XF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/techfloor/orange{ + dir = 9 + }, +/obj/effect/turf_decal/techfloor/orange/corner, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/starboard) +"XJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security) +"XQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"XT" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"XU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"XY" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/turf_decal/spline/plain/opaque/blue, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Ya" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Yb" = ( +/obj/structure/cable{ + icon_state = "2-5" + }, +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Yd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"Yl" = ( +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ship/crew/canteen) +"Ym" = ( +/mob/living/simple_animal/crab/Coffee, +/turf/open/floor/noslip, +/area/ship/security/prison) +"Yn" = ( +/obj/structure/table, +/obj/item/reagent_containers/pill/salbutamol{ + pixel_y = 12; + pixel_x = 10 + }, +/obj/item/reagent_containers/pill/salbutamol{ + pixel_y = 9; + pixel_x = 10 + }, +/obj/item/storage/pill_bottle/charcoal/less, +/obj/item/reagent_containers/pill/mannitol{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/item/reagent_containers/pill/mannitol{ + pixel_y = 11; + pixel_x = -7 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Yo" = ( +/obj/machinery/washing_machine, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Ys" = ( +/turf/open/floor/carpet/royalblack, +/area/ship/crew/dorm/dormfive) +"Yt" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/item/flashlight/lamp{ + pixel_y = 13 + }, +/obj/item/storage/book/bible/koran, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"Yu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/traffic{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/electrical) +"YB" = ( +/obj/effect/turf_decal/industrial/hatch, +/obj/machinery/door/window, +/turf/open/floor/plating, +/area/ship/engineering/electrical) +"YD" = ( +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"YE" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall, +/area/ship/engineering/atmospherics) +"YG" = ( +/obj/effect/turf_decal/borderfloor, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"YI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"YK" = ( +/turf/closed/wall/r_wall, +/area/ship/security/armory) +"YM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -23; + pixel_x = -6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"YN" = ( +/turf/open/floor/plating/rust, +/area/ship/maintenance/starboard) +"YR" = ( +/obj/item/stack/sheet/mineral/coal/ten, +/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/ship/maintenance/starboard) +"YT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"YW" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Za" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"Zb" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24; + pixel_x = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/sepia, +/area/ship/crew/hydroponics) +"Zg" = ( +/obj/structure/chair/greyscale, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Zh" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Zi" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/under/shorts/red, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Zk" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/item/stack/medical/bruise_pack/herb, +/obj/item/stack/medical/bruise_pack/herb, +/obj/item/stack/medical/ointment/herb, +/obj/item/stack/medical/ointment/herb, +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage/eva) +"Zm" = ( +/obj/effect/turf_decal/borderfloor, +/turf/open/floor/plasteel, +/area/ship/security/prison) +"Zw" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/item/trash/syndi_cakes, +/obj/item/trash/energybar, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"ZD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/random, +/obj/structure/railing/modern{ + layer = 4.2 + }, +/turf/open/floor/wood, +/area/ship/crew/dorm/dormthree) +"ZF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/pod/dark, +/area/ship/crew/cryo) +"ZP" = ( +/obj/machinery/light/dim/directional/west, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"ZQ" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + name = "Starboard Window Shutter"; + id = "starb_shut_win" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"ZS" = ( +/obj/item/stack/tile/light{ + amount = 50 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"ZZ" = ( +/obj/structure/table, +/obj/item/instrument/harmonica, +/obj/effect/turf_decal/spline/plain/opaque/blue{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ship/security/prison) + +(1,1,1) = {" +jY +jY +jY +jY +WF +OL +OL +OL +WF +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +Wf +wT +wT +wT +Wf +jY +jY +jY +jY +"} +(2,1,1) = {" +jY +jY +jY +jY +WF +kP +qn +yR +WF +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +Wf +eU +Sb +be +Wf +jY +jY +jY +jY +"} +(3,1,1) = {" +jY +jY +jY +jY +WF +hW +Wp +Oa +WF +WF +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +Wf +Wf +Dr +Lt +Fh +Wf +jY +jY +jY +jY +"} +(4,1,1) = {" +jY +jY +jY +WF +WF +UA +DQ +fZ +Wv +WF +jY +jY +jY +Bt +Bt +Bt +LA +ys +ys +ys +ys +ys +ys +jY +jY +jY +jY +jY +Wf +jj +NB +fV +pO +Wf +Wf +jY +jY +jY +"} +(5,1,1) = {" +jY +jY +jY +WF +dG +DF +LJ +KI +im +WF +jY +jY +jY +tE +Wo +ut +yC +ys +Ms +Ls +yc +Oi +ys +ka +ka +ka +ka +jY +Wf +WU +hC +hN +lj +EX +Wf +jY +jY +jY +"} +(6,1,1) = {" +jY +jY +jY +WF +CJ +rI +eg +qN +BR +WF +tE +tE +tE +tE +Oj +qj +nS +ys +io +qH +tK +oM +Hm +Jt +jQ +Mx +ka +tQ +Wf +Wf +Wf +Wf +JA +Ti +Wf +jY +jY +jY +"} +(7,1,1) = {" +jY +jY +jY +WF +yz +tY +jS +TO +TO +Kk +wm +Jy +KM +tE +EQ +MG +RO +ys +Yt +bT +rV +uI +Hm +gw +ME +IG +cK +YD +fk +YN +gv +Wf +JA +Hh +Wf +jY +jY +jY +"} +(8,1,1) = {" +jY +jY +uw +WF +rG +WF +WF +WF +WF +WF +WB +cr +ck +vm +Mv +Lu +rq +Hm +nb +dJ +VG +oM +Hm +dN +Er +qW +ma +YN +YN +YN +YN +Wf +jt +Wf +Wf +tQ +jY +jY +"} +(9,1,1) = {" +jY +jY +uw +ls +hx +zx +Td +zs +kv +zx +eR +Yb +xs +VD +RQ +ED +Dd +Hm +lX +Cw +VG +ew +Hm +Qm +Rb +tm +ma +gg +mI +Qg +IH +FF +WJ +rC +lr +iu +jY +jY +"} +(10,1,1) = {" +jY +jY +uw +RG +dQ +zx +Yl +Xw +SG +zx +Zk +LZ +Yn +gU +Iu +Kv +Ss +Hm +Hm +Hm +mE +Hm +Hm +jM +ky +oe +ma +ma +ma +ma +IH +oi +FI +iW +ln +iu +jY +jY +"} +(11,1,1) = {" +jY +jY +uw +cj +PT +zx +rN +Xo +QQ +zx +DA +hz +hz +hz +uK +FH +em +qy +Cx +GV +jd +Km +xq +yw +Kr +KH +ee +OH +LQ +ma +Vw +tP +FF +GS +Wu +iu +jY +jY +"} +(12,1,1) = {" +jY +jY +uw +Za +am +zx +sx +yU +XT +UL +ZP +iv +Eh +qy +AE +jd +kD +IM +jI +Au +bL +we +aE +nJ +Tj +mz +GC +nJ +Fy +ma +YR +IH +FF +eo +zL +iu +jY +jY +"} +(13,1,1) = {" +jY +jY +uw +QW +UX +zx +Cb +SI +xP +iL +iL +dt +Eh +qy +Yo +Ew +YG +QZ +KF +gR +ko +we +hg +nJ +yY +ma +mD +Lj +jK +ma +ig +Cv +FF +eo +Og +iu +jY +jY +"} +(14,1,1) = {" +jY +jY +uw +kb +zx +zx +iv +GJ +Eh +Bq +YW +NL +iv +qy +wR +nW +Zm +oF +Ym +KF +kQ +Wg +ma +Zb +Hl +qh +vG +IF +qd +ma +ig +fe +FF +eo +JJ +iu +jY +jY +"} +(15,1,1) = {" +jY +jY +uw +xI +zx +yy +iv +GJ +wF +iv +Eh +NL +iv +qy +TG +zt +YG +QZ +KF +gR +BL +Id +oX +Mf +CH +nL +RC +Sd +Ba +Nh +AD +YN +FF +eo +hH +ZQ +jY +jY +"} +(16,1,1) = {" +jY +uw +uw +Hr +zx +Br +iv +Jq +kY +Dg +Nd +Zi +iv +qy +Oc +HN +HF +dn +mO +FK +BF +qm +dV +FB +wY +wY +wY +jJ +FB +Ad +Lv +TD +Ad +vS +Cp +tQ +tQ +jY +"} +(17,1,1) = {" +uw +uw +pV +NW +SB +LB +iv +iv +iv +iv +Ae +iv +iv +qy +Jr +Ya +NN +oU +CQ +af +PP +YI +LI +Nv +df +df +df +kq +Dq +Ad +MK +Cc +Ad +IL +ah +GQ +tQ +tQ +"} +(18,1,1) = {" +uw +Fa +Kw +Wx +Jn +hi +hi +Jn +Jn +Jn +Jn +qy +qy +qy +dw +DR +xR +UJ +hm +MU +PP +td +VK +Fg +AH +xb +nR +zq +mU +Ad +gZ +Lr +Ad +Ad +AG +gf +aX +tQ +"} +(19,1,1) = {" +uw +lW +oY +nH +Jn +Nf +mf +UT +cn +UT +Jn +gA +Gd +nM +aQ +Nl +xM +Zg +uh +mk +Vp +DM +iy +SX +TL +fT +al +ak +jw +TD +gZ +nU +vq +Ad +Ad +Me +sT +LN +"} +(20,1,1) = {" +uw +Tl +Is +nH +Jn +DH +Nk +TP +Ny +Tq +zE +ni +QS +Gq +vE +HP +DY +GX +ZZ +Lf +MS +fq +dV +Wj +ye +Fz +CR +fA +mU +Ad +gZ +iI +Ik +TY +Ad +QT +FF +Dv +"} +(21,1,1) = {" +uw +ax +xg +VP +Jn +Jn +fL +Jn +Jn +fL +Jn +bo +Dh +XY +LE +dd +xv +xi +xi +uO +aV +HD +eq +Qx +pe +Rr +KQ +wa +qe +Ad +gZ +eF +hB +Ad +Ad +cw +HM +LN +"} +(22,1,1) = {" +uw +fY +xX +xI +hi +aS +OZ +Jn +RV +OZ +Jn +id +yN +ob +LE +TW +dY +wW +ij +AV +AV +AV +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ad +gZ +sR +Ad +Ad +XF +JG +Zw +LN +"} +(23,1,1) = {" +uw +hZ +hG +xI +Jn +tn +NE +Jn +tn +mV +Qe +Qe +Qe +Qe +Gk +OA +dY +FU +hS +GA +Kg +Qi +jX +Zh +Xz +Fl +wx +TN +hs +Ad +Ys +zB +TD +cF +fJ +qS +ii +tQ +"} +(24,1,1) = {" +uw +uw +nk +xI +Jn +Tn +Tn +Tn +Tn +Tn +Qe +tq +UI +Qe +bf +qb +dY +RY +bx +hk +cV +eN +jX +EY +AI +YT +Rz +YT +NQ +Ad +Ad +Ad +Ad +us +HT +NO +tQ +tQ +"} +(25,1,1) = {" +jY +uw +uw +sQ +gt +Tn +CN +hw +hw +sA +Qe +sM +JI +Qe +Ds +pG +dY +wW +Sp +AV +AV +AV +jX +EU +Jm +iX +rK +cH +pw +lS +Ra +tg +ge +kB +tw +tQ +tQ +jY +"} +(26,1,1) = {" +jY +jY +uw +jf +pc +Gt +mS +Yu +qr +od +Qe +wE +lC +kR +Ee +Be +dY +aF +dT +OJ +qc +Gn +Gn +DB +bO +As +XU +bE +GH +oj +fS +FL +gJ +lm +BV +jp +zv +jY +"} +(27,1,1) = {" +jY +jY +uw +uw +iw +Tn +Mm +pT +QE +Ux +Qe +wE +Ov +Qe +Ig +zd +AV +cB +Oh +dZ +bb +bb +bb +bb +bb +bb +bb +bb +lq +lq +lq +YE +Gj +Pk +tQ +tQ +jY +jY +"} +(28,1,1) = {" +jY +jY +jY +uw +uw +Tn +te +Dm +IP +yV +Qe +wE +ZF +Pf +sg +Wb +qw +dc +kl +iF +CT +ss +LX +Qh +rv +NC +zf +bb +yI +yI +yI +CP +tQ +tQ +tQ +jY +jY +jY +"} +(29,1,1) = {" +jY +jY +jY +jY +jY +gI +Ws +si +YB +jx +Qe +JV +cE +Qe +fp +tC +KU +Ww +Bs +TA +FW +JZ +mt +XQ +Jf +eC +uk +bb +sa +qB +qB +Ut +nK +jY +jY +jY +jY +jY +"} +(30,1,1) = {" +jY +jY +jY +jY +jY +bU +os +za +Wr +ga +Qe +hu +PH +Qe +Jj +pY +PC +fC +IX +eP +FW +JZ +Co +tM +Cd +rS +rc +bb +yI +yI +Wi +CP +nK +jY +jY +jY +jY +jY +"} +(31,1,1) = {" +jY +jY +jY +jY +jY +bU +Ni +xx +xx +hj +Qe +Qe +Qe +Qe +AV +AV +AV +wk +er +iF +FW +Ha +wD +Pe +ru +eO +QX +bb +yI +yI +zH +CP +nK +jY +jY +jY +jY +jY +"} +(32,1,1) = {" +jY +jY +jY +jY +jY +bU +nq +iz +pk +Uc +wI +oG +wI +wI +wI +wj +hP +mG +Pc +Wl +Bi +XJ +tZ +yi +bu +Uz +rW +bb +yI +yI +Wi +CP +nK +jY +jY +jY +jY +jY +"} +(33,1,1) = {" +jY +jY +jY +jY +jY +EV +EV +EV +EV +EV +eS +eS +eS +eS +eS +eS +eS +Rm +Ch +Ll +Am +Cg +oR +oS +BE +Um +bb +bb +DO +Cl +Cl +Xg +nK +jY +jY +jY +jY +jY +"} +(34,1,1) = {" +jY +jY +jY +jY +jY +EV +VA +xc +EK +wP +pL +QP +qO +Jc +cO +HZ +pL +lc +er +Ft +YK +Af +bS +WH +YK +YK +YK +tV +yI +yI +yI +HO +nK +jY +jY +jY +jY +jY +"} +(35,1,1) = {" +jY +jY +jY +jY +jY +EV +Jz +Vr +kL +cx +Wq +JD +jR +ST +SR +Fn +pL +VI +is +bK +SA +KP +ql +sH +Sz +YK +nh +nh +nh +ZS +Ah +HH +nK +jY +jY +jY +jY +jY +"} +(36,1,1) = {" +jY +jY +jY +jY +jY +EV +VA +Xd +zJ +qI +pL +eJ +sU +kp +MC +Uw +pL +dM +Jd +co +tO +vs +gz +Yd +fj +wy +yj +jC +nh +GZ +Gy +nK +nK +jY +jY +jY +jY +jY +"} +(37,1,1) = {" +jY +jY +jY +jY +jY +eS +eS +pL +pL +pL +pL +FT +EO +Lb +sd +wn +pP +hd +Ug +mF +AM +Kh +GP +Mq +Sn +YK +VV +nv +nh +nh +HI +nK +jY +jY +jY +jY +jY +jY +"} +(38,1,1) = {" +jY +jY +jY +jY +jY +ke +Cf +UH +AP +AP +km +bk +LC +ZD +FX +DE +KA +Ld +Iy +iF +Lk +Ey +Ef +WP +gF +YK +oI +VU +Dy +nh +yu +nK +jY +jY +jY +jY +jY +jY +"} +(39,1,1) = {" +jY +jY +jY +jY +oa +Bt +dF +Tc +Iw +eD +uZ +Qf +vl +ZD +Vh +UN +KA +Jw +bj +eb +Lk +Ht +La +mj +sO +YK +Ga +Uy +kJ +nh +nK +nK +jY +jY +jY +jY +jY +jY +"} +(40,1,1) = {" +jY +jY +jY +jY +jY +Bt +IY +kA +Xh +RW +cm +KV +Ib +nO +fd +iO +aG +qR +TZ +GY +kj +vw +vj +JN +ML +YK +Ns +nh +nh +nh +nK +jY +jY +jY +jY +jY +jY +jY +"} +(41,1,1) = {" +jY +jY +jY +jY +jY +jY +eS +eS +lA +Tf +AQ +pL +rn +pL +ph +ph +ph +nx +ph +tD +wv +wv +YK +YK +YK +YK +nh +nh +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +"} +(42,1,1) = {" +jY +jY +jY +jY +jY +jY +jY +eS +eS +eS +zn +pL +hq +Oq +ph +uQ +Qc +YM +ph +bD +dH +Wz +No +pA +Vq +vo +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +"} +(43,1,1) = {" +jY +jY +jY +jY +jY +jY +jY +jY +jY +eS +eS +pL +mc +yP +ph +jG +eu +ET +ph +mJ +dL +QO +wt +Rd +oK +vo +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +"} +(44,1,1) = {" +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +eS +eS +BW +uz +ph +kE +hX +KZ +ph +vg +FC +dr +dr +Rv +vo +yG +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +"} +(45,1,1) = {" +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +eS +eS +eS +jg +bz +bQ +nG +ph +rT +tW +qF +xT +vo +KC +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +"} +(46,1,1) = {" +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jg +jg +jg +jg +jg +KC +KC +KC +KC +KC +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +jY +"} diff --git a/_maps/shuttles/shiptest/nanotrasen_osprey.dmm b/_maps/shuttles/shiptest/nanotrasen_osprey.dmm index fa4f272cb919..4700866ad81f 100644 --- a/_maps/shuttles/shiptest/nanotrasen_osprey.dmm +++ b/_maps/shuttles/shiptest/nanotrasen_osprey.dmm @@ -92,9 +92,7 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/cargo/office) "aI" = ( -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/white, /area/ship/medical) "aL" = ( @@ -142,7 +140,7 @@ /obj/machinery/camera/autoname{ dir = 6 }, -/obj/structure/railing/modern, +/obj/structure/railing, /turf/open/floor/plasteel/stairs{ dir = 4 }, @@ -184,21 +182,17 @@ /area/ship/hallway/central) "bs" = ( /obj/structure/table, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel, /area/ship/crew/cryo) "bw" = ( -/obj/machinery/light{ - dir = 1 - }, /obj/effect/turf_decal/industrial/warning/corner{ dir = 1 }, /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ship/science/ai_chamber) "bA" = ( @@ -213,11 +207,11 @@ /turf/open/floor/plasteel, /area/ship/cargo) "bG" = ( -/obj/machinery/light, /obj/machinery/conveyor{ dir = 4; id = "osprey_packagesort" }, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/ship/cargo/office) "bH" = ( @@ -260,7 +254,8 @@ "cd" = ( /obj/machinery/door/airlock/medical{ name = "Infirmary"; - req_access_txt = "5" + req_access_txt = "5"; + dir = 4 }, /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -285,9 +280,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/dark, /area/ship/bridge) "cg" = ( @@ -300,10 +293,7 @@ pixel_x = -5; pixel_y = -24 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/wood, /area/ship/crew/dorm) "ch" = ( @@ -323,7 +313,7 @@ /area/ship/cargo) "ci" = ( /obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "co" = ( @@ -371,9 +361,7 @@ /obj/item/clothing/under/rank/rnd/scientist, /obj/item/clothing/suit/toggle/labcoat/science, /obj/item/clothing/glasses/science, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/white, /area/ship/science) "cD" = ( @@ -481,7 +469,6 @@ /turf/open/floor/plasteel/tech/grid, /area/ship/science/ai_chamber) "dr" = ( -/obj/machinery/light, /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 }, @@ -490,15 +477,14 @@ req_access = null; req_access_txt = "16" }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/dark, /area/ship/science/ai_chamber) "dw" = ( /obj/machinery/cryopod{ dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/cryo) "dx" = ( @@ -567,7 +553,6 @@ /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -641,6 +626,7 @@ /obj/structure/bed, /obj/structure/curtain/cloth/fancy, /obj/item/bedsheet/head_of_personnel, +/obj/machinery/firealarm/directional/north, /turf/open/floor/carpet/blue, /area/ship/bridge) "eE" = ( @@ -687,6 +673,7 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/white, /area/ship/medical) "eT" = ( @@ -734,9 +721,7 @@ /area/ship/crew/dorm) "fc" = ( /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/wood, /area/ship/crew/dorm) "fg" = ( @@ -752,11 +737,9 @@ /turf/open/floor/plasteel, /area/ship/cargo) "fh" = ( -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/trash/can/food/peaches/maint, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ship/cargo) "fj" = ( @@ -772,14 +755,12 @@ /turf/open/floor/plasteel/patterned, /area/ship/cargo) "fn" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 22 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ship/crew/janitor) "fF" = ( @@ -795,7 +776,6 @@ /obj/effect/turf_decal/corner/opaque/mauve{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -847,9 +827,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/central) "gg" = ( @@ -913,7 +891,8 @@ "gC" = ( /obj/machinery/door/poddoor/shutters{ id = "osprey_atmos"; - name = "Atmospherics Storage" + name = "Atmospherics Storage"; + dir = 8 }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) @@ -1110,6 +1089,18 @@ dir = 4 }, /area/ship/hallway/central) +"hQ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/docking_port/mobile{ + dir = 4; + launch_status = 0; + preferred_direction = 4; + port_direction = 2 + }, +/turf/open/floor/engine/hull, +/area/ship/external) "hU" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 @@ -1119,6 +1110,11 @@ }, /obj/structure/window/plasma/reinforced/spawner/west, /obj/structure/window/plasma/reinforced/spawner, +/obj/machinery/door/poddoor{ + id = "osprey_thruster_starboard"; + name = "Thruster Blast Door"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "ie" = ( @@ -1135,9 +1131,7 @@ /area/ship/hallway/central) "ik" = ( /obj/machinery/portable_atmospherics/scrubber/huge/movable, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) "il" = ( @@ -1176,10 +1170,7 @@ /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "ir" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = 32 }, /obj/machinery/camera/autoname, @@ -1190,6 +1181,7 @@ /obj/effect/turf_decal/corner/opaque/white{ dir = 4 }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) "it" = ( @@ -1232,9 +1224,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/central) "iD" = ( @@ -1289,15 +1279,14 @@ dir = 8 }, /obj/effect/turf_decal/corner/opaque/brown, -/obj/machinery/light, -/obj/structure/railing/modern/end{ +/obj/machinery/light/directional/south, +/obj/structure/railing{ dir = 4 }, /turf/open/floor/plasteel, /area/ship/cargo) "iZ" = ( /obj/structure/ore_box, -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -1311,9 +1300,7 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/science) "jc" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/freezer, /area/ship/crew/toilet) "je" = ( @@ -1340,10 +1327,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "jo" = ( @@ -1351,8 +1335,18 @@ dir = 1 }, /obj/structure/ore_box, -/obj/machinery/status_display/shuttle{ - pixel_x = 32 +/obj/machinery/button/door{ + dir = 8; + id = "ospreydoors"; + name = "Blast Door Control"; + pixel_x = 25; + pixel_y = 5 + }, +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "osprey_cargofield"; + pixel_x = 24; + pixel_y = -5 }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) @@ -1412,9 +1406,7 @@ /obj/effect/turf_decal/corner/opaque/white{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "kb" = ( @@ -1423,7 +1415,8 @@ /area/ship/engineering/atmospherics) "ke" = ( /obj/machinery/door/airlock/public/glass{ - name = "Infirmary" + name = "Infirmary"; + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -1450,7 +1443,8 @@ /area/ship/medical) "kf" = ( /obj/machinery/door/airlock{ - name = "Custodial Closet" + name = "Custodial Closet"; + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -1479,10 +1473,8 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate/coffin, +/obj/machinery/light/small/directional/north, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel, /area/ship/crew/janitor) "ko" = ( @@ -1495,12 +1487,10 @@ /obj/effect/turf_decal/corner/opaque/purple{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/railing/modern{ +/obj/structure/railing{ dir = 4 }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ship/cargo) "kB" = ( @@ -1512,6 +1502,11 @@ }, /obj/structure/window/plasma/reinforced/spawner/west, /obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/door/poddoor{ + id = "osprey_thruster_starboard"; + name = "Thruster Blast Door"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "kD" = ( @@ -1604,7 +1599,8 @@ "kV" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters{ - id = "ospreywindows" + id = "ospreywindows"; + dir = 4 }, /obj/machinery/door/firedoor/heavy, /turf/open/floor/plating, @@ -1617,15 +1613,15 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 1 }, -/obj/structure/railing/modern, +/obj/structure/railing{ + layer = 2.91 + }, /turf/open/floor/plasteel, /area/ship/hallway/central) "la" = ( /obj/item/kirbyplants/random, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/railing/modern, +/obj/machinery/light/directional/north, +/obj/structure/railing, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) "lb" = ( @@ -1689,21 +1685,12 @@ /obj/item/stack/sheet/rglass{ amount = 5 }, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 24 - }, -/obj/item/radio/intercom{ - freerange = 1; - freqlock = 1; +/obj/item/radio/intercom/directional/south, +/obj/item/radio/intercom/directional/north{ frequency = 1351; - name = "Nanotrasen shortwave intercom"; - pixel_y = 22 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 + freqlock = 1 }, +/obj/item/radio/intercom/wideband/directional/east, /turf/open/floor/circuit, /area/ship/science/ai_chamber) "lt" = ( @@ -1797,10 +1784,6 @@ /obj/item/clothing/head/hardhat/weldhat/dblue, /obj/item/storage/belt/utility/atmostech, /obj/item/extinguisher/advanced, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, /obj/effect/turf_decal/corner/opaque/bottlegreen{ dir = 8 }, @@ -1808,6 +1791,7 @@ /obj/item/holosign_creator/atmos, /obj/item/storage/box/metalfoam, /obj/item/pipe_dispenser, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering/atmospherics) "lV" = ( @@ -1822,7 +1806,7 @@ "lY" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ - pixel_y = 7 + pixel_y = 5 }, /obj/effect/turf_decal/corner/opaque/white{ dir = 4 @@ -1830,6 +1814,7 @@ /obj/effect/turf_decal/corner/opaque/white{ dir = 8 }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel, /area/ship/crew/canteen) "mf" = ( @@ -1842,6 +1827,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "mg" = ( @@ -1922,14 +1908,11 @@ /obj/effect/turf_decal/corner/opaque/mauve{ dir = 8 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, /obj/item/storage/box/gloves{ pixel_x = -3; pixel_y = -8 }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/white, /area/ship/science) "mB" = ( @@ -1973,7 +1956,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/central) "mR" = ( @@ -2023,10 +2006,7 @@ dir = 1 }, /obj/structure/tank_dispenser/oxygen, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/patterned/grid, /area/ship/cargo) "nf" = ( @@ -2037,10 +2017,7 @@ /obj/structure/mirror{ pixel_x = 25 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/freezer, /area/ship/crew/toilet) "nl" = ( @@ -2049,16 +2026,12 @@ }, /turf/open/floor/plasteel/grimy, /area/ship/crew/dorm) -"nt" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/science) "nx" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/window/reinforced{ dir = 8 }, @@ -2123,10 +2096,7 @@ /obj/effect/turf_decal/corner/opaque/brown{ dir = 1 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel, /area/ship/cargo/office) "nZ" = ( @@ -2160,9 +2130,6 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) -"ol" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/science/ai_chamber) "oo" = ( /obj/machinery/space_heater, /obj/effect/turf_decal/industrial/warning{ @@ -2172,9 +2139,7 @@ /area/ship/engineering/atmospherics) "os" = ( /obj/machinery/cryopod, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/cryo) "ot" = ( @@ -2201,10 +2166,7 @@ /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) "ow" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/bridge) "oB" = ( @@ -2256,12 +2218,10 @@ /turf/open/floor/plasteel/freezer, /area/ship/crew/toilet) "oN" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ dir = 1 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) "oO" = ( @@ -2328,7 +2288,8 @@ /area/ship/medical) "oX" = ( /obj/machinery/door/airlock/public/glass{ - name = "Infirmary" + name = "Infirmary"; + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -2354,7 +2315,8 @@ /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/poddoor{ id = "osprey_disposals"; - name = "Disposals Blast Door" + name = "Disposals Blast Door"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/green/hidden/layer1{ dir = 4 @@ -2373,7 +2335,7 @@ "pm" = ( /obj/machinery/computer/communications{ dir = 8; - icon_state = "computer-left" + icon_state = "computer-right" }, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) @@ -2435,10 +2397,6 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/door/poddoor{ - id = "osprey_thruster_port"; - name = "Thruster Blast Door" - }, /turf/open/floor/plating, /area/ship/engineering) "pH" = ( @@ -2447,6 +2405,14 @@ }, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering/atmospherics) +"pJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "osprey_atmos"; + name = "Atmospherics Storage"; + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "pK" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -2462,10 +2428,6 @@ }, /obj/item/table_bell, /obj/structure/disposalpipe/segment, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 - }, /obj/machinery/door/poddoor/shutters{ id = "ospreysci" }, @@ -2491,9 +2453,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering/atmospherics) "pU" = ( @@ -2525,9 +2485,6 @@ /obj/effect/turf_decal/corner/opaque/mauve{ dir = 1 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, /obj/item/storage/backpack/duffelbag, /obj/item/storage/backpack/messenger/tox, /obj/item/storage/backpack/satchel/tox, @@ -2537,6 +2494,7 @@ /obj/item/clothing/under/rank/rnd/scientist, /obj/item/clothing/suit/toggle/labcoat/science, /obj/item/clothing/glasses/science, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel/white, /area/ship/science) "qc" = ( @@ -2624,10 +2582,6 @@ icon_door = "black"; name = "wardrobe" }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, /obj/item/storage/backpack/duffelbag, /obj/item/storage/backpack/messenger, /obj/item/storage/backpack, @@ -2644,6 +2598,7 @@ /obj/item/clothing/head/bowler, /obj/item/storage/box/drinkingglasses, /obj/item/storage/fancy/candle_box, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) "qX" = ( @@ -2655,6 +2610,11 @@ }, /obj/structure/window/plasma/reinforced/spawner/west, /obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/door/poddoor{ + id = "osprey_thruster_port"; + name = "Thruster Blast Door"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "ra" = ( @@ -2730,10 +2690,6 @@ /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 }, -/obj/machinery/door/poddoor{ - id = "osprey_thruster_port"; - name = "Thruster Blast Door" - }, /turf/open/floor/plating, /area/ship/engineering) "rH" = ( @@ -2797,10 +2753,10 @@ /area/ship/crew/canteen) "rS" = ( /obj/effect/turf_decal/corner/transparent/neutral, -/obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 8 }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/hallway/central) "rX" = ( @@ -2878,7 +2834,8 @@ "su" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters{ - id = "ospreywindows" + id = "ospreywindows"; + dir = 4 }, /turf/open/floor/plating, /area/ship/hallway/central) @@ -2891,9 +2848,6 @@ /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, -/obj/machinery/light{ - dir = 1 - }, /obj/structure/rack, /turf/open/floor/plasteel/patterned, /area/ship/cargo) @@ -2980,9 +2934,7 @@ /turf/open/floor/plasteel, /area/ship/hallway/central) "sO" = ( -/obj/structure/sign/poster/official/focus{ - pixel_x = 32 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ship/science) "sZ" = ( @@ -2994,14 +2946,8 @@ /area/ship/hallway/central) "tb" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, /obj/structure/frame/computer, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/dark, /area/ship/science) "tc" = ( @@ -3035,23 +2981,17 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/white, /area/ship/medical) "to" = ( -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -3078,7 +3018,8 @@ "tx" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters/preopen{ - id = "ospreybridge" + id = "ospreybridge"; + dir = 4 }, /obj/machinery/door/firedoor/window, /turf/open/floor/plating, @@ -3153,7 +3094,7 @@ "ud" = ( /obj/machinery/computer/helm{ dir = 8; - icon_state = "computer-right" + icon_state = "computer-left" }, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) @@ -3167,10 +3108,10 @@ /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "ui" = ( -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-8" }, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel/dark, /area/ship/science/ai_chamber) "uk" = ( @@ -3203,9 +3144,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering/atmospherics) "ut" = ( @@ -3235,9 +3174,7 @@ /obj/effect/turf_decal/corner/opaque/pink{ dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white, /area/ship/medical) "uz" = ( @@ -3333,13 +3270,13 @@ pixel_x = -3; pixel_y = 8 }, -/obj/machinery/light/small, /obj/structure/disposalpipe/segment{ dir = 9 }, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ship/crew/janitor) "vj" = ( @@ -3438,6 +3375,7 @@ dir = 4; id = "osprey_packagesort" }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plating, /area/ship/cargo/office) "wd" = ( @@ -3480,7 +3418,7 @@ pixel_x = -7 }, /obj/item/pen/fourcolor, -/obj/machinery/newscaster{ +/obj/machinery/newscaster/directional/north{ pixel_y = 32 }, /obj/effect/turf_decal/corner/opaque/ntblue{ @@ -3489,6 +3427,10 @@ /obj/effect/turf_decal/corner/opaque/ntblue{ dir = 1 }, +/obj/machinery/light_switch{ + pixel_x = -5; + pixel_y = 24 + }, /turf/open/floor/plasteel/dark, /area/ship/bridge) "wo" = ( @@ -3503,6 +3445,11 @@ }, /obj/structure/window/plasma/reinforced/spawner/west, /obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/door/poddoor{ + id = "osprey_thruster_starboard"; + name = "Thruster Blast Door"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "wq" = ( @@ -3535,7 +3482,8 @@ "wx" = ( /obj/machinery/door/poddoor{ id = "ospreydoors"; - name = "Cargo Bay Blast Door" + name = "Cargo Bay Blast Door"; + dir = 4 }, /obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ @@ -3602,6 +3550,11 @@ }, /obj/structure/window/plasma/reinforced/spawner/west, /obj/structure/window/plasma/reinforced/spawner, +/obj/machinery/door/poddoor{ + id = "osprey_thruster_starboard"; + name = "Thruster Blast Door"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "wR" = ( @@ -3614,22 +3567,16 @@ dir = 4 }, /obj/effect/turf_decal/corner/opaque/lime, -/obj/machinery/light{ - dir = 4 - }, /obj/structure/sign/poster/official/moth/epi{ pixel_y = 32 }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/white, /area/ship/medical) "wT" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 }, -/obj/machinery/door/poddoor{ - id = "osprey_thruster_starboard"; - name = "Thruster Blast Door" - }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "wV" = ( @@ -3687,10 +3634,6 @@ /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering/atmospherics) "xq" = ( -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 18 - }, /obj/machinery/button/door{ dir = 8; id = "ospreywindows"; @@ -3708,11 +3651,13 @@ /obj/machinery/modular_computer/console/preset/command{ dir = 8 }, +/obj/item/radio/intercom/wideband/directional/east, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) "xB" = ( /obj/machinery/door/airlock/public/glass{ - name = "Infirmary" + name = "Infirmary"; + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -3732,14 +3677,17 @@ /obj/effect/turf_decal/corner/opaque/green{ dir = 4 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/central) "xG" = ( -/obj/machinery/light, /obj/machinery/conveyor{ dir = 8; id = "osprey_cargoload" }, +/obj/machinery/camera/autoname{ + dir = 10 + }, /turf/open/floor/plating, /area/ship/cargo) "xH" = ( @@ -3753,7 +3701,8 @@ /area/ship/cargo) "xJ" = ( /obj/machinery/door/airlock/public/glass{ - name = "Infirmary" + name = "Infirmary"; + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -3929,17 +3878,16 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/structure/railing/modern, +/obj/structure/railing{ + layer = 2.91 + }, /turf/open/floor/plasteel, /area/ship/hallway/central) "yI" = ( -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -25 - }, /obj/machinery/camera/autoname{ dir = 5 }, +/obj/machinery/computer/cryopod/directional/west, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/cryo) "yP" = ( @@ -3985,9 +3933,7 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/patterned, /area/ship/cargo) "yU" = ( @@ -4006,9 +3952,7 @@ /area/ship/cargo) "yX" = ( /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/rnd/destructive_analyzer, /turf/open/floor/plasteel/dark, /area/ship/science) @@ -4058,7 +4002,8 @@ /area/ship/cargo) "zy" = ( /obj/machinery/door/airlock/public/glass{ - name = "Canteen" + name = "Canteen"; + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -4099,16 +4044,15 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, /obj/machinery/vending/snack/random, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ship/hallway/central) "zL" = ( /obj/machinery/door/airlock/command{ name = "First Officer's Quarters"; - req_access_txt = "57" + req_access_txt = "57"; + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4154,7 +4098,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/railing/modern, +/obj/structure/railing, /turf/open/floor/plasteel/stairs{ dir = 4 }, @@ -4183,9 +4127,7 @@ /obj/effect/turf_decal/corner/opaque/bar{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel, /area/ship/hallway/central) "Ac" = ( @@ -4200,7 +4142,8 @@ "Ag" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering"; - req_access_txt = "10" + req_access_txt = "10"; + dir = 8 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -4232,7 +4175,8 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor{ id = "osprey_thruster_port"; - name = "Blast Door" + name = "Blast Door"; + dir = 4 }, /obj/effect/spawner/structure/window/shuttle, /obj/machinery/atmospherics/pipe/simple/green/hidden/layer1{ @@ -4339,11 +4283,8 @@ /area/ship/engineering/atmospherics) "Bn" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, /obj/structure/closet/emcloset/anchored, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ship/cargo) "Bp" = ( @@ -4389,18 +4330,14 @@ /area/ship/cargo) "Bu" = ( /obj/machinery/vending/cola/random, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, /obj/effect/turf_decal/corner/opaque/white{ dir = 8 }, /obj/effect/turf_decal/corner/opaque/white{ dir = 4 }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "Bv" = ( @@ -4427,13 +4364,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, /obj/structure/cable{ icon_state = "1-8" }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "BL" = ( @@ -4577,7 +4511,8 @@ /area/ship/medical) "CL" = ( /obj/machinery/door/airlock{ - name = "Restroom" + name = "Restroom"; + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -4639,19 +4574,13 @@ /area/ship/crew/canteen) "Di" = ( /obj/structure/filingcabinet/double, -/obj/machinery/light_switch{ - pixel_x = -5; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, /obj/effect/turf_decal/corner/opaque/ntblue{ dir = 4 }, /obj/effect/turf_decal/corner/opaque/ntblue{ dir = 1 }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/dark, /area/ship/bridge) "Dj" = ( @@ -4683,7 +4612,6 @@ /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/cargo) "DA" = ( -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ icon_state = "0-2" }, @@ -4731,9 +4659,7 @@ /obj/effect/turf_decal/corner/opaque/white{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/plasteel, /area/ship/crew/canteen) "DO" = ( @@ -4758,8 +4684,9 @@ /obj/structure/chair{ dir = 8 }, -/obj/structure/railing/modern{ - dir = 6 +/obj/structure/railing{ + dir = 6; + layer = 3.1 }, /turf/open/floor/plasteel, /area/ship/cargo) @@ -4768,16 +4695,11 @@ dir = 8 }, /obj/effect/landmark/start/assistant, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, /obj/effect/turf_decal/siding/wood{ dir = 6 }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/east, /turf/open/floor/wood, /area/ship/crew/canteen) "Ee" = ( @@ -4788,7 +4710,6 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west, /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, @@ -4846,7 +4767,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/obj/structure/railing/modern, +/obj/structure/railing, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) "EA" = ( @@ -4858,7 +4779,8 @@ "EN" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters{ - id = "ospreywindows" + id = "ospreywindows"; + dir = 4 }, /obj/machinery/door/firedoor/heavy, /turf/open/floor/plating, @@ -4875,9 +4797,8 @@ /obj/item/radio, /obj/item/radio, /obj/item/radio, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ship/crew/cryo) "ET" = ( @@ -4887,7 +4808,7 @@ }, /obj/item/folder, /obj/item/pen, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood, /area/ship/crew/dorm) "EW" = ( @@ -5035,9 +4956,7 @@ "FZ" = ( /obj/structure/table/wood, /obj/structure/bedsheetbin, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/ship/crew/dorm) "Ga" = ( @@ -5086,11 +5005,12 @@ /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "Gt" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/poddoor{ id = "ospreydoors"; - name = "Cargo Bay Blast Door" + name = "Cargo Bay Blast Door"; + dir = 4 }, -/obj/effect/turf_decal/industrial/warning/fulltile, /turf/open/floor/plasteel/tech, /area/ship/cargo) "Gu" = ( @@ -5135,12 +5055,10 @@ /obj/effect/turf_decal/corner/opaque/white{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, /obj/structure/sign/poster/official/cleanliness{ pixel_y = 32 }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "GG" = ( @@ -5213,14 +5131,12 @@ /obj/effect/turf_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, /obj/effect/turf_decal/corner/opaque/blue, /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 }, /obj/item/storage/box/masks, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/white, /area/ship/medical) "Hf" = ( @@ -5229,8 +5145,11 @@ icon_state = "0-2" }, /obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/structure/sign/warning/electricshock{ + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/ship/engineering) "Hi" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -5256,10 +5175,6 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/door/poddoor{ - id = "osprey_thruster_starboard"; - name = "Thruster Blast Door" - }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "Hn" = ( @@ -5308,6 +5223,7 @@ }, /obj/structure/rack, /obj/item/pickaxe, +/obj/machinery/light/dim/directional/north, /turf/open/floor/plasteel/patterned, /area/ship/cargo) "HD" = ( @@ -5339,7 +5255,8 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor{ id = "osprey_thruster_port"; - name = "Blast Door" + name = "Blast Door"; + dir = 4 }, /obj/effect/spawner/structure/window/shuttle, /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5{ @@ -5369,7 +5286,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/structure/railing/modern, +/obj/structure/railing, /turf/open/floor/plasteel, /area/ship/hallway/central) "Ie" = ( @@ -5380,10 +5297,7 @@ dir = 1 }, /obj/machinery/photocopier, -/obj/machinery/computer/helm/viewscreen{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/computer/helm/viewscreen/directional/west, /turf/open/floor/plasteel, /area/ship/cargo/office) "Ig" = ( @@ -5398,13 +5312,11 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/corner/opaque/blue, /obj/machinery/camera/autoname{ dir = 10 }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white, /area/ship/medical) "Ii" = ( @@ -5417,10 +5329,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, /area/ship/hallway/central) "Iq" = ( @@ -5471,7 +5380,8 @@ "Iz" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics"; - req_access_txt = "24" + req_access_txt = "24"; + dir = 8 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -5553,15 +5463,13 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, /obj/structure/sign/poster/official/high_class_martini{ pixel_y = -32 }, /obj/effect/turf_decal/siding/wood{ dir = 10 }, +/obj/machinery/light/directional/west, /turf/open/floor/wood, /area/ship/crew/canteen) "IW" = ( @@ -5621,10 +5529,7 @@ /obj/effect/turf_decal/corner/opaque/lime{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/white, /area/ship/medical) "JG" = ( @@ -5650,10 +5555,7 @@ pixel_x = -5; pixel_y = -25 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, /area/ship/crew/canteen) "JL" = ( @@ -5733,22 +5635,7 @@ /area/ship/engineering/atmospherics) "KA" = ( /obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 8; - id = "ospreydoors"; - name = "Blast Door Control"; - pixel_x = 25; - pixel_y = 5 - }, -/obj/machinery/button/shieldwallgen{ - dir = 8; - id = "osprey_cargofield"; - pixel_x = 24; - pixel_y = -5 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/patterned, /area/ship/cargo) "KC" = ( @@ -5761,10 +5648,10 @@ /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "KD" = ( -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ icon_state = "0-4" }, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/ship/crew/dorm) "KE" = ( @@ -5799,7 +5686,6 @@ /obj/structure/chair/comfy/brown, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -5916,10 +5802,7 @@ /obj/machinery/atmospherics/pipe/simple/dark/hidden/layer5, /obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/machinery/atmospherics/pipe/simple/green/hidden/layer1, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/science/ai_chamber) "LX" = ( @@ -5966,8 +5849,8 @@ /area/ship/hallway/central) "Mo" = ( /obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering/atmospherics) "Mu" = ( @@ -6077,9 +5960,7 @@ /obj/effect/turf_decal/corner/opaque/ntblue{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel, /area/ship/hallway/central) "Nm" = ( @@ -6162,12 +6043,10 @@ dir = 8 }, /obj/effect/turf_decal/corner/opaque/brown, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, /obj/structure/sign/poster/retro/radio{ pixel_x = -32 }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel, /area/ship/cargo/office) "Nw" = ( @@ -6205,6 +6084,7 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/central) "NH" = ( @@ -6237,9 +6117,7 @@ "NT" = ( /obj/machinery/atmospherics/components/unary/tank/toxins, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "NW" = ( @@ -6285,19 +6163,13 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, /obj/structure/sign/poster/official/miners{ pixel_x = 32 }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/cargo) "Os" = ( -/obj/machinery/door/poddoor{ - id = "ospreydoors"; - name = "Cargo Bay Blast Door" - }, /obj/effect/turf_decal/industrial/warning/fulltile, /obj/structure/cable{ icon_state = "0-8" @@ -6307,6 +6179,11 @@ id = "osprey_cargofield"; locked = 1 }, +/obj/machinery/door/poddoor{ + id = "ospreydoors"; + name = "Cargo Bay Blast Door"; + dir = 4 + }, /turf/open/floor/plasteel/tech, /area/ship/cargo) "Ou" = ( @@ -6327,7 +6204,6 @@ pixel_x = 24; pixel_y = 5 }, -/obj/machinery/power/apc/auto_name/south, /obj/structure/cable, /obj/item/holosign_creator/janibarrier, /turf/open/floor/plasteel, @@ -6414,9 +6290,7 @@ sortTypes = list(7,8,15,29,30); tag = "Command" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/central) "Pa" = ( @@ -6466,10 +6340,8 @@ /obj/effect/turf_decal/corner/opaque/purple{ dir = 1 }, -/obj/machinery/light{ - dir = 1 - }, /obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel, /area/ship/cargo) "Pl" = ( @@ -6538,8 +6410,9 @@ /obj/structure/chair{ dir = 8 }, -/obj/structure/railing/modern{ - dir = 5 +/obj/structure/railing{ + dir = 5; + layer = 4.1 }, /turf/open/floor/plasteel, /area/ship/cargo) @@ -6570,7 +6443,7 @@ /turf/open/floor/plasteel/freezer, /area/ship/crew/toilet) "Qb" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering/atmospherics) "Qm" = ( @@ -6614,27 +6487,20 @@ /obj/effect/turf_decal/corner/transparent/neutral{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/plasteel, /area/ship/hallway/central) "Qv" = ( -/obj/machinery/light{ - dir = 1 - }, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 4 }, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, /obj/structure/cable{ icon_state = "2-4" }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "Qy" = ( @@ -6685,12 +6551,10 @@ dir = 8; id = "osprey_cargoload" }, -/obj/machinery/camera/autoname{ - dir = 10 - }, /obj/structure/sign/warning{ pixel_y = -25 }, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/ship/cargo) "QK" = ( @@ -6795,13 +6659,11 @@ /turf/open/floor/plasteel/tech/grid, /area/ship/science/ai_chamber) "RE" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 25 - }, /obj/structure/closet/crate/engineering{ name = "fuel crate" }, /obj/item/stack/sheet/mineral/plasma/twenty, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "RI" = ( @@ -6847,9 +6709,7 @@ "RU" = ( /obj/structure/table/wood, /obj/item/toy/plush/carpplushie, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/ship/crew/dorm) "RW" = ( @@ -6877,16 +6737,11 @@ "Sd" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/corner/opaque/blue, -/obj/machinery/light{ - dir = 4 - }, /obj/effect/turf_decal/corner/opaque/blue{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/white, /area/ship/medical) "Se" = ( @@ -6925,9 +6780,7 @@ /obj/effect/turf_decal/corner/opaque/blue{ dir = 1 }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/white, /area/ship/medical) "Su" = ( @@ -6939,7 +6792,8 @@ /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/poddoor{ id = "osprey_disposals"; - name = "Disposals Blast Door" + name = "Disposals Blast Door"; + dir = 4 }, /turf/open/floor/plating, /area/ship/crew/janitor) @@ -6970,7 +6824,6 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/machinery/power/apc/auto_name/south, /obj/structure/cable, /obj/item/storage/backpack, /obj/item/storage/backpack/messenger, @@ -6995,13 +6848,10 @@ icon_state = "1-2" }, /obj/item/taperecorder, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, /obj/machinery/camera/autoname{ dir = 5 }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/dark, /area/ship/bridge) "SO" = ( @@ -7131,13 +6981,16 @@ }, /obj/structure/window/plasma/reinforced/spawner/west, /obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/door/poddoor{ + id = "osprey_thruster_port"; + name = "Thruster Blast Door"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "Tq" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) "Tr" = ( @@ -7149,6 +7002,11 @@ }, /obj/structure/window/plasma/reinforced/spawner/west, /obj/structure/window/plasma/reinforced/spawner, +/obj/machinery/door/poddoor{ + id = "osprey_thruster_port"; + name = "Thruster Blast Door"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "Tt" = ( @@ -7244,7 +7102,7 @@ /obj/item/storage/bag/ore, /obj/item/pickaxe, /obj/item/pickaxe, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/patterned/grid, /area/ship/cargo) "TR" = ( @@ -7442,6 +7300,11 @@ }, /obj/structure/window/plasma/reinforced/spawner/west, /obj/structure/window/plasma/reinforced/spawner, +/obj/machinery/door/poddoor{ + id = "osprey_thruster_port"; + name = "Thruster Blast Door"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/engineering) "VC" = ( @@ -7509,7 +7372,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/freezer, /area/ship/crew/toilet) "VV" = ( @@ -7525,10 +7388,6 @@ /area/ship/science) "Wb" = ( /obj/structure/table, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, /turf/open/floor/plasteel, /area/ship/crew/cryo) "Wc" = ( @@ -7566,21 +7425,18 @@ /area/ship/cargo/office) "Wn" = ( /obj/structure/table/wood, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/carpet/blue, /area/ship/bridge) "Wq" = ( -/obj/docking_port/mobile{ - dir = 2; - launch_status = 0; - port_direction = 8; - preferred_direction = 4 +/obj/docking_port/stationary{ + dwidth = 15; + width = 30; + height = 15; + dir = 2 }, -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/layer_manifold, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) +/turf/template_noop, +/area/template_noop) "Ws" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -7626,7 +7482,7 @@ dir = 8 }, /obj/effect/landmark/start/assistant, -/obj/structure/railing/modern, +/obj/structure/railing, /turf/open/floor/plasteel, /area/ship/hallway/central) "WU" = ( @@ -7634,7 +7490,8 @@ /area/ship/engineering) "WZ" = ( /obj/machinery/door/airlock/public/glass{ - name = "Canteen" + name = "Canteen"; + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 @@ -7673,7 +7530,7 @@ /obj/effect/turf_decal/corner/opaque/brown{ dir = 8 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/cargo) "Xi" = ( @@ -7689,9 +7546,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering/atmospherics) "Xl" = ( @@ -7710,10 +7565,19 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"Xo" = ( +/obj/docking_port/stationary{ + dwidth = 15; + width = 30; + height = 15 + }, +/turf/template_noop, +/area/template_noop) "Xp" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; - req_access_txt = "20" + req_access_txt = "20"; + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -7746,14 +7610,11 @@ "Xz" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, /obj/effect/turf_decal/corner/opaque/yellow{ dir = 4 }, /obj/effect/turf_decal/corner/opaque/yellow, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "XE" = ( @@ -7811,9 +7672,8 @@ pixel_x = -6; pixel_y = -3 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/north, /turf/open/floor/carpet/royalblue, /area/ship/bridge) "XX" = ( @@ -7853,11 +7713,9 @@ /obj/machinery/light_switch{ dir = 8; pixel_x = 24; - pixel_y = 5 - }, -/obj/machinery/light/small{ - dir = 4 + pixel_y = 9 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel, /area/ship/crew/cryo) "YD" = ( @@ -7914,7 +7772,8 @@ "YI" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/shutters{ - id = "ospreywindows" + id = "ospreywindows"; + dir = 4 }, /obj/machinery/door/firedoor/heavy, /turf/open/floor/plating, @@ -7953,12 +7812,10 @@ /obj/effect/turf_decal/corner/opaque/mauve{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, /obj/structure/sign/poster/official/sgt{ pixel_x = -32 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/white, /area/ship/science) "YR" = ( @@ -7985,10 +7842,10 @@ /obj/effect/turf_decal/corner/opaque/yellow{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ icon_state = "0-8" }, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel/patterned/grid, /area/ship/engineering) "Zr" = ( @@ -7999,12 +7856,8 @@ dir = 8 }, /obj/effect/turf_decal/corner/opaque/brown, -/obj/machinery/light, /obj/machinery/autolathe, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel, /area/ship/cargo/office) "Zu" = ( @@ -8021,37 +7874,22 @@ /turf/open/floor/plasteel, /area/ship/cargo) "ZC" = ( -/obj/machinery/power/apc/auto_name/west, /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/light, +/obj/machinery/light/directional/south, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) "ZJ" = ( -/obj/effect/turf_decal/corner/transparent/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/ship/hallway/central) "ZK" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/table, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel/patterned/grid, /area/ship/cargo) "ZO" = ( @@ -8076,7 +7914,8 @@ }, /obj/machinery/door/poddoor{ id = "osprey_thruster_starboard"; - name = "Blast Door" + name = "Blast Door"; + dir = 4 }, /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/firedoor/heavy, @@ -8093,6 +7932,7 @@ /area/ship/crew/cryo) (1,1,1) = {" +li WU pD pD @@ -8124,8 +7964,10 @@ wT Hk Hk yj +li "} (2,1,1) = {" +li WU Tn VA @@ -8157,8 +7999,10 @@ hU wo wQ yj +li "} (3,1,1) = {" +li WU eE eE @@ -8190,8 +8034,10 @@ cJ kG kG yj +li "} (4,1,1) = {" +li WU pP ap @@ -8223,8 +8069,10 @@ ra Ri dS yj +li "} (5,1,1) = {" +li WU NT Yc @@ -8256,8 +8104,10 @@ Jl kD SX Tb +li "} (6,1,1) = {" +li WU qc PS @@ -8270,13 +8120,13 @@ WU ao kP uz -ol VV VV VV VV VV -ol +VV +VV ao kP uz @@ -8289,8 +8139,10 @@ Gp Ko tF JN +li "} (7,1,1) = {" +li WU qa gX @@ -8322,8 +8174,10 @@ xp cT Of xP +li "} (8,1,1) = {" +li WU RE JO @@ -8355,8 +8209,10 @@ sw cp Uc yj +li "} (9,1,1) = {" +li WU Hf gX @@ -8388,8 +8244,10 @@ hm HK Qb yj +li "} (10,1,1) = {" +li WU Mu Ix @@ -8421,8 +8279,10 @@ Mo eX fU yj +li "} (11,1,1) = {" +li WU Qv lz @@ -8451,11 +8311,13 @@ kQ uq NP yj -gC +pJ gC yj +li "} (12,1,1) = {" +li WU Zo LF @@ -8487,8 +8349,10 @@ yj oo oo yj +li "} (13,1,1) = {" +li WU bH Xz @@ -8520,8 +8384,10 @@ yj ik lA yj +li "} (14,1,1) = {" +li WU WU WU @@ -8553,8 +8419,10 @@ yj yj yj yj +li "} (15,1,1) = {" +li nK GU XX @@ -8586,15 +8454,17 @@ jC gJ Zj FI +li "} (16,1,1) = {" -Wq +Xo +uQ mB Tq rJ bl yQ -ZJ +sJ sJ gy yE @@ -8619,8 +8489,10 @@ hg oN ou uQ +Wq "} (17,1,1) = {" +li BH IW IW @@ -8652,8 +8524,10 @@ gV gV gV ZZ +li "} (18,1,1) = {" +li IW iO KD @@ -8685,8 +8559,10 @@ yI Su dw gV +li "} (19,1,1) = {" +li IW fc pv @@ -8700,8 +8576,8 @@ RW mI DU tc -tr uC +tr xq ud pm @@ -8718,8 +8594,10 @@ UZ uk SU gV +li "} (20,1,1) = {" +li IW rz SO @@ -8751,8 +8629,10 @@ yl gB sI gV +li "} (21,1,1) = {" +li IW Oh hv @@ -8784,8 +8664,10 @@ FL FL EO gV +li "} (22,1,1) = {" +li Rq IW FZ @@ -8793,7 +8675,7 @@ xN ET IW IW -sG +ZJ Es cY Nd @@ -8809,7 +8691,7 @@ xY eG Qy Ge -sG +ZJ gV gV bs @@ -8817,9 +8699,11 @@ Fr Wb gV PP +li "} (23,1,1) = {" li +li Rq YI YI @@ -8828,7 +8712,7 @@ Rq li sG su -sG +ZJ AB zJ JW @@ -8840,7 +8724,7 @@ Cp TR zU uN -sG +ZJ kV sG li @@ -8850,6 +8734,7 @@ EN EN PP li +li "} (24,1,1) = {" li @@ -8861,6 +8746,7 @@ li li li li +li sG cq cq @@ -8883,6 +8769,7 @@ li li li li +li "} (25,1,1) = {" li @@ -8895,6 +8782,7 @@ li li li li +li cq GC jU @@ -8916,6 +8804,7 @@ li li li li +li "} (26,1,1) = {" li @@ -8928,6 +8817,7 @@ li li li li +li gM JL rH @@ -8949,6 +8839,7 @@ li li li li +li "} (27,1,1) = {" li @@ -8961,6 +8852,7 @@ li li li li +li gM iD rH @@ -8982,6 +8874,7 @@ li li li li +li "} (28,1,1) = {" li @@ -8994,6 +8887,7 @@ li li li li +li cq lY rH @@ -9015,6 +8909,7 @@ li li li li +li "} (29,1,1) = {" li @@ -9027,6 +8922,7 @@ li li li li +li gM CT rH @@ -9048,6 +8944,7 @@ li li li li +li "} (30,1,1) = {" li @@ -9060,6 +8957,7 @@ li li li li +li gM XE rH @@ -9081,6 +8979,7 @@ li li li li +li "} (31,1,1) = {" li @@ -9093,6 +8992,7 @@ li li li li +li cq DK tO @@ -9114,6 +9014,7 @@ li li li li +li "} (32,1,1) = {" li @@ -9126,6 +9027,7 @@ li li li li +li Zr Zr Zr @@ -9147,6 +9049,7 @@ li li li li +li "} (33,1,1) = {" li @@ -9159,6 +9062,7 @@ li li li li +li Zr ux Xl @@ -9180,6 +9084,7 @@ li li li li +li "} (34,1,1) = {" li @@ -9192,6 +9097,7 @@ li li li li +li Uj Bc WN @@ -9213,6 +9119,7 @@ li li li li +li "} (35,1,1) = {" li @@ -9225,6 +9132,7 @@ li li li li +li Uj Dj NH @@ -9246,6 +9154,7 @@ li li li li +li "} (36,1,1) = {" li @@ -9258,6 +9167,7 @@ li li li li +li Zr Zr Zr @@ -9279,6 +9189,7 @@ li li li li +li "} (37,1,1) = {" li @@ -9291,6 +9202,7 @@ li li li li +li Uj UB it @@ -9312,6 +9224,7 @@ li li li li +li "} (38,1,1) = {" li @@ -9324,6 +9237,7 @@ li li li li +li Uj IU WN @@ -9345,6 +9259,7 @@ li li li li +li "} (39,1,1) = {" li @@ -9356,6 +9271,7 @@ li li li li +li CF Zr wR @@ -9378,6 +9294,7 @@ li li li li +li "} (40,1,1) = {" li @@ -9387,6 +9304,7 @@ li li li li +li hh IL IL @@ -9411,6 +9329,7 @@ li li li li +li "} (41,1,1) = {" li @@ -9419,6 +9338,7 @@ li li li li +li hh IL YP @@ -9444,6 +9364,7 @@ li li li li +li "} (42,1,1) = {" li @@ -9452,6 +9373,7 @@ li li li li +li IL qb Se @@ -9477,6 +9399,7 @@ li li li li +li "} (43,1,1) = {" li @@ -9485,6 +9408,7 @@ li li li li +li IL ct hG @@ -9510,6 +9434,7 @@ li li li li +li "} (44,1,1) = {" li @@ -9518,6 +9443,7 @@ li li li li +li IL PE Vf @@ -9543,6 +9469,7 @@ li li li li +li "} (45,1,1) = {" li @@ -9551,12 +9478,13 @@ li li li li +li IL fF TG ss oB -nt +IL ko DV wW @@ -9576,6 +9504,7 @@ li li li li +li "} (46,1,1) = {" li @@ -9584,6 +9513,7 @@ li li li li +li ja ZY VC @@ -9609,6 +9539,7 @@ li li li li +li "} (47,1,1) = {" li @@ -9617,6 +9548,7 @@ li li li li +li DP hw VI @@ -9642,6 +9574,7 @@ li li li li +li "} (48,1,1) = {" li @@ -9650,6 +9583,7 @@ li li li li +li DP yX zb @@ -9675,6 +9609,7 @@ li li li li +li "} (49,1,1) = {" li @@ -9683,6 +9618,7 @@ li li li li +li hs lL sO @@ -9708,6 +9644,7 @@ li li li li +li "} (50,1,1) = {" li @@ -9716,6 +9653,7 @@ li li li li +li sd IL IL @@ -9741,6 +9679,7 @@ li li li li +li "} (51,1,1) = {" li @@ -9749,6 +9688,7 @@ li li li li +li iw Cv bT @@ -9774,6 +9714,7 @@ li li li li +li "} (52,1,1) = {" li @@ -9783,6 +9724,7 @@ li li li li +li Cv fh mu @@ -9807,6 +9749,7 @@ li li li li +li "} (53,1,1) = {" li @@ -9816,6 +9759,7 @@ li li li li +li iw Cv Gw @@ -9840,6 +9784,7 @@ li li li li +li "} (54,1,1) = {" li @@ -9850,6 +9795,7 @@ li li li li +li iw Cv Cv @@ -9873,6 +9819,7 @@ li li li li +li "} (55,1,1) = {" li @@ -9885,12 +9832,13 @@ li li li li +li iw Cv Dq fJ fJ -fJ +hQ fJ fJ qM @@ -9906,6 +9854,7 @@ li li li li +li "} (56,1,1) = {" li @@ -9919,6 +9868,7 @@ li li li li +li Cv li li @@ -9939,4 +9889,5 @@ li li li li +li "} diff --git a/_maps/shuttles/shiptest/nanotrasen_powerrangers.dmm b/_maps/shuttles/shiptest/nanotrasen_powerrangers.dmm index 6e5717b36587..ff32ffb0e011 100644 --- a/_maps/shuttles/shiptest/nanotrasen_powerrangers.dmm +++ b/_maps/shuttles/shiptest/nanotrasen_powerrangers.dmm @@ -1,4 +1,25 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -6; + pixel_y = -23 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage) "ad" = ( /obj/machinery/telecomms/hub, /turf/open/floor/circuit/airless, @@ -11,6 +32,17 @@ /obj/machinery/nuclearbomb/beer, /turf/open/floor/plasteel/grimy, /area/ship/hallway/fore) +"ak" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/blue, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "am" = ( /obj/structure/chair/pew/left, /turf/open/floor/plasteel/dark, @@ -67,6 +99,16 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"aH" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/machinery/door/poddoor{ + id = "thrusterblasts" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "aI" = ( /obj/structure/window/reinforced/spawner{ dir = 8 @@ -98,41 +140,9 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"aM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen/red, -/obj/machinery/door/window/lp/commissioner{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Commissioner's Shutters"; - id = "commshut" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "aP" = ( /turf/closed/wall/r_wall, /area/ship/science) -"aT" = ( -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/executive, -/area/ship/crew/dorm) "aW" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ @@ -168,21 +178,6 @@ /obj/machinery/smartfridge/drinks, /turf/open/floor/plasteel/grimy, /area/ship/hallway/fore) -"bw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/ship/science/ai_chamber) -"bC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "bD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/firedoor/border_only{ @@ -206,39 +201,57 @@ /obj/machinery/holopad/emergency/command, /turf/open/floor/circuit/green/anim, /area/ship/science/ai_chamber) -"bR" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner{ - dir = 8 +"bS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/button/door{ - dir = 1; - pixel_y = 7; - pixel_x = 7; - id = "entrance_shutt"; - name = "Entrance Shutters" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/radio/intercom{ +/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ dir = 1 }, /obj/machinery/light_switch{ - dir = 1; - pixel_y = 7; - pixel_x = -4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 + pixel_x = -9; + pixel_y = 24 }, -/obj/machinery/door/firedoor/border_only, +/obj/item/banner/security, /turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/area/ship/security) "bV" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"bX" = ( +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"cd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass/lp/cargo{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "cf" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/corner/opaque/blue{ @@ -256,28 +269,41 @@ /obj/machinery/atmospherics/pipe/simple/brown/visible, /turf/open/floor/plating, /area/ship/maintenance/starboard) +"cw" = ( +/obj/machinery/light/directional/west, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"cx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "outerinner"; + name = "Inner Aft Shutters" + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "cy" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit/green/anim, /area/ship/science/ai_chamber) -"cB" = ( +"cE" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/ship/maintenance/port) -"cH" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "cI" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ @@ -354,38 +380,16 @@ /obj/item/storage/backpack/duffelbag/med/surgery, /turf/open/floor/plasteel/dark, /area/ship/science) -"di" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ - dir = 5 +"dd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable/cyan{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"dj" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 6 - }, -/obj/machinery/computer/helm{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 + icon_state = "0-4" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/circuit/green/anim, +/area/ship/science/ai_chamber) "dl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -434,26 +438,14 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"dz" = ( -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "5-9" - }, -/obj/machinery/door/airlock/medical/glass/lp/medical, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +"dA" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ + dir = 10 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/turf/open/floor/plasteel/dark, +/area/ship/security) "dC" = ( /obj/structure/window/reinforced/spawner{ dir = 8 @@ -488,6 +480,17 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) +"dS" = ( +/obj/structure/table/reinforced, +/obj/item/aiModule/core/full/paladin, +/obj/item/aiModule/core/full/hippocratic, +/obj/item/aiModule/core/full/corp, +/obj/item/aiModule/core/full/asimovpp, +/obj/item/aiModule/core/full/asimov, +/obj/machinery/light/directional/west, +/obj/item/aiModule/reset/purge, +/turf/open/floor/circuit, +/area/ship/science/ai_chamber) "dV" = ( /obj/item/gun/energy/laser/redtag, /obj/item/gun/energy/laser/redtag, @@ -592,50 +595,12 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"eH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"eJ" = ( -/obj/structure/table/reinforced, -/obj/item/aiModule/core/full/paladin, -/obj/item/aiModule/core/full/hippocratic, -/obj/item/aiModule/core/full/corp, -/obj/item/aiModule/core/full/asimovpp, -/obj/item/aiModule/core/full/asimov, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/aiModule/reset/purge, -/turf/open/floor/circuit, -/area/ship/science/ai_chamber) "eN" = ( /obj/effect/turf_decal/siding/thinplating/light/end{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"eR" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable/cyan{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "eT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -654,6 +619,19 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"eU" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 9 + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "fd" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 10 @@ -687,11 +665,21 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"fr" = ( -/obj/machinery/camera/autoname{ +"fo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 }, -/turf/open/floor/plasteel/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/circuit, +/area/ship/science/ai_chamber) +"fr" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, /area/ship/hallway/central) "fx" = ( /obj/machinery/portable_atmospherics/canister/toxins, @@ -704,22 +692,9 @@ /obj/machinery/telecomms/bus, /turf/open/floor/circuit/airless, /area/ship/hallway/central) -"fA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/light_switch{ - pixel_y = 24; - pixel_x = 8 - }, -/turf/open/floor/plasteel/white, -/area/ship/hallway/fore) -"fG" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -23; - pixel_x = -6 - }, -/turf/open/floor/circuit, -/area/ship/science/ai_chamber) +"fH" = ( +/turf/closed/wall, +/area/ship/maintenance/port) "fJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -764,25 +739,6 @@ }, /turf/open/floor/vault, /area/ship/security) -"fZ" = ( -/obj/structure/table/reinforced, -/obj/item/table_bell{ - pixel_y = -7; - pixel_x = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/door/window/lp, -/obj/machinery/button/door{ - dir = 1; - pixel_x = 8; - pixel_y = 8; - name = "Entrance Lockdown Shutters"; - id = "entrance_lockdown" - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "gg" = ( /turf/closed/wall/r_wall, /area/ship/hallway/fore) @@ -821,33 +777,16 @@ }, /turf/open/floor/vault, /area/ship/security) -"gA" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 9 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 +"gD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/mob/living/simple_animal/pet/dog/corgi/Lisa, -/obj/machinery/camera/autoname{ - dir = 5 +/obj/machinery/advanced_airlock_controller{ + pixel_y = 28 }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"gE" = ( -/obj/structure/cable/cyan{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "gF" = ( /obj/machinery/chem_dispenser/drinks/beer{ dir = 1 @@ -859,6 +798,43 @@ /obj/structure/ore_box, /turf/open/floor/engine/hull, /area/ship/external) +"gL" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-9" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "outerinner"; + name = "Inner Aft Shutters"; + pixel_x = -7; + pixel_y = -4 + }, +/obj/machinery/button/door{ + id = "innerinner"; + name = "Inner Fore Shutters"; + pixel_x = -7; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "innerouter"; + name = "Outer Fore Shutters"; + pixel_x = 5; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "outerouter"; + name = "Outer Aft Shutters"; + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "gP" = ( /obj/structure/cable/cyan{ icon_state = "1-6" @@ -880,46 +856,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"hd" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/cyan{ - icon_state = "9-10" - }, -/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -2; - pixel_x = 3 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 22; - pixel_y = -9 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 7; - pixel_x = 3 - }, -/obj/item/screwdriver{ - pixel_y = 3 - }, -/obj/item/screwdriver{ - pixel_x = 2 - }, -/obj/item/screwdriver{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/screwdriver{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "hf" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 9 @@ -931,13 +867,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"hh" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/telecomms/message_server, -/turf/open/floor/circuit/airless, -/area/ship/hallway/central) "hi" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/black/line{ @@ -961,6 +890,32 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"hk" = ( +/obj/structure/table/reinforced, +/obj/item/table_bell{ + pixel_x = 10; + pixel_y = -7 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/window/lp, +/obj/machinery/button/door{ + dir = 1; + id = "entrance_lockdown"; + name = "Entrance Lockdown Shutters"; + pixel_x = 8; + pixel_y = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"hl" = ( +/obj/machinery/power/shuttle/engine/electric, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "hm" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -1013,40 +968,19 @@ }, /turf/open/floor/plasteel/dark, /area/ship/maintenance/port) -"hH" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable/cyan{ - icon_state = "0-4" - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) -"hL" = ( +"hJ" = ( /obj/structure/table/reinforced, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/fire, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"hM" = ( -/obj/structure/toilet{ - dir = 4 +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = -6 }, -/obj/machinery/light{ - dir = 8 +/obj/item/storage/toolbox/electrical{ + pixel_x = 3; + pixel_y = 7 }, -/turf/open/floor/plasteel/white, -/area/ship/hallway/fore) +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/ship/science) "hO" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 4 @@ -1079,6 +1013,41 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"hZ" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"ic" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/structure/showcase/cyborg, +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/open/floor/circuit/green/anim, +/area/ship/science/ai_chamber) +"id" = ( +/obj/structure/rack, +/obj/item/melee/chainofcommand, +/obj/item/grenade/chem_grenade/ez_clean, +/obj/item/documents/nanotrasen, +/obj/machinery/light/directional/south, +/turf/open/floor/vault, +/area/ship/security) "ih" = ( /obj/machinery/door/airlock/external, /obj/docking_port/mobile{ @@ -1093,20 +1062,9 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"il" = ( -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - locked = 1; - id = "ranger_shields"; - dir = 1 - }, -/obj/machinery/door/poddoor{ - id = "miningblastlp" - }, -/obj/structure/cable/cyan{ - icon_state = "0-9" - }, -/turf/open/floor/plasteel/dark, -/area/ship/storage) +"ix" = ( +/turf/closed/wall, +/area/ship/maintenance/starboard) "iz" = ( /obj/structure/table/reinforced, /obj/item/aicard, @@ -1141,6 +1099,27 @@ /obj/structure/curtain, /turf/open/floor/plasteel/white, /area/ship/hallway/fore) +"iL" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 9 + }, +/obj/item/radio/intercom/directional/west, +/mob/living/simple_animal/pet/dog/corgi/Lisa, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"iX" = ( +/obj/machinery/camera/autoname, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/south, +/obj/item/disk/holodisk/lp/airrecycler, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) "iZ" = ( /obj/structure/closet/secure_closet/lp/medical, /obj/item/gps, @@ -1263,44 +1242,26 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"jC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/command/glass/lp/port_hallway, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) -"jG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +"jG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable/cyan{ icon_state = "1-2" }, /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/ship/science/ai_chamber) -"jL" = ( -/obj/machinery/power/shuttle/engine/electric, -/obj/machinery/door/poddoor{ - id = "thrusterblasts" - }, -/obj/structure/cable/cyan{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) +"jR" = ( +/obj/machinery/light/directional/north, +/obj/machinery/telecomms/message_server, +/turf/open/floor/circuit/airless, +/area/ship/hallway/central) +"jW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/hallway/fore) "jZ" = ( /obj/structure/window/reinforced/spawner{ dir = 1 @@ -1312,6 +1273,10 @@ /obj/effect/turf_decal/corner/opaque/blue/diagonal, /turf/open/floor/plasteel/white, /area/ship/medical) +"kc" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/circuit, +/area/ship/science/ai_chamber) "kh" = ( /obj/machinery/holopad/emergency/science, /turf/open/floor/plasteel/dark, @@ -1376,6 +1341,34 @@ }, /turf/open/floor/engine/hull, /area/ship/external) +"kQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ + dir = 5 + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"kS" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/maintenance/port) "la" = ( /obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -1393,12 +1386,42 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science) +"lj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "outerinner"; + name = "Inner Aft Shutters" + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "lp" = ( /obj/machinery/camera/autoname{ dir = 1 }, /turf/open/floor/engine/hull, /area/ship/external) +"lv" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/areaeditor/shuttle{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/machinery/button/door{ + id = "commshut"; + name = "Commissioner's Office Shutters"; + pixel_x = -7; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "lK" = ( /obj/structure/window/reinforced/spawner{ dir = 1 @@ -1415,16 +1438,6 @@ /obj/effect/turf_decal/corner/opaque/blue/diagonal, /turf/open/floor/plasteel/white, /area/ship/medical) -"lO" = ( -/obj/structure/mecha_wreckage/durand, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science) "lW" = ( /obj/machinery/computer/operating, /obj/effect/turf_decal/corner/opaque/purple{ @@ -1435,46 +1448,34 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science) +"lX" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "mb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/carpet/executive, /area/ship/crew/dorm) -"me" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science) -"mf" = ( -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - locked = 1; - id = "ranger_shields" +"mh" = ( +/obj/effect/turf_decal/corner/opaque/blue/mono, +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + dir = 1; + pixel_y = -6 }, -/obj/machinery/door/poddoor{ - id = "miningblastlp" +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + pixel_y = 6 }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable/cyan{ - icon_state = "0-10" + icon_state = "4-8" }, +/obj/effect/landmark/observer_start, /turf/open/floor/plasteel/dark, -/area/ship/storage) -"mj" = ( -/obj/structure/table/rolling, -/obj/item/reagent_containers/spray/cleaner{ - pixel_y = 8; - pixel_x = 8 - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/area/ship/hallway/central) "mk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -1500,17 +1501,23 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"mp" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/advanced, -/obj/item/storage/firstaid/brute, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/cyan{ - icon_state = "0-2" +"mv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/turf/open/floor/plasteel/white, -/area/ship/medical) +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"mw" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/blue/end{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "my" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -1520,16 +1527,14 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"mz" = ( -/obj/machinery/door/poddoor{ - id = "thrusterblasts" - }, -/obj/machinery/power/shuttle/engine/electric, -/obj/structure/cable/cyan{ - icon_state = "0-2" +"mJ" = ( +/obj/machinery/suit_storage_unit/independent/mining/eva, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 9 }, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/turf/open/floor/plasteel/dark, +/area/ship/storage) "mQ" = ( /turf/closed/wall/r_wall, /area/ship/engineering/atmospherics) @@ -1538,6 +1543,19 @@ /obj/machinery/power/solar, /turf/open/floor/plating/airless, /area/ship/external) +"mZ" = ( +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "ne" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -1547,12 +1565,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"nf" = ( -/obj/machinery/door/poddoor{ - id = "miningblastlp" - }, -/turf/open/floor/plasteel/dark, -/area/ship/storage) "ng" = ( /obj/machinery/light_switch{ dir = 4; @@ -1577,14 +1589,72 @@ }, /turf/open/floor/plating, /area/ship/crew/dorm) -"nv" = ( +"nt" = ( +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/obj/item/gps/mining, +/obj/item/gps/mining, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/structure/closet/secure_closet/miner, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/obj/item/radio/headset/nanotrasen, +/turf/open/floor/plasteel/dark, +/area/ship/storage) +"nA" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner, /obj/structure/window/reinforced/spawner{ - dir = 1 + dir = 8 }, -/obj/machinery/power/smes/shuttle/precharged, -/obj/structure/cable/cyan, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/obj/machinery/button/door{ + dir = 1; + id = "entrance_shutt"; + name = "Entrance Shutters"; + pixel_x = 7; + pixel_y = 7 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/item/radio/intercom/directional/north{ + pixel_y = -15; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"nQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-9" + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage) "of" = ( /obj/machinery/power/terminal{ dir = 1 @@ -1594,18 +1664,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"oh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/advanced_airlock_controller{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "ok" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/black/line{ @@ -1614,27 +1672,21 @@ /obj/effect/turf_decal/trimline/opaque/black/line, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"ow" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/paicard{ - pixel_x = 6 +"oq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 24 }, -/obj/item/coin/runite{ - pixel_y = -4; - pixel_x = -7 +/turf/open/floor/plasteel/white, +/area/ship/hallway/fore) +"or" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/cyan{ + icon_state = "0-2" }, /turf/open/floor/plasteel/dark, -/area/ship/bridge) +/area/ship/hallway/port) "oy" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ @@ -1712,12 +1764,11 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science) -"pm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light{ +"pi" = ( +/obj/structure/toilet{ dir = 4 }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/white, /area/ship/hallway/fore) "po" = ( @@ -1742,6 +1793,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science) +"pp" = ( +/obj/effect/turf_decal/corner/opaque/blue/mono, +/obj/effect/turf_decal/trimline/opaque/black/line, +/obj/effect/turf_decal/trimline/opaque/black/line{ + pixel_y = -5 + }, +/obj/structure/chair/greyscale{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "pr" = ( /obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1775,12 +1838,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"py" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ship/science/ai_chamber) "pA" = ( /obj/effect/turf_decal/industrial/hatch, /obj/effect/turf_decal/industrial/outline/orange, @@ -1795,6 +1852,30 @@ }, /turf/open/floor/plasteel/stairs, /area/ship/hallway/central) +"pD" = ( +/obj/item/reagent_containers/food/snacks/carrotfries, +/obj/item/reagent_containers/food/snacks/cubancarp, +/obj/item/reagent_containers/food/snacks/sashimi, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/pizza/vegetable, +/obj/item/reagent_containers/food/snacks/pizza/meat, +/obj/item/reagent_containers/food/snacks/spaghetti/pastatomato, +/obj/item/reagent_containers/food/snacks/store/bread/creamcheese, +/obj/item/reagent_containers/food/snacks/grilledcheese, +/obj/item/reagent_containers/food/snacks/burger/plain, +/obj/item/reagent_containers/food/snacks/burger/plain, +/obj/item/reagent_containers/food/snacks/spaghetti/pastatomato, +/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/bbqribs, +/obj/structure/closet/secure_closet/freezer{ + desc = "A refrigerated cabinet for food."; + name = "Refrigerator" + }, +/obj/item/reagent_containers/food/snacks/store/bread/meat, +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/fore) "qb" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/trimline/opaque/grey/filled/line{ @@ -1802,20 +1883,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"ql" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/maintenance/starboard) -"qx" = ( -/obj/machinery/light, -/turf/open/floor/circuit, -/area/ship/science/ai_chamber) "qF" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/black/line{ @@ -1845,16 +1912,38 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"qR" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/cyan{ - icon_state = "0-2" +"qQ" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ + dir = 4 }, /turf/open/floor/plasteel/dark, -/area/ship/hallway/central) +/area/ship/hallway/fore) +"qS" = ( +/obj/machinery/power/smes/shuttle/precharged, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/cable/cyan, +/obj/machinery/door/poddoor{ + id = "thrusterblasts" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "qZ" = ( /turf/open/floor/plating, /area/ship/maintenance/port) +"rc" = ( +/obj/structure/mecha_wreckage/durand, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/science) "rd" = ( /obj/structure/tank_dispenser/oxygen, /obj/effect/turf_decal/corner/opaque/orange/mono, @@ -1900,25 +1989,6 @@ /obj/item/borg/upgrade/ai, /turf/open/floor/plasteel/dark, /area/ship/science) -"rz" = ( -/obj/machinery/power/shuttle/engine/electric, -/obj/machinery/door/poddoor{ - id = "thrusterblasts" - }, -/obj/structure/cable/cyan{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"rB" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/turf_decal/industrial/stand_clear, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "rF" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/black/line{ @@ -1966,26 +2036,29 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"rX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" +"rZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "outerinner"; + name = "Inner Aft Shutters" }, -/obj/structure/cable/cyan{ - icon_state = "1-9" +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"sf" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 10 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -23 +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 }, -/obj/effect/turf_decal/corner/opaque/orange{ - dir = 10 +/obj/machinery/light/directional/east, +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 }, /turf/open/floor/plasteel/dark, -/area/ship/storage) +/area/ship/bridge) "sk" = ( /obj/effect/turf_decal/trimline/opaque/grey/filled/line, /obj/structure/rack, @@ -2005,6 +2078,18 @@ /obj/machinery/vending/boozeomat/all_access, /turf/open/floor/plasteel/grimy, /area/ship/hallway/fore) +"sq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "innerinner"; + name = "Inner Fore Shutters" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/ship/bridge) "st" = ( /obj/structure/rack, /obj/machinery/door/window/lp/medic{ @@ -2022,6 +2107,16 @@ /obj/item/gun/energy/e_gun/mindshield, /turf/open/floor/plasteel/dark, /area/ship/security) +"sw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/engine/hull, +/area/ship/external) +"sF" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "sJ" = ( /turf/closed/wall/r_wall, /area/ship/hallway/central) @@ -2054,6 +2149,14 @@ /obj/structure/cable/cyan, /turf/open/floor/engine/hull, /area/ship/external) +"sU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname, +/turf/open/floor/plating, +/area/ship/science/ai_chamber) "tg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -2063,16 +2166,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"ti" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/light, -/turf/open/floor/circuit, -/area/ship/science/ai_chamber) "tj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/firedoor/border_only{ @@ -2105,17 +2198,41 @@ /obj/effect/turf_decal/corner/opaque/blue/diagonal, /turf/open/floor/plasteel/white, /area/ship/medical) -"tv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"tC" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"tJ" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-9" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/obj/machinery/door/airlock/command/glass/lp/commissioner, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage) +"tK" = ( +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ - name = "Commissioner's Shutters"; - id = "commshut" + dir = 4; + id = "commshut"; + name = "Commissioner's Shutters" }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2123,42 +2240,8 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"tC" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/camera/autoname{ - dir = 8 - }, /turf/open/floor/plating, -/area/ship/maintenance/port) -"tD" = ( -/obj/item/reagent_containers/food/snacks/carrotfries, -/obj/item/reagent_containers/food/snacks/cubancarp, -/obj/item/reagent_containers/food/snacks/sashimi, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/pizza/vegetable, -/obj/item/reagent_containers/food/snacks/pizza/meat, -/obj/item/reagent_containers/food/snacks/spaghetti/pastatomato, -/obj/item/reagent_containers/food/snacks/store/bread/creamcheese, -/obj/item/reagent_containers/food/snacks/grilledcheese, -/obj/item/reagent_containers/food/snacks/burger/plain, -/obj/item/reagent_containers/food/snacks/burger/plain, -/obj/item/reagent_containers/food/snacks/spaghetti/pastatomato, -/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/bbqribs, -/obj/structure/closet/secure_closet/freezer{ - name = "Refrigerator"; - desc = "A refrigerated cabinet for food." - }, -/obj/item/reagent_containers/food/snacks/store/bread/meat, -/turf/open/floor/plasteel/grimy, -/area/ship/hallway/fore) +/area/ship/bridge) "uk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -2168,18 +2251,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"uo" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden/layer4{ - dir = 6 - }, -/obj/machinery/advanced_airlock_controller{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/science/ai_chamber) "up" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/firedoor/border_only, @@ -2202,21 +2273,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"ut" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "uw" = ( /obj/structure/closet/cabinet, /turf/open/floor/carpet/executive, /area/ship/crew/dorm) -"uB" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 6 - }, -/obj/structure/closet/crate, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/box, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "uH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2276,12 +2343,33 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"vD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 +"vB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/fire, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/ship/medical) +"vF" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 }, -/turf/open/floor/circuit/green/anim, -/area/ship/science/ai_chamber) +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) +"vN" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 6 + }, +/obj/machinery/computer/helm{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "vS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 @@ -2327,16 +2415,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"wb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable/cyan, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science) "wf" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -2377,6 +2455,16 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) +"wp" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden/layer4{ + dir = 6 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_y = 28 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/ship/science/ai_chamber) "wq" = ( /turf/open/floor/engine/hull, /area/ship/external) @@ -2389,6 +2477,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"wC" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/machinery/power/smes/shuttle/precharged, +/obj/structure/cable/cyan, +/obj/machinery/door/poddoor{ + id = "thrusterblasts" + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "wD" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 5 @@ -2397,6 +2496,19 @@ /obj/machinery/computer/cargo/express, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"wE" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "wO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -2433,26 +2545,6 @@ /obj/structure/curtain/cloth, /turf/open/floor/plasteel/white, /area/ship/medical) -"xg" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/defibrillator, -/obj/item/stock_parts/cell/high, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks, -/obj/item/storage/belt/medical/surgery, -/obj/item/storage/belt/medical/surgery, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/item/clothing/suit/hooded/wintercoat/medical, -/obj/item/clothing/under/rank/medical/doctor/blue, -/obj/item/clothing/under/rank/medical/doctor/nurse, -/obj/item/clothing/under/rank/medical/doctor/skirt, -/obj/item/holosign_creator/medical, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) "xj" = ( /obj/machinery/shower{ dir = 8 @@ -2473,6 +2565,17 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"xp" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/machinery/power/smes/shuttle/precharged, +/obj/structure/cable/cyan, +/obj/machinery/door/poddoor{ + id = "thrusterblasts" + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "xq" = ( /obj/structure/frame/machine, /obj/effect/turf_decal/corner/opaque/purple{ @@ -2543,40 +2646,7 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"xW" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 9 - }, -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"ye" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder/constructed{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 7 - }, -/obj/item/kitchen/knife, -/obj/item/reagent_containers/glass/rag{ - pixel_y = -6 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/hallway/fore) -"yk" = ( +"xT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, @@ -2586,7 +2656,9 @@ /obj/structure/cable/cyan{ icon_state = "4-8" }, -/obj/machinery/door/airlock/command/glass/lp/dorms, +/obj/machinery/door/airlock/command/glass/lp/dorms{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, @@ -2595,6 +2667,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/dorm) +"yh" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/circuit, +/area/ship/science/ai_chamber) "yo" = ( /obj/structure/mineral_door/wood, /turf/open/floor/plasteel/white, @@ -2611,50 +2687,39 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"yz" = ( -/obj/structure/cable/cyan{ - icon_state = "4-8" +"yA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/button/door{ - pixel_y = 24; - id = "thrusterblasts"; - name = "Thruster Blast Doors" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"yC" = ( -/obj/machinery/camera/autoname{ - dir = 5 +/obj/structure/cable/cyan{ + icon_state = "4-8" }, -/turf/open/floor/circuit, -/area/ship/science/ai_chamber) -"yJ" = ( -/turf/closed/wall/r_wall, -/area/ship/crew/dorm) -"yP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Inner Aft Shutters"; - id = "outerinner" +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"yQ" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/caution, -/obj/item/reagent_containers/glass/bucket, +/area/ship/security) +"yC" = ( /obj/machinery/camera/autoname{ dir = 5 }, -/obj/machinery/light{ - dir = 8 +/turf/open/floor/circuit, +/area/ship/science/ai_chamber) +"yD" = ( +/obj/machinery/autolathe, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 10 }, -/obj/item/storage/box/lights/bulbs, /turf/open/floor/plasteel/dark, -/area/ship/hallway/port) +/area/ship/science) +"yJ" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/dorm) "yU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -2664,30 +2729,38 @@ }, /turf/open/floor/engine, /area/ship/engineering/atmospherics) -"yW" = ( -/obj/machinery/door/window, -/obj/machinery/door/window{ - dir = 1 +"yZ" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" }, -/obj/structure/window/reinforced/spawner{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = 8 }, -/obj/structure/window/reinforced/spawner{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 1 }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - locked = 1; - id = "ranger_telecomms"; - dir = 4 +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 6 }, -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - locked = 1; - id = "ranger_telecomms"; - dir = 8 +/obj/machinery/button/door{ + dir = 8; + id = "miningblastlp"; + name = "Mining Bay Blast Doors"; + pixel_x = 22; + pixel_y = -9 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/circuit/green, -/area/ship/hallway/central) +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "ranger_shields"; + pixel_x = 22 + }, +/obj/effect/turf_decal/industrial/warning/corner, +/turf/open/floor/plasteel/dark, +/area/ship/storage) "zc" = ( /obj/machinery/power/smes, /obj/structure/cable/cyan{ @@ -2695,23 +2768,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"zh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command/glass/lp/bridge, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Inner Fore Shutters"; - id = "innerinner" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "zk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable/cyan{ @@ -2743,21 +2799,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/storage) -"zB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/circuitboard/machine/telecomms/processor, -/obj/item/circuitboard/machine/telecomms/server, -/obj/item/circuitboard/machine/telecomms/relay, -/obj/item/circuitboard/machine/telecomms/hub, -/obj/item/circuitboard/machine/telecomms/bus, -/obj/effect/turf_decal/siding/thinplating/light/end{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "zF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -2832,22 +2873,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"AB" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable/cyan{ - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - icon_state = "1-9" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "AF" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/black/line{ @@ -2862,6 +2887,19 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"AO" = ( +/obj/structure/cable/cyan{ + icon_state = "4-9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "AZ" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ @@ -2919,31 +2957,6 @@ /obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"Bt" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/radio/intercom{ - dir = 8; - pixel_y = 2; - pixel_x = -1 - }, -/turf/open/floor/circuit/red/airless, -/area/ship/science/ai_chamber) -"Bv" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "BA" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -2955,15 +2968,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ship/maintenance/starboard) -"BB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) "BC" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -2972,15 +2976,53 @@ }, /turf/open/floor/carpet/executive, /area/ship/crew/dorm) -"BN" = ( +"BI" = ( +/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/cyan, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/science) +"BO" = ( /obj/effect/turf_decal/corner/opaque/blue{ - dir = 5 + dir = 1 }, -/obj/item/radio/intercom/wideband{ - pixel_y = 27 +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 6 }, +/obj/item/gun/ballistic/revolver/detective, +/obj/item/kitchen/knife/combat/survival, +/obj/item/clothing/under/rank/civilian/lawyer/bluesuit/skirt, +/obj/item/clothing/under/rank/civilian/lawyer/bluesuit, +/obj/item/clothing/under/rank/civilian/lawyer/female, +/obj/item/clothing/under/rank/civilian/lawyer/female/skirt, +/obj/item/clothing/shoes/jackboots, +/obj/item/storage/fancy/cigarettes/cigars/cohiba, +/obj/item/lighter, +/obj/item/clothing/suit/armor/vest, +/obj/machinery/light/directional/east, +/obj/structure/closet/secure_closet/lp/commissioner, +/obj/item/ammo_box/c38/hotshot, +/obj/item/ammo_box/c38_box, +/obj/item/clothing/head/beret/puce, +/obj/item/radio/headset/nanotrasen/alt/captain, +/obj/item/radio/headset/nanotrasen/captain, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Ca" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/brute, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/ship/medical) "Ce" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -3021,14 +3063,13 @@ }, /turf/open/floor/plating, /area/ship/science/ai_chamber) -"Cr" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ - dir = 10 +"Cm" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 6 }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/dark, -/area/ship/security) +/area/ship/bridge) "Cx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -3109,6 +3150,46 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) +"CN" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/cyan{ + icon_state = "9-10" + }, +/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 22; + pixel_y = -9 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/screwdriver{ + pixel_y = 3 + }, +/obj/item/screwdriver{ + pixel_x = 2 + }, +/obj/item/screwdriver{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/screwdriver{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) "CP" = ( /obj/structure/table/wood/poker, /obj/effect/turf_decal/corner/opaque/blue/mono, @@ -3124,18 +3205,17 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"CW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ - dir = 6 +"CV" = ( +/obj/structure/table/rolling, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 8; + pixel_y = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/ship/medical) "CY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -3145,23 +3225,23 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) -"De" = ( -/turf/open/floor/plasteel/grimy, -/area/ship/hallway/fore) -"Dj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Inner Aft Shutters"; - id = "outerinner" +"Dd" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/purple{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, -/area/ship/bridge) +/area/ship/science) +"De" = ( +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/fore) +"Df" = ( +/obj/structure/bed, +/obj/item/bedsheet/nanotrasen, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/executive, +/area/ship/crew/dorm) "Do" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/structure/cable/cyan{ @@ -3195,19 +3275,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"Ds" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "1-10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) "Dw" = ( /obj/structure/window/reinforced/spawner, /obj/structure/table/reinforced, @@ -3222,39 +3289,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/science) -"Dx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Inner Aft Shutters"; - id = "outerinner" - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"DA" = ( -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/pickaxe/mini, -/obj/item/pickaxe/mini, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/structure/closet/secure_closet/miner, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/orange{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/orange{ - dir = 5 - }, -/obj/machinery/airalarm/directional/north, -/obj/item/radio/headset/nanotrasen, -/turf/open/floor/plasteel/dark, -/area/ship/storage) "DH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/cyan{ @@ -3268,13 +3302,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"DR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/structure/showcase/cyborg, -/turf/open/floor/engine/hull, -/area/ship/external) "Ek" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -3288,6 +3315,10 @@ /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/plasteel/dark, /area/ship/maintenance/starboard) +"En" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/circuit, +/area/ship/science/ai_chamber) "Eq" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/glass/fifty, @@ -3373,6 +3404,17 @@ /obj/effect/turf_decal/trimline/opaque/black/line, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"Fi" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "thrusterblasts"; + name = "Thruster Blast Doors"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "Fo" = ( /obj/structure/frame/machine, /obj/effect/turf_decal/corner/opaque/purple{ @@ -3380,6 +3422,30 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science) +"Fw" = ( +/obj/structure/table/wood, +/obj/item/camera{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/storage/crayons{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/camera_film{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/camera_film{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/carpet/executive, +/area/ship/crew/dorm) "Fx" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, @@ -3389,6 +3455,21 @@ /obj/machinery/light/floor, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Fz" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 1; + id = "ranger_shields"; + locked = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "0-9" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "miningblastlp" + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage) "FB" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 10 @@ -3440,15 +3521,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"FX" = ( -/obj/structure/bed, -/obj/item/bedsheet/nanotrasen, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/carpet/executive, -/area/ship/crew/dorm) "Gc" = ( /obj/structure/frame/machine, /obj/effect/turf_decal/corner/opaque/purple{ @@ -3459,57 +3531,35 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science) -"Gq" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 5 - }, -/obj/effect/turf_decal/corner/opaque/blue, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Gv" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 22; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/corner/opaque/orange{ +"Ge" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater, +/obj/structure/window/reinforced/spawner{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/orange{ - dir = 6 - }, -/obj/machinery/button/door{ - dir = 8; - pixel_y = -9; - pixel_x = 22; - id = "miningblastlp"; - name = "Mining Bay Blast Doors" - }, -/obj/machinery/button/shieldwallgen{ - dir = 8; - pixel_x = 22; - id = "ranger_shields" +/obj/machinery/door/poddoor{ + id = "thrusterblasts" }, -/obj/effect/turf_decal/industrial/warning/corner, -/turf/open/floor/plasteel/dark, -/area/ship/storage) +/turf/open/floor/plating, +/area/ship/maintenance/port) "Gz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/science) +"GA" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/storage/toolbox/electrical, +/obj/item/stack/sheet/rglass{ + amount = 25 + }, +/obj/item/wrench, +/turf/open/floor/circuit, +/area/ship/science/ai_chamber) +"GC" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/circuit, +/area/ship/science/ai_chamber) "GE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 @@ -3534,13 +3584,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/storage) -"GL" = ( -/obj/machinery/door/poddoor{ - id = "thrusterblasts" - }, -/obj/machinery/power/shuttle/engine/fueled/plasma, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "GN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -3553,31 +3596,6 @@ /obj/machinery/light/floor, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"GO" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"GQ" = ( -/obj/machinery/door/poddoor{ - id = "thrusterblasts" - }, -/obj/machinery/power/shuttle/engine/electric, -/obj/structure/cable/cyan{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "GT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -3615,17 +3633,35 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Hr" = ( -/obj/structure/cable/cyan{ - icon_state = "4-8" +"Ha" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window{ + dir = 8 }, -/obj/machinery/button/door{ - pixel_y = 24; - id = "thrusterblasts"; - name = "Thruster Blast Doors" +/obj/item/paper_bin, +/obj/item/pen/red, +/obj/machinery/door/window/lp/commissioner{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "commshut"; + name = "Commissioner's Shutters" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Hs" = ( +/obj/machinery/power/shuttle/engine/electric, +/obj/structure/cable/cyan{ + icon_state = "0-2" }, /turf/open/floor/plating, -/area/ship/maintenance/starboard) +/area/ship/maintenance/port) "Hy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -3653,27 +3689,6 @@ }, /turf/open/floor/plasteel/white, /area/ship/medical) -"HP" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable/cyan{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/port) -"HS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Commissioner's Shutters"; - id = "commshut" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/bridge) "HU" = ( /obj/effect/turf_decal/trimline/opaque/grey/filled/line, /obj/structure/rack, @@ -3689,40 +3704,12 @@ /obj/item/gun/energy/e_gun/mindshield, /turf/open/floor/plasteel/dark, /area/ship/security) -"HW" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/carpet/executive, -/area/ship/crew/dorm) -"HX" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 6 - }, -/obj/item/gun/ballistic/revolver/detective, -/obj/item/kitchen/knife/combat/survival, -/obj/item/clothing/under/rank/civilian/lawyer/bluesuit/skirt, -/obj/item/clothing/under/rank/civilian/lawyer/bluesuit, -/obj/item/clothing/under/rank/civilian/lawyer/female, -/obj/item/clothing/under/rank/civilian/lawyer/female/skirt, -/obj/item/clothing/shoes/jackboots, -/obj/item/storage/fancy/cigarettes/cigars/cohiba, -/obj/item/lighter, -/obj/item/clothing/suit/armor/vest, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/lp/commissioner, -/obj/item/ammo_box/c38/hotshot, -/obj/item/ammo_box/c38_box, -/obj/item/clothing/head/beret/puce, -/obj/item/radio/headset/nanotrasen/alt/captain, -/obj/item/radio/headset/nanotrasen/captain, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +"HW" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/ship/crew/dorm) "HZ" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -3788,23 +3775,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"IA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 24; - pixel_x = -9 - }, -/obj/item/banner/security, -/turf/open/floor/plasteel/dark, -/area/ship/security) "IG" = ( /obj/machinery/camera/autoname{ dir = 9 @@ -3843,29 +3813,25 @@ /obj/effect/turf_decal/corner/opaque/blue/diagonal, /turf/open/floor/plasteel/white, /area/ship/medical) -"IV" = ( -/obj/machinery/door/poddoor{ - id = "thrusterblasts" - }, +"Ja" = ( /obj/machinery/power/shuttle/engine/fueled/plasma, /turf/open/floor/plating, /area/ship/maintenance/port) -"IY" = ( -/obj/structure/cable/cyan{ - icon_state = "4-9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"Ji" = ( +/obj/machinery/light/directional/west, +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder/constructed{ + pixel_x = -8 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -23 +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 7 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/item/kitchen/knife, +/obj/item/reagent_containers/glass/rag{ + pixel_y = -6 }, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/fore) "Jl" = ( /obj/effect/turf_decal/corner/opaque/blue/mono, /obj/effect/turf_decal/trimline/opaque/black/line{ @@ -4079,27 +4045,23 @@ /obj/item/radio/headset/nanotrasen/captain, /turf/open/floor/plasteel/dark, /area/ship/security) -"Kx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - icon_state = "1-8" - }, +"Kw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/orange{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" }, /obj/machinery/light_switch{ dir = 1; - pixel_y = -23; - pixel_x = -6 + pixel_x = -6; + pixel_y = -23 }, /turf/open/floor/plasteel/dark, -/area/ship/storage) +/area/ship/hallway/port) "Kz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/cyan{ @@ -4165,57 +4127,49 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"Lk" = ( -/turf/closed/wall/r_wall, -/area/ship/bridge) -"Lt" = ( +"Lg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ - dir = 1 +/obj/structure/cable/cyan{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"LD" = ( -/obj/machinery/camera/autoname{ - dir = 5 +/obj/machinery/door/airlock/command/glass/lp/port_hallway{ + dir = 4 }, -/obj/machinery/light{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/effect/turf_decal/siding/blue/end{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, /turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"Lk" = ( +/turf/closed/wall/r_wall, /area/ship/bridge) -"LP" = ( -/obj/structure/table/wood, -/obj/item/camera{ - pixel_y = 9; - pixel_x = 6 - }, -/obj/item/storage/crayons{ - pixel_x = -5; - pixel_y = 7 +"Lm" = ( +/obj/machinery/computer/cryopod/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/obj/item/toy/crayon/spraycan{ - pixel_y = 4; - pixel_x = 9 +/turf/open/floor/carpet/executive, +/area/ship/crew/dorm) +"Lt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/item/camera_film{ - pixel_x = 8; - pixel_y = -4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/camera_film{ - pixel_x = -8; - pixel_y = 2 +/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ + dir = 1 }, -/turf/open/floor/carpet/executive, -/area/ship/crew/dorm) +/turf/open/floor/plasteel/dark, +/area/ship/security) "LQ" = ( /obj/item/disk/holodisk/lp/stations, /turf/open/floor/circuit/airless, @@ -4228,6 +4182,36 @@ "LV" = ( /turf/closed/wall/r_wall, /area/ship/maintenance/port) +"Ma" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 6 + }, +/obj/structure/closet/crate, +/obj/machinery/light/directional/east, +/obj/item/storage/box, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Mf" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/paicard{ + pixel_x = 6 + }, +/obj/item/coin/runite{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Mg" = ( /obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, /turf/open/floor/plasteel/dark, @@ -4276,18 +4260,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"ME" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/stack/sheet/rglass{ - amount = 25 - }, -/obj/item/wrench, -/turf/open/floor/circuit, -/area/ship/science/ai_chamber) "ML" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ dir = 1 @@ -4306,29 +4278,18 @@ }, /turf/open/floor/carpet/executive, /area/ship/crew/dorm) -"Nd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -23; - pixel_x = -6 +"Nj" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/item/caution, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/camera/autoname{ + dir = 5 }, +/obj/machinery/light/directional/west, +/obj/item/storage/box/lights/bulbs, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) -"Nf" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ship/hallway/fore) "Nn" = ( /obj/machinery/chem_dispenser/drinks{ dir = 1 @@ -4350,6 +4311,19 @@ /obj/effect/turf_decal/corner/opaque/blue, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"NM" = ( +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced, +/obj/item/circuitboard/machine/telecomms/processor, +/obj/item/circuitboard/machine/telecomms/server, +/obj/item/circuitboard/machine/telecomms/relay, +/obj/item/circuitboard/machine/telecomms/hub, +/obj/item/circuitboard/machine/telecomms/bus, +/obj/effect/turf_decal/siding/thinplating/light/end{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "NR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/cyan{ @@ -4396,16 +4370,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/science) -"Oh" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -23 - }, -/obj/structure/chair/stool/bar{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "Oi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -4430,6 +4394,19 @@ /obj/item/banner/medical, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) +"Ou" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/item/radio/intercom/wideband/table, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) "Ov" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -4481,75 +4458,64 @@ /obj/item/implanter, /turf/open/floor/vault, /area/ship/security) -"OS" = ( -/obj/structure/table/wood, -/obj/structure/bedsheetbin, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/cyan, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -27; - pixel_y = 8 - }, -/turf/open/floor/carpet/executive, -/area/ship/crew/dorm) -"Pe" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner{ - dir = 4 +"OY" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "ranger_shields"; + locked = 1 }, -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = 4; - pixel_x = -2 +/obj/machinery/door/poddoor{ + dir = 4; + id = "miningblastlp" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/structure/cable/cyan{ + icon_state = "0-10" }, /turf/open/floor/plasteel/dark, -/area/ship/hallway/fore) +/area/ship/storage) "Ph" = ( /obj/structure/fireaxecabinet{ pixel_y = 32 }, /turf/open/floor/vault, /area/ship/security) -"Pi" = ( -/obj/structure/rack, -/obj/item/melee/chainofcommand, -/obj/item/grenade/chem_grenade/ez_clean, -/obj/item/documents/nanotrasen, -/obj/machinery/light, -/turf/open/floor/vault, -/area/ship/security) -"Pk" = ( -/obj/machinery/light{ +"Pm" = ( +/obj/docking_port/stationary{ + dwidth = 15; + width = 30; + height = 15; dir = 4 }, -/obj/effect/turf_decal/siding/blue/end{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Pl" = ( -/obj/machinery/power/smes/shuttle/precharged, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/cable/cyan, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) +/turf/template_noop, +/area/template_noop) "Po" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Pp" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "miningblastlp" + }, +/turf/open/floor/plasteel/dark, +/area/ship/storage) +"Pq" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/structure/chair/comfy/black{ dir = 4 }, /obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ - dir = 1 + dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) @@ -4564,25 +4530,6 @@ /obj/effect/turf_decal/trimline/opaque/mauve/filled/line, /turf/open/floor/plasteel/dark, /area/ship/security) -"Pw" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/cyan{ - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - icon_state = "1-9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/corner/opaque/orange{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ship/storage) "PB" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -4605,37 +4552,21 @@ /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on/layer4, /turf/open/floor/circuit/airless, /area/ship/hallway/central) -"PW" = ( -/obj/machinery/autolathe, -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/purple{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science) -"Qb" = ( -/obj/machinery/camera/autoname, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light, -/obj/item/disk/holodisk/lp/airrecycler, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"Qi" = ( -/obj/machinery/light{ - dir = 4 +"Qa" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/turf_decal/industrial/stand_clear, +/obj/machinery/light/directional/west, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Qk" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -6; + pixel_y = -23 }, /turf/open/floor/circuit, /area/ship/science/ai_chamber) -"Qs" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "Qt" = ( /obj/structure/window/reinforced/spawner{ dir = 8 @@ -4706,6 +4637,23 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"Rg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command/glass/lp/bridge, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "innerinner"; + name = "Inner Fore Shutters" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Rj" = ( /obj/structure/cable/cyan{ icon_state = "9-10" @@ -4718,6 +4666,17 @@ /obj/structure/cable/cyan, /turf/open/floor/plating/airless, /area/ship/external) +"RA" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "thrusterblasts"; + name = "Thruster Blast Doors"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "RB" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -4727,21 +4686,14 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"RF" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/machinery/power/smes/shuttle/precharged, -/obj/structure/cable/cyan, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) -"RO" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater, +"RN" = ( /obj/structure/window/reinforced/spawner{ - dir = 1 + dir = 8 }, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/directional/south, +/turf/open/floor/circuit/red/airless, +/area/ship/science/ai_chamber) "RS" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -4755,18 +4707,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/maintenance/starboard) -"Sd" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/cyan{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/maintenance/port) "Sl" = ( /obj/effect/turf_decal/corner/opaque/blue{ dir = 9 @@ -4782,43 +4722,16 @@ /obj/effect/spawner/lootdrop/lpcombat, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"SA" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 +"SE" = ( +/obj/machinery/power/terminal{ + dir = 1 }, /obj/structure/cable/cyan{ - icon_state = "1-9" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - pixel_y = -4; - pixel_x = -7; - name = "Inner Aft Shutters"; - id = "outerinner" - }, -/obj/machinery/button/door{ - pixel_y = 6; - pixel_x = -7; - name = "Inner Fore Shutters"; - id = "innerinner" - }, -/obj/machinery/button/door{ - pixel_y = 6; - pixel_x = 5; - name = "Outer Fore Shutters"; - id = "innerouter" - }, -/obj/machinery/button/door{ - pixel_y = -4; - pixel_x = 5; - name = "Outer Aft Shutters"; - id = "outerouter" + icon_state = "0-4" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/ship/maintenance/starboard) "SI" = ( /obj/structure/chair/sofa{ dir = 4 @@ -4831,23 +4744,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"SO" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "SZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable/cyan{ @@ -4878,10 +4774,52 @@ "Tb" = ( /turf/closed/wall/r_wall, /area/ship/storage) +"Tf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass/lp/commissioner{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "commshut"; + name = "Commissioner's Shutters" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Th" = ( /obj/machinery/vending/autodrobe/all_access, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) +"Tm" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 5 + }, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Ty" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/cyan, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -27; + pixel_y = 8 + }, +/turf/open/floor/carpet/executive, +/area/ship/crew/dorm) "Tz" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/turf_decal/industrial/stand_clear, @@ -4926,6 +4864,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"TN" = ( +/obj/effect/turf_decal/corner/opaque/blue{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-9" + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "TR" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 @@ -4939,34 +4893,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/port) -"TV" = ( -/obj/effect/turf_decal/corner/opaque/blue/mono, -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ - dir = 1; - pixel_y = -6 - }, -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) -"Ub" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/cyan{ - icon_state = "0-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/starboard) "Uj" = ( /obj/machinery/computer/telecomms/server, /turf/open/floor/plasteel/dark, @@ -5005,49 +4931,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/maintenance/starboard) -"Uv" = ( -/obj/structure/cable/cyan{ - icon_state = "1-6" - }, -/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "UD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/ship/science) -"UN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/science) -"UR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/command/glass/lp/security, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ +/area/ship/science) +"UN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/ship/security) +/area/ship/science) "UU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -5122,6 +5017,17 @@ }, /turf/open/floor/plating, /area/ship/hallway/fore) +"Vq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/port) "Vw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -5131,19 +5037,6 @@ }, /turf/open/floor/carpet/executive, /area/ship/crew/dorm) -"Vz" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -6; - pixel_x = 3 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 7; - pixel_x = 3 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/dark, -/area/ship/science) "VA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -5189,6 +5082,30 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"VM" = ( +/obj/machinery/door/window, +/obj/machinery/door/window{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 4; + id = "ranger_telecomms"; + locked = 1 + }, +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 8; + id = "ranger_telecomms"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/circuit/green, +/area/ship/hallway/central) "VP" = ( /obj/structure/window/reinforced/spawner{ dir = 4 @@ -5214,22 +5131,28 @@ /obj/effect/turf_decal/floordetail/pryhole, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Wa" = ( +"VU" = ( +/obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/door/airlock/command/glass/lp/cargo, +/obj/structure/cable/cyan{ + icon_state = "5-9" + }, +/obj/machinery/door/airlock/medical/glass/lp/medical{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plasteel/white, +/area/ship/medical) "Wj" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/bag/trash, @@ -5245,14 +5168,62 @@ /obj/structure/chair/comfy/black, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"Wx" = ( -/obj/machinery/power/smes/shuttle/precharged, -/obj/structure/window/reinforced/spawner{ +"Wv" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/blue/end{ dir = 1 }, -/obj/structure/cable/cyan, -/turf/open/floor/plating, -/area/ship/maintenance/port) +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"WA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command/glass/lp/security{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"WG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + icon_state = "4-5" + }, +/obj/effect/turf_decal/trimline/opaque/grey/filled/line, +/obj/effect/turf_decal/trimline/opaque/mauve/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"WM" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/circuit/red/airless, +/area/ship/science/ai_chamber) "WR" = ( /obj/machinery/power/solar, /obj/effect/turf_decal/solarpanel, @@ -5313,32 +5284,22 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plating, /area/ship/bridge) +"Xt" = ( +/obj/structure/cable/cyan{ + icon_state = "1-6" + }, +/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/security) "Xy" = ( /obj/effect/turf_decal/industrial/hatch, /obj/effect/turf_decal/industrial/outline/red, /obj/structure/frame/machine, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"Xz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/cyan{ - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - icon_state = "4-5" - }, -/obj/effect/turf_decal/trimline/opaque/grey/filled/line, -/obj/effect/turf_decal/trimline/opaque/mauve/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) "XA" = ( /obj/structure/closet/crate/trashcart/laundry, /turf/open/floor/plasteel/dark, @@ -5364,6 +5325,17 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber, /turf/open/floor/engine, /area/ship/engineering/atmospherics) +"XK" = ( +/obj/machinery/power/smes/shuttle/precharged, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/cable/cyan, +/obj/machinery/door/poddoor{ + id = "thrusterblasts" + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) "XL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -5387,6 +5359,10 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"XT" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/grimy, +/area/ship/hallway/fore) "XV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -5425,17 +5401,6 @@ "Yn" = ( /turf/open/floor/circuit/airless, /area/ship/hallway/central) -"Yp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plating, -/area/ship/science/ai_chamber) "Yw" = ( /obj/structure/window/reinforced/spawner{ dir = 1 @@ -5481,18 +5446,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/security) -"YP" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_y = 3; - pixel_x = 3 - }, -/turf/open/floor/circuit/red/airless, -/area/ship/science/ai_chamber) "YU" = ( /obj/structure/cable/cyan, /obj/machinery/camera/autoname{ @@ -5538,18 +5491,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/fore) -"Ze" = ( -/obj/effect/turf_decal/corner/opaque/blue/mono, -/obj/effect/turf_decal/trimline/opaque/black/line, -/obj/effect/turf_decal/trimline/opaque/black/line{ - pixel_y = -5 - }, -/obj/structure/chair/greyscale{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "Zf" = ( /obj/structure/window/reinforced/spawner, /obj/structure/table/reinforced, @@ -5600,26 +5541,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"Zq" = ( -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/areaeditor/shuttle{ - pixel_y = 9; - pixel_x = 2 - }, -/obj/machinery/button/door{ - pixel_y = -2; - pixel_x = -7; - id = "commshut"; - name = "Commissioner's Office Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Zs" = ( /turf/open/floor/carpet/executive, /area/ship/crew/dorm) @@ -5682,18 +5603,14 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"ZD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Inner Fore Shutters"; - id = "innerinner" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +"ZF" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8; + piping_layer = 2 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/ship/bridge) +/turf/open/floor/plasteel/dark, +/area/ship/maintenance/starboard) "ZG" = ( /obj/structure/cable/cyan{ icon_state = "0-4" @@ -5706,29 +5623,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"ZL" = ( -/obj/machinery/suit_storage_unit/independent/mining/eva, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/orange{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ship/storage) -"ZM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/cyan{ - icon_state = "0-2" - }, -/turf/open/floor/circuit/green/anim, -/area/ship/science/ai_chamber) "ZS" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/turf_decal/industrial/stand_clear, @@ -5755,22 +5649,23 @@ }, /turf/open/floor/plasteel/dark, /area/ship/storage) -"ZV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/opaque/grey/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) +"ZW" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/defibrillator, +/obj/item/stock_parts/cell/high, +/obj/item/storage/box/gloves, +/obj/item/storage/box/masks, +/obj/item/storage/belt/medical/surgery, +/obj/item/storage/belt/medical/surgery, +/obj/effect/turf_decal/corner/opaque/blue/diagonal, +/obj/item/clothing/suit/hooded/wintercoat/medical, +/obj/item/clothing/under/rank/medical/doctor/blue, +/obj/item/clothing/under/rank/medical/doctor/nurse, +/obj/item/clothing/under/rank/medical/doctor/skirt, +/obj/item/holosign_creator/medical, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/ship/medical) "ZZ" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/turf_decal/industrial/stand_clear, @@ -5873,7 +5768,7 @@ zW zW zW zW -zW +ix QT QT QT @@ -5915,22 +5810,22 @@ zW zW zW zW -jL -Pl -Ub +hl +qS +SE Kj RS HZ BA Ut po -wb +BI Jq hn Kf bn Cf -Uv +Xt Mx qb YM @@ -5955,28 +5850,28 @@ zW zW zW zW -zW +ix QT QT QT -Hr +RA Ce QT -ql +ZF Em QT Fo Rj ry UD -PW +yD aP -IA +bS Kg EH my gP -Cr +dA fV fV fV @@ -5997,17 +5892,17 @@ zW zW zW zW -jL -RF +hl +xp oQ tq CB -eR +wE QT QT QT QT -lO +rc Iu xr pf @@ -6039,8 +5934,8 @@ zW zW zW zW -GQ -RF +hl +xp oQ Om SZ @@ -6051,7 +5946,7 @@ QT cX Of kh -Vz +hJ UN Iu hm @@ -6063,7 +5958,7 @@ Mt KY fV Ph -Pi +id fV zW zW @@ -6081,10 +5976,10 @@ zW zW zW zW -GL -Qs +sF +aH cv -bC +vF Ow dp zc @@ -6123,7 +6018,7 @@ zW zW zW zW -zW +ix QT QT QT @@ -6136,7 +6031,7 @@ aP Gc jk xq -me +Dd oz Gz JK @@ -6181,7 +6076,7 @@ aP aP aP aP -di +kQ Ov ZB eh @@ -6227,7 +6122,7 @@ fV Yk ji Kt -Xz +WG fV fV zW @@ -6268,8 +6163,8 @@ zW fV fV Eq -hd -ZV +CN +yA fV zW zW @@ -6311,7 +6206,7 @@ zW fV fV fV -UR +WA fV gg gg @@ -6357,7 +6252,7 @@ Jl sM vV gg -hM +pi gg gg gg @@ -6386,12 +6281,12 @@ WR WR Lk Tz -rB +Qa ZZ Lk Lk sJ -hh +jR Yn Yn gi @@ -6436,12 +6331,12 @@ Lk ad LQ PV -yW +VM FW oy -Ze +pp gg -fA +oq dK zF gg @@ -6457,7 +6352,7 @@ Ur Ur Ur Ul -eJ +dS Kb Ur mQ @@ -6473,7 +6368,7 @@ ps ml hf xo -SO +hZ Lk nh Yn @@ -6483,7 +6378,7 @@ eb Iy TL la -pm +jW iI xj gg @@ -6495,7 +6390,7 @@ zW (18,1,1) = {" Ur Ur -bw +yh Kb yC JR @@ -6511,9 +6406,9 @@ UZ WR Lk wD -cH +Cm vU -uB +Ma IM FB Lk @@ -6542,19 +6437,19 @@ zn zn zn zn -ti +fo Ur Xb mQ Ur Ur -zW +wq wq Lk Lk Lk Lk -Wa +cd Lk tj tj @@ -6570,8 +6465,8 @@ fr aD Pr eT -hH -eH +Pq +cw gg gg gg @@ -6581,27 +6476,27 @@ Ur Mn dv KX -YP +RN Ur -vD +dd KC Ur -Qb +iX Ur -uo +wp kj -DR +sw wq uH gW -yP +lj CG vU -xW +eU SI fd -ZD -LD +sq +mw dE Xp ZC @@ -6610,7 +6505,7 @@ Dr YW Yw Zx -bR +nA Mm uk xA @@ -6620,12 +6515,12 @@ PJ "} (21,1,1) = {" Ur -py +GC wO dl jf Ur -ZM +ic bN aq HA @@ -6636,23 +6531,23 @@ vS kO UU fJ -Dj +cx XR Fx VQ GN Xg -zh +Rg EW EW GW Mz Ar -TV +mh az XL Wr -fZ +hk Po rM Mg @@ -6665,27 +6560,27 @@ Ur JR QI Ko -Bt +WM Ur XV -fG +Qk Ur Yy Ur -Yp +sU Hy rL wq Lk -oh -Dx -Gq +gD +rZ +ak ef -AB +TN fU -SA -ZD -Pk +gL +sq +Wv dE Xp tg @@ -6694,12 +6589,12 @@ Vg ok rJ OK -Pe +Ou NY CD Bl Bg -BB +mv PJ "} (23,1,1) = {" @@ -6710,27 +6605,27 @@ QI QI cy QI -qx +En Ur VA mQ Ur Ur -zW +wq lp Lk Lk Lk Lk -tv +Tf Lk -aM -HS +Ha +tK Lk Lk Lk Lk -qR +ut hi Zk us @@ -6738,8 +6633,8 @@ vY eE CM cW -Bv -CW +qQ +bX gg gg gg @@ -6747,7 +6642,7 @@ gg (24,1,1) = {" Ur Ur -Qi +kc Kb IG JR @@ -6762,12 +6657,12 @@ WR ZG WR Lk -ow +Mf Sl vU -gA +iL JO -Zq +lv Lk eq jB @@ -6776,7 +6671,7 @@ am jv cI Fh -Oh +lX gg gg gg @@ -6793,7 +6688,7 @@ Ur Ur Ur iz -ME +GA Kb Ur mQ @@ -6804,12 +6699,12 @@ WR Be WR Lk -HX +BO QU Vk Vh NC -GO +sf Lk pA wu @@ -6820,7 +6715,7 @@ VJ CP sQ Ta -ye +Ji sm gh zW @@ -6847,7 +6742,7 @@ Be WR Lk Lk -BN +Tm PB NC NZ @@ -6890,12 +6785,12 @@ WR WR Lk QJ -dj +vN hO Lk Lk sJ -zB +NM ff ks Jn @@ -6903,7 +6798,7 @@ AF QV aK De -tD +pD ah gF gg @@ -6944,7 +6839,7 @@ pB kN aW XD -Nf +XT bu gg gg @@ -6983,7 +6878,7 @@ zW sJ sJ sJ -jC +Lg sJ gg gg @@ -7023,9 +6918,9 @@ zW zW jA jA -yQ +Nj ay -Nd +Kw jA zW zW @@ -7131,7 +7026,7 @@ zW zW zW zW -zW +fH LV LV LV @@ -7144,14 +7039,14 @@ Tb rd Tb JQ -HP +or oM fM YZ CY Ac bD -dz +VU vm vm vm @@ -7173,21 +7068,21 @@ zW zW zW zW -IV -RO +Ja +Ge lc -cB +cE fx VH FK of LV -DA +nt ZU aC zk Us -Ds +Vq TR uU Th @@ -7215,8 +7110,8 @@ zW zW zW zW -mz -nv +Hs +wC cR Do cP @@ -7225,16 +7120,16 @@ qZ Nx LV wQ -Kx +ab Tb yJ yJ yJ no -yk +xT yJ vm -mp +Ca dw dP Zi @@ -7257,31 +7152,31 @@ zW zW zW zW -rz -Wx +Hs +XK cR tC gs -gE +mZ LV LV LV TG -rX +nQ Tb uw LU zR vj MY -OS +Ty vm -hL +vB pr HK jZ IT -mj +CV up zW zW @@ -7299,28 +7194,28 @@ zW zW zW zW -zW +fH LV LV LV -yz -IY +Fi +AO LV TK -ZL +mJ rt -Pw +tJ Tb BC Zs zR mb Vw -aT +Lm vm XW lL -xg +ZW vm vm vm @@ -7343,21 +7238,21 @@ zW zW zW zW -rz -Wx -Sd +Hs +XK +kS pv hG -Gv +yZ kI GE zz Tb uw -FX +Df zR dV -LP +Fw HW vm xd @@ -7385,15 +7280,15 @@ zW zW zW zW -zW +fH LV LV LV LV Tb -mf -nf -il +OY +Pp +Fz Tb yJ yJ @@ -7476,7 +7371,7 @@ zW zW zW zW -zW +Pm zW zW zW diff --git a/_maps/shuttles/shiptest/nanotrasen_skipper.dmm b/_maps/shuttles/shiptest/nanotrasen_skipper.dmm index 5cadfb3b03bf..a6e6242199dd 100644 --- a/_maps/shuttles/shiptest/nanotrasen_skipper.dmm +++ b/_maps/shuttles/shiptest/nanotrasen_skipper.dmm @@ -1,16 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ad" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) "ah" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/computer/atmos_control/tank/oxygen_tank{ @@ -68,6 +56,23 @@ }, /turf/closed/wall, /area/ship/crew/cryo) +"aL" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/obj/machinery/button/door{ + dir = 1; + id = "coolingshutdown"; + name = "Shutdown Cooling"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) "aZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -78,21 +83,48 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) +"ba" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 10 + }, +/obj/item/folder/yellow, +/obj/item/stamp/qm, +/obj/machinery/button/shieldwallgen{ + dir = 1; + id = "skippyshieldywalle"; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/ship/cargo/office) +"bd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/medical) +"bf" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "bk" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ dir = 4 }, /turf/open/floor/engine/airless, /area/ship/engineering/engine) -"bl" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - pixel_y = 10; - pixel_x = -8 - }, -/obj/item/areaeditor/shuttle, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/office) "bq" = ( /obj/structure/railing{ dir = 4 @@ -109,38 +141,6 @@ }, /turf/open/floor/plasteel/stairs, /area/ship/bridge) -"bx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"by" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" - }, -/obj/structure/sign/warning/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -28; - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) "bz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -158,6 +158,7 @@ /obj/effect/turf_decal/techfloor{ dir = 8 }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "bD" = ( @@ -184,16 +185,36 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"bQ" = ( -/obj/machinery/computer/secure_data{ +"bI" = ( +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/effect/turf_decal/corner/opaque/yellow, -/obj/effect/turf_decal/corner/opaque/yellow{ - dir = 4 +/obj/effect/turf_decal/techfloor/hole/right, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"bO" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -25 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/crewthree) +"bW" = ( +/obj/effect/turf_decal/corner/opaque/white/mono, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) "ca" = ( /obj/effect/turf_decal/corner/opaque/red/mono, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -204,23 +225,6 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/crew/canteen/kitchen) -"cg" = ( -/obj/structure/table/reinforced{ - color = "#363636" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - name = "Closing Shutters"; - id = "noiwillnotgiveyouaa" - }, -/turf/open/floor/plating, -/area/ship/crew/crewthree) -"co" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "cp" = ( /obj/structure/sign/directions/medical{ dir = 4 @@ -231,19 +235,12 @@ }, /turf/closed/wall, /area/ship/crew/cryo) -"cE" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) +"cC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "cF" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 @@ -278,44 +275,23 @@ }, /turf/open/floor/plasteel, /area/ship/cargo/office) -"cR" = ( -/obj/structure/closet/secure_closet/wall{ - icon_state = "sec_wall"; - name = "ammunition locker"; - pixel_y = -28; - dir = 1; - req_one_access_txt = "57, 41" - }, -/obj/item/ammo_box/magazine/co9mm, -/obj/item/ammo_box/magazine/co9mm, -/obj/item/stock_parts/cell/gun, -/obj/item/stock_parts/cell/gun, -/obj/item/stock_parts/cell/gun/mini, -/obj/item/stock_parts/cell/gun/mini, -/obj/item/stock_parts/cell/gun/mini, -/obj/structure/cable{ - icon_state = "4-8" +"cY" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/crewthree) -"cW" = ( -/obj/machinery/light{ - dir = 1 +/obj/item/pipe_dispenser, +/obj/structure/closet/crate{ + name = "Atmospherics Equipment Crate" }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) -"dd" = ( -/obj/structure/closet/secure_closet/wall{ - name = "medicine cabinet"; - pixel_x = -32; +/obj/item/extinguisher/advanced, +/obj/item/holosign_creator/atmos, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/techfloor{ dir = 4 }, -/obj/item/storage/firstaid/regular, -/obj/item/stack/medical/gauze, -/obj/item/reagent_containers/hypospray/medipen/salbutamol, -/obj/item/storage/pill_bottle/charcoal/less, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/medical) +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) "de" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -353,17 +329,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/wood, /area/ship/crew/crewthree) -"dn" = ( -/obj/effect/turf_decal/corner/opaque/white/mono, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/crew/canteen/kitchen) "dp" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -374,26 +339,14 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"dv" = ( -/obj/machinery/door/window/brigdoor/southright{ - name = "Internal Affairs"; - dir = 4; - desc = "A strong door. A robust looking stainless steel plate with 'INTERNAL AFFAIRS' is written on it." - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ +"dt" = ( +/obj/effect/turf_decal/corner/opaque/yellow/border{ dir = 1 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew/office) +/obj/effect/turf_decal/corner/opaque/yellow/half, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/ship/cargo) "dy" = ( /turf/open/floor/carpet/nanoweave/blue, /area/ship/medical) @@ -421,6 +374,20 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"dM" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/crew/office) "dO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -454,12 +421,37 @@ /turf/open/floor/plating, /area/ship/engineering/atmospherics) "ed" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/shutters, -/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastleft, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + id = "windowlockdown"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"eh" = ( +"em" = ( +/obj/machinery/suit_storage_unit/cmo{ + suit_type = /obj/item/clothing/suit/space/hardsuit/medical + }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/medical) +"er" = ( /obj/machinery/door/airlock/engineering{ + dir = 4; name = "Engineering" }, /obj/machinery/door/firedoor/border_only{ @@ -503,15 +495,49 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/carpet, /area/ship/crew/office) -"ez" = ( -/obj/structure/chair{ - dir = 4 +"eB" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/corner/opaque/red/mono, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 13 }, -/obj/machinery/light/small{ - dir = 8 +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) +"eC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/southright{ + name = "Requests Desk"; + req_one_access_txt = "57, 41" }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/medical) +/obj/machinery/door/window/northleft{ + name = "Requests Desk" + }, +/obj/machinery/door/poddoor/shutters{ + id = "noiwillnotgiveyouaa"; + name = "Closing Shutters" + }, +/turf/open/floor/plating, +/area/ship/crew/crewthree) +"eL" = ( +/obj/effect/turf_decal/corner/opaque/red/mono, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) "eP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -538,34 +564,39 @@ /obj/effect/spawner/xmastree, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"fn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +"ff" = ( +/obj/effect/turf_decal/corner/opaque/blue/bordercorner, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/disposal/bin, -/obj/item/paper{ - info = "The igniter in the chamber does not work very well. I suggest throwing lit welders down the disposal chute over there to ignite the chamber." - }, -/obj/item/weldingtool, -/obj/structure/disposalpipe/trunk{ - dir = 1 + dir = 8 }, -/obj/structure/sign/warning/deathsposal{ - pixel_x = 32; - name = "\improper DISPOSAL: LEADS TO INCINERATOR sign"; - desc = "A warning sign which reads 'DISPOSAL: LEADS TO INCINERATOR'." +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 9 }, /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"fg" = ( +/obj/machinery/shower{ + pixel_y = 18 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/noslip, /area/ship/engineering) +"fi" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "bridgelockdown" + }, +/obj/effect/spawner/structure/window/reinforced/shutters, +/turf/open/floor/plating, +/area/ship/bridge) "fo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -576,6 +607,28 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) +"fs" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/door{ + dir = 8; + id = "amogusdoors"; + name = "Cargo Blast Door Control"; + pixel_x = 25; + pixel_y = -4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/button/shieldwallgen{ + dir = 8; + id = "skippyshieldywalle"; + pixel_x = 24; + pixel_y = 5 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "ft" = ( /obj/structure/cable{ icon_state = "1-2" @@ -596,31 +649,91 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"fy" = ( +"fu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"fw" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/effect/turf_decal/industrial/warning/full, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/light/directional/east, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) +"fz" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 9 }, -/obj/machinery/door/airlock/command{ - name = "Personal Quarters" +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 25 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plasteel, +/area/ship/engineering) "fD" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/engine, /area/ship/engineering/engine) +"fG" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -25 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/crew/office) +"fI" = ( +/obj/structure/closet/secure_closet/wall{ + dir = 4; + icon_state = "sec_wall"; + name = "firearms locker"; + pixel_x = -28; + req_one_access_txt = "57, 41" + }, +/obj/item/gun/energy/e_gun/mini{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/gun/energy/e_gun/mini{ + pixel_y = 8 + }, +/obj/item/gun/energy/e_gun/mini{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/ballistic/automatic/pistol/commander/no_mag, +/obj/item/gun/ballistic/automatic/pistol/commander/no_mag, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/crewthree) "fJ" = ( /obj/effect/turf_decal/corner/opaque/blue/half, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -631,10 +744,13 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) -"fO" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/ship/crew/dorm) +"fS" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/freezer, +/area/ship/crew/canteen/kitchen) "fT" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -647,10 +763,65 @@ "fW" = ( /turf/template_noop, /area/template_noop) +"fY" = ( +/obj/machinery/door/window/brigdoor/southright{ + name = "The Captain's Personal Lavatory"; + opacity = 1 + }, +/obj/structure/toilet{ + dir = 8; + pixel_x = 4; + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 25 + }, +/obj/item/soap/nanotrasen, +/obj/item/stack/medical/bruise_pack{ + amount = 3 + }, +/obj/item/stack/medical/ointment{ + amount = 5; + desc = "Used to treat...... well, it's topical, and it's clearly been used....." + }, +/obj/item/storage/pill_bottle/psicodine, +/obj/item/storage/pill_bottle/stimulant, +/obj/item/storage/pill_bottle/neurine, +/obj/item/storage/pill_bottle/charcoal/less, +/obj/item/razor, +/obj/item/lipstick/random, +/obj/structure/closet/secure_closet/wall{ + dir = 4; + name = "The Captain's Personal Medicine Cabinet And Soap Holder"; + pixel_x = -32; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/ship/crew/crewtwo) "ga" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/ship/medical) +"gb" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ + dir = 4; + name = "atmos waste outlet injector" + }, +/turf/open/floor/plating/airless, +/area/ship/external) "gh" = ( /turf/closed/wall/r_wall, /area/ship/engineering) @@ -664,27 +835,40 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"gl" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 1 +"gm" = ( +/obj/structure/closet/secure_closet/wall{ + dir = 1; + icon_state = "sec_wall"; + name = "ammunition locker"; + pixel_y = -28; + req_one_access_txt = "57, 41" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/item/ammo_box/magazine/co9mm, +/obj/item/ammo_box/magazine/co9mm, +/obj/item/stock_parts/cell/gun, +/obj/item/stock_parts/cell/gun, +/obj/item/stock_parts/cell/gun/mini, +/obj/item/stock_parts/cell/gun/mini, +/obj/item/stock_parts/cell/gun/mini, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/poddoor/preopen{ - id = "coolingshutdown" +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/crewthree) +"gu" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + name = "kitchen freezer" }, -/turf/open/floor/engine/airless, -/area/ship/external) -"go" = ( -/obj/machinery/door/poddoor{ - id = "bridgelockdown" +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 }, -/obj/effect/spawner/structure/window/reinforced/shutters, -/turf/open/floor/plating, -/area/ship/bridge) +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/ship/crew/canteen/kitchen) "gx" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/shutters, +/obj/machinery/door/firedoor/window, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/structure/grille, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "gB" = ( @@ -696,36 +880,50 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) -"gC" = ( -/obj/machinery/computer/cargo/express{ - dir = 8 - }, -/obj/item/spacecash/bundle/loadsamoney, -/obj/machinery/button/door{ - id = "noiwillnotgiveyouaa"; - name = "Requests Desk Shutters Control"; - pixel_y = 24; - pixel_x = 25 +"gM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"gN" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/obj/item/radio/intercom{ +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; - pixel_x = 24 + name = "Air to Holding Tank"; + target_pressure = 1000 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/crewthree) -"gF" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/catwalk/over, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"gO" = ( +/obj/machinery/power/terminal{ dir = 8 }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-4" }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, /area/ship/engineering/atmospherics) -"gM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) +"gP" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/cryo) "gQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -748,6 +946,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) +"hb" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/cryo) "hi" = ( /obj/machinery/computer/communications{ dir = 8 @@ -764,6 +974,38 @@ "hr" = ( /turf/closed/wall/r_wall, /area/ship/hallway/central) +"ht" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/sign/poster/retro/nanotrasen_logo_70s{ + pixel_x = -32 + }, +/turf/open/floor/goonplaque{ + desc = "\"This is a plaque in honour of our comrades on the TG4407 Stations. It is our hope that the crews of these ST13XX-class ships can live up to your fame and fortune.\" Scratched in beneath that is a crude image of two spacemen. One of them is missing their top half." + }, +/area/ship/bridge) "hw" = ( /obj/machinery/door/airlock/public/glass{ name = "Canteen" @@ -775,6 +1017,32 @@ /obj/effect/turf_decal/corner/opaque/black/full, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) +"hA" = ( +/obj/machinery/door/airlock/command/glass{ + dir = 4; + name = "Office" + }, +/obj/effect/turf_decal/corner/opaque/black/full, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/crew/office) "hJ" = ( /obj/effect/spawner/structure/window/reinforced/shutters, /obj/machinery/door/poddoor{ @@ -782,17 +1050,19 @@ }, /turf/open/floor/plating, /area/ship/medical) -"hM" = ( -/obj/machinery/suit_storage_unit/cmo{ - suit_type = /obj/item/clothing/suit/space/hardsuit/medical +"hP" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/light/small, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/medical) +/obj/machinery/door/poddoor/preopen{ + dir = 4; + id = "coolingshutdown" + }, +/turf/open/floor/engine/airless, +/area/ship/external) "hZ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -857,12 +1127,25 @@ /obj/effect/turf_decal/corner/opaque/blue/mono, /turf/open/floor/plasteel/mono/white, /area/ship/medical) -"iJ" = ( -/obj/machinery/newscaster{ - pixel_y = 32 +"iB" = ( +/obj/effect/spawner/structure/window/reinforced/shutters, +/obj/machinery/door/poddoor{ + dir = 4; + id = "bridgelockdown" }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/bridge) +"iI" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/ship/cargo/office) "iP" = ( /obj/structure/cable{ icon_state = "2-8" @@ -878,47 +1161,35 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/bridge) -"iR" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/machinery/door/firedoor/border_only{ +"iY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + dir = 4; + name = "Infirmary" + }, /turf/open/floor/plasteel/dark, -/area/ship/engineering) +/area/ship/medical) "jc" = ( /obj/machinery/air_sensor/atmos/nitrogen_tank, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) -"jh" = ( -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/medical) "ji" = ( /turf/closed/wall/r_wall, /area/ship/crew/crewthree) -"jq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "jr" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/effect/turf_decal/corner/opaque/yellow/diagonal{ @@ -934,6 +1205,18 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) +"js" = ( +/obj/structure/closet/secure_closet/wall{ + dir = 4; + name = "medicine cabinet"; + pixel_x = -28 + }, +/obj/item/storage/firstaid/regular, +/obj/item/stack/medical/gauze, +/obj/item/reagent_containers/hypospray/medipen/salbutamol, +/obj/item/storage/pill_bottle/charcoal/less, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/medical) "jv" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -941,40 +1224,37 @@ /obj/effect/turf_decal/industrial/stand_clear{ dir = 1 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"jx" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastright, -/obj/machinery/door/poddoor{ - id = "windowlockdown" - }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) +"jD" = ( +/obj/effect/turf_decal/corner/opaque/yellow/bordercorner{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 }, -/turf/open/floor/plating, -/area/ship/engineering) -"jN" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/effect/turf_decal/techfloor{ +/obj/effect/turf_decal/techfloor/hole{ dir = 4 }, -/obj/structure/closet/secure_closet/engineering_welding{ - anchored = 1 +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"jM" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/obj/item/reagent_containers/glass/bottle/welding_fuel, -/obj/item/reagent_containers/glass/bottle/welding_fuel, -/obj/item/reagent_containers/glass/bottle/welding_fuel, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1; + name = "Chamber Mixer" + }, +/obj/item/paper/crumpled{ + info = "A mix of 67/33 ratio of oxygen (node 2) and plasma (node 1) works very well, even at 500 kPa." + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "jP" = ( /obj/machinery/atmospherics/components/binary/pump/on{ name = "Nitrogen to Air" @@ -984,26 +1264,6 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/atmospherics) -"jQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/crewtwo) -"jR" = ( -/obj/machinery/vending/clothing, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -21 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/cryo) "jS" = ( /turf/closed/wall, /area/ship/crew/dorm) @@ -1038,49 +1298,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"kl" = ( -/obj/machinery/door/airlock{ - name = "Dormitory" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/black/full, -/turf/open/floor/carpet/nanoweave, -/area/ship/crew/dorm) -"km" = ( -/obj/structure/table, -/obj/item/folder/blue{ - pixel_y = -3; - pixel_x = 6 - }, -/obj/item/stamp/law{ - pixel_x = 7 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/item/folder/red{ - pixel_x = -8 - }, -/obj/item/stamp/centcom{ - pixel_y = 4; - pixel_x = -7 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/office) "kp" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1095,42 +1312,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output, /turf/open/floor/engine/plasma, /area/ship/engineering/atmospherics) -"kt" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/pickaxe/silver, -/obj/item/pickaxe/mini, -/obj/item/pickaxe/mini, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 6 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/ship/cargo/office) -"ky" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical{ - anchored = 1 - }, -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "kz" = ( /turf/closed/wall/r_wall, /area/ship/engineering/atmospherics) @@ -1147,19 +1328,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"kL" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) "kM" = ( /obj/machinery/suit_storage_unit/mining/eva, /obj/effect/turf_decal/corner/opaque/black/three_quarters{ @@ -1167,23 +1335,6 @@ }, /turf/open/floor/plasteel, /area/ship/cargo/office) -"kP" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen/kitchen) -"kS" = ( -/obj/machinery/door/airlock{ - name = "Cold Room" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen/kitchen) "kU" = ( /obj/structure/table, /obj/item/paper_bin, @@ -1202,28 +1353,55 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"kV" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25; - dir = 1 +"lg" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"lh" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/bedsheetbin, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/crew/cryo) +"lj" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/blue{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/stamp/captain{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/stamp/head_of_personnel{ + pixel_x = -5; + pixel_y = -1 }, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/crewthree) -"ld" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "lk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -1233,23 +1411,33 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/bridge) +"lr" = ( +/obj/structure/closet/radiation, +/obj/machinery/light/small/directional/east, +/turf/open/floor/noslip, +/area/ship/engineering) "ls" = ( /turf/closed/wall/r_wall, /area/ship/medical) "lw" = ( /turf/closed/wall/r_wall, /area/ship/crew/canteen/kitchen) -"lK" = ( -/obj/machinery/power/terminal{ - dir = 8 +"lE" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastright, +/obj/machinery/door/poddoor{ + dir = 4; + id = "windowlockdown" }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/light/small, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/engineering) "lR" = ( @@ -1262,67 +1450,40 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"lW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +"lV" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior{ dir = 4 }, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/corner{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"lY" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/closed/wall/r_wall, -/area/ship/engineering/engine) -"me" = ( -/obj/machinery/door/window/brigdoor/southright{ - name = "The Captain's Personal Lavatory"; - opacity = 1 - }, -/obj/structure/toilet{ - dir = 8; - pixel_y = 16; - pixel_x = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/mirror{ - pixel_x = 25 - }, -/obj/item/soap/nanotrasen, -/obj/item/stack/medical/bruise_pack{ - amount = 3 - }, -/obj/item/stack/medical/ointment{ - amount = 5; - desc = "Used to treat...... well, it's topical, and it's clearly been used....." - }, -/obj/item/storage/pill_bottle/psicodine, -/obj/item/storage/pill_bottle/stimulant, -/obj/item/storage/pill_bottle/neurine, -/obj/item/storage/pill_bottle/charcoal/less, -/obj/item/razor, -/obj/item/lipstick/random, -/obj/structure/closet/secure_closet/wall{ - dir = 4; - name = "The Captain's Personal Medicine Cabinet And Soap Holder"; - pixel_x = -32; - req_access_txt = "20" +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ +/turf/open/floor/engine, +/area/ship/engineering/engine) +"lW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/turf/open/floor/plasteel/freezer, -/area/ship/crew/crewtwo) +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"lY" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ship/engineering/engine) "mg" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 6 @@ -1343,40 +1504,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/office) -"mw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 7; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28; - pixel_y = -2 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/medical) -"mz" = ( -/obj/item/bedsheet/dorms, -/obj/structure/bed, -/obj/structure/curtain/bounty, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm) "mA" = ( /obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ @@ -1421,6 +1548,20 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) +"mT" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ + dir = 4 + }, +/obj/structure/sign/painting{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) "mU" = ( /obj/structure/sign/poster/official/random{ pixel_x = 32 @@ -1434,38 +1575,12 @@ /obj/structure/table, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"mV" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/noslip, -/area/ship/engineering) -"mY" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/full, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 1 - }, -/obj/machinery/light{ +"mX" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux{ dir = 4 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/engine/airless, +/area/ship/engineering/engine) "nd" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1524,19 +1639,27 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) -"nx" = ( -/obj/machinery/shower{ - dir = 4; - pixel_y = 8 +"nv" = ( +/obj/structure/table, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/curtain{ - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/turf/open/floor/plasteel/freezer, -/area/ship/crew/crewtwo) +/obj/item/flashlight/lamp{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo/office) "nB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -1562,38 +1685,6 @@ }, /turf/open/floor/engine/airless, /area/ship/engineering/engine) -"nK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"nN" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"nO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "nX" = ( /obj/effect/turf_decal/corner/opaque/yellow/diagonal{ dir = 4 @@ -1627,27 +1718,6 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/medical) -"oC" = ( -/obj/structure/table, -/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/item/flashlight/lamp{ - pixel_y = 10; - pixel_x = -8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/cargo/office) "oD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1735,6 +1805,13 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) +"pf" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/medical) "ph" = ( /obj/effect/spawner/structure/window/reinforced/shutters, /obj/structure/curtain/bounty, @@ -1807,6 +1884,13 @@ }, /turf/open/floor/plasteel, /area/ship/cargo) +"pz" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/table{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "pB" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1829,24 +1913,29 @@ "pD" = ( /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"pN" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/machinery/light{ +"pI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/item/pipe_dispenser, -/obj/structure/closet/crate{ - name = "Atmospherics Equipment Crate" +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/extinguisher/advanced, -/obj/item/holosign_creator/atmos, -/obj/item/storage/toolbox/mechanical, -/obj/effect/turf_decal/techfloor{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"pT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 }, -/turf/open/floor/plasteel/tech/techmaint, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/ntspaceworks_small/right, +/turf/open/floor/plating, /area/ship/engineering/atmospherics) "pW" = ( /obj/machinery/atmospherics/pipe/layer_manifold, @@ -1888,6 +1977,39 @@ }, /turf/open/floor/plasteel, /area/ship/cargo/office) +"qq" = ( +/obj/machinery/shower{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/curtain{ + pixel_y = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/ship/crew/crewtwo) +"qs" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet/royalblue, +/area/ship/crew/crewtwo) +"qy" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow/border{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/ship/cargo) "qz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1910,6 +2032,18 @@ /obj/effect/turf_decal/corner/opaque/yellow/bordercorner, /turf/open/floor/plasteel, /area/ship/cargo) +"qR" = ( +/obj/effect/turf_decal/corner/opaque/black{ + dir = 5 + }, +/obj/machinery/button/door{ + id = "sorrywejustclosed"; + name = "Cargo Hallway Shutters Control"; + pixel_x = -24; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/ship/cargo/office) "qS" = ( /obj/machinery/light_switch{ pixel_x = -25; @@ -1939,6 +2073,27 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) +"ra" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning/full, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) "rb" = ( /obj/machinery/door/poddoor{ id = "amogusdoors"; @@ -1954,19 +2109,17 @@ /area/ship/cargo) "re" = ( /turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew/cryo) -"rk" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 +/area/ship/crew/cryo) +"rq" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/cryo) +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet/royalblue, +/area/ship/crew/crewtwo) "rw" = ( /obj/structure/chair/comfy/shuttle{ dir = 4; @@ -1989,6 +2142,28 @@ }, /turf/open/floor/engine, /area/ship/engineering/engine) +"rz" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = 4; + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 25 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/freezer, +/area/ship/crew/dorm) +"rB" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "rF" = ( /obj/machinery/door/airlock/medical/glass{ name = "Infirmary" @@ -2006,10 +2181,52 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) +"rK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/ntspaceworks_small/left, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "rM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) +"rN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Personal Quarters" + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"rW" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/sign/departments/engineering{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/nanoweave/orange, +/area/ship/hallway/central) "sc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -2062,41 +2279,6 @@ }, /turf/open/floor/plasteel/mono, /area/ship/engineering/atmospherics) -"sn" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/button/door{ - id = "coolingshutdown"; - name = "Shutdown Cooling"; - pixel_y = -25; - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"sq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/medical) "sz" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ @@ -2122,27 +2304,6 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"sH" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25; - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/office) "sK" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2, /obj/structure/disposalpipe/segment{ @@ -2165,17 +2326,6 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"sX" = ( -/obj/effect/turf_decal/corner/opaque/red/mono, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/crew/canteen/kitchen) "sY" = ( /obj/effect/spawner/structure/window/reinforced/shutters, /obj/machinery/door/poddoor{ @@ -2200,12 +2350,16 @@ dir = 4 }, /obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastleft, +/obj/machinery/door/window/eastright, /obj/structure/cable{ icon_state = "0-8" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ + dir = 4 + }, /obj/machinery/door/poddoor{ - id = "windowlockdown" + id = "windowlockdown"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2215,15 +2369,47 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"tm" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/number/zero, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "tp" = ( /obj/machinery/atmospherics/components/binary/circulator/cold{ dir = 1 }, /turf/open/floor/engine, /area/ship/engineering/engine) +"tr" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/medical) +"ts" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "tx" = ( /turf/closed/wall/r_wall, /area/ship/cargo) +"tz" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/yellow/border{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/ship/cargo) "tB" = ( /obj/effect/turf_decal/corner/opaque/white/mono, /turf/open/floor/plasteel/mono/white, @@ -2242,16 +2428,20 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"tG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 - }, -/obj/effect/turf_decal/techfloor{ +"tH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/techfloor/hole, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/crew/office) "tI" = ( /obj/structure/table, /obj/item/toy/cards/deck{ @@ -2299,6 +2489,13 @@ "ul" = ( /turf/closed/wall/r_wall, /area/ship/engineering/engine) +"um" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/number/five, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "uq" = ( /obj/structure/sink/kitchen{ dir = 4; @@ -2309,18 +2506,25 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen/kitchen) -"ut" = ( -/obj/effect/turf_decal/corner/opaque/black{ - dir = 5 +"us" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 8 }, -/obj/machinery/button/door{ - id = "sorrywejustclosed"; - name = "Cargo Hallway Shutters Control"; - pixel_y = 24; - pixel_x = -24 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew/crewthree) +"uw" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ + dir = 4 + }, +/obj/structure/chair, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plasteel, -/area/ship/cargo/office) +/area/ship/crew/canteen) "uD" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/effect/turf_decal/corner/opaque/yellow/diagonal{ @@ -2337,61 +2541,35 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"uE" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 +"uG" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 4; + id = "skippyshieldywalle"; + locked = 1 }, -/obj/machinery/atmospherics/components/trinary/mixer/flipped{ - dir = 1; - name = "Chamber Mixer" +/obj/structure/cable, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + id = "amogusdoors"; + name = "Cargo Bay Blast Door" }, -/obj/item/paper/crumpled{ - info = "A mix of 67/33 ratio of oxygen (node 2) and plasma (node 1) works very well, even at 500 kPa." +/obj/machinery/door/poddoor{ + id = "amogusdoors"; + name = "Cargo Bay Blast Door" }, -/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"uH" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -28; - pixel_y = 8; - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"uP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/border_only{ +/area/ship/cargo) +"uQ" = ( +/obj/effect/turf_decal/corner/opaque/yellow/border{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/corner/opaque/yellow/half{ dir = 8 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/machinery/door/poddoor/shutters{ - name = "Closing Shutters"; - id = "sorrywejustclosed" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/ship/cargo) "uT" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -2407,8 +2585,15 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/plating, +/area/ship/engineering) +"uY" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/crew/office) "va" = ( /obj/effect/turf_decal/corner/opaque/yellow/half, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2416,6 +2601,30 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) +"vc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"vo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + dir = 4; + id = "coolingshutdown" + }, +/turf/open/floor/engine/airless, +/area/ship/external) "vp" = ( /obj/machinery/door/airlock/command{ name = "Bridge" @@ -2450,20 +2659,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/office) -"vz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "vB" = ( /obj/effect/turf_decal/industrial/warning{ dir = 10 @@ -2569,7 +2764,7 @@ }, /obj/structure/fireaxecabinet{ dir = 8; - pixel_x = 32 + pixel_x = 28 }, /obj/effect/turf_decal/techfloor{ dir = 4 @@ -2577,6 +2772,24 @@ /obj/machinery/suit_storage_unit/industrial/atmos_firesuit, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) +"wd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 25 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/crew/dorm) "we" = ( /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) @@ -2591,22 +2804,12 @@ /turf/open/floor/carpet/nanoweave/beige, /area/ship/bridge) "wt" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/shutters, -/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/door/firedoor/window, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/structure/grille, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"wv" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) "ww" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2660,24 +2863,6 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/crew/office) -"wJ" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 16; - pixel_x = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/mirror{ - pixel_x = 25 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/freezer, -/area/ship/crew/dorm) "wU" = ( /obj/machinery/door/firedoor, /obj/machinery/mineral/ore_redemption{ @@ -2691,7 +2876,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/sign/warning/deathsposal{ - pixel_x = -32 + pixel_x = -28 }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) @@ -2730,45 +2915,52 @@ "xE" = ( /turf/closed/wall/r_wall, /area/ship/crew/canteen) -"xH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/obj/structure/bedsheetbin, -/obj/structure/table, +"xK" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/landmark/observer_start, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"xV" = ( -/obj/item/kirbyplants/random, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/carpet, -/area/ship/crew/office) -"yg" = ( +"xO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ dir = 5 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, /obj/effect/turf_decal/techfloor{ dir = 8 }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering/atmospherics) +"xW" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"yf" = ( +/obj/structure/sign/poster/official/high_class_martini{ + pixel_y = 32 + }, +/obj/machinery/vending/snack/random, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "yj" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/shutters, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/obj/machinery/door/firedoor/window, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/structure/grille, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "ys" = ( @@ -2801,70 +2993,73 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"yO" = ( -/obj/effect/spawner/structure/window/reinforced/shutters, -/obj/machinery/door/poddoor{ - id = "bridgelockdown" +"yU" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ +/obj/machinery/door/airlock/freezer{ + dir = 4; + name = "Cold Room" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"zu" = ( +/obj/machinery/door/airlock{ + desc = "Throne of kings."; + dir = 4; + name = "Bathroom" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/turf/open/floor/plating, -/area/ship/bridge) -"zp" = ( -/obj/machinery/button/door{ - id = "sorrywejustclosed"; - name = "Canteen Shutters Control"; - pixel_y = 24; - pixel_x = -5 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/button/door{ - id = "amogusdoors"; - name = "Cargo Blast Door Control"; - pixel_x = 6; - pixel_y = 24 +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) +"zy" = ( +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/machinery/button/door{ - id = "noiwillnotgiveyouaa"; - name = "Requests Desk Shutters Control"; - pixel_y = 24; - pixel_x = 17 +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/button/door{ - id = "hallwindows"; - name = "Cargo Bay Hallway Shutters Control"; - pixel_y = 32 +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/button/door{ - id = "bridgelockdown"; - name = "Bridge Lockdown"; - pixel_y = 32; - pixel_x = 11 +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/engineering) +"zG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 }, -/obj/machinery/button/door{ - id = "windowlockdown"; - name = "Close Ship Window Blast Doors"; - pixel_y = 40; - pixel_x = 5 +/obj/machinery/newscaster/security_unit/directional/west, +/turf/open/floor/wood, +/area/ship/crew/crewtwo) +"zK" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/button/door{ - id = "coolingshutdown"; - name = "Shutdown Cooling"; - pixel_y = 40; - pixel_x = 16 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/bridge) -"zw" = ( -/obj/machinery/iv_drip, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 +/obj/effect/turf_decal/techfloor{ + dir = 4 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/medical) +/obj/structure/closet/secure_closet/engineering_electrical{ + anchored = 1 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "zM" = ( /obj/effect/turf_decal/corner/opaque/red/diagonal, /obj/effect/turf_decal/corner/opaque/yellow/diagonal{ @@ -2872,23 +3067,6 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"zO" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/ship/crew/dorm) -"zP" = ( -/obj/effect/spawner/structure/window/reinforced/shutters, -/obj/machinery/door/poddoor{ - id = "bridgelockdown" - }, -/turf/open/floor/plating, -/area/ship/bridge) "zR" = ( /turf/open/floor/plasteel/stairs{ dir = 8 @@ -2912,28 +3090,38 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/bridge) -"An" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - name = "cryogenic freezer"; - dir = 1; - target_temperature = 73 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/ship/crew/cryo) -"Ar" = ( -/obj/machinery/power/shuttle/engine/electric{ +"Ak" = ( +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastleft, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "windowlockdown" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Ao" = ( +/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ - name = "atmos waste outlet injector"; +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/structure/chair{ dir = 4 }, -/turf/open/floor/plating/airless, -/area/ship/external) +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "As" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/carpet/nanoweave/beige, @@ -2958,6 +3146,18 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/dorm) +"AB" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/pickaxe/silver, +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/cargo/office) "AE" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 @@ -2970,6 +3170,22 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/medical) +"AG" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "engine fuel pump" + }, +/obj/structure/sign/warning/fire{ + pixel_y = -20 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = -28; + pixel_y = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine, +/area/ship/engineering/engine) "AJ" = ( /obj/machinery/door/airlock/external, /obj/docking_port/mobile{ @@ -3038,28 +3254,16 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/ship/crew/canteen) -"Bv" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp{ - pixel_y = 10; - pixel_x = -8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/folder/blue{ - pixel_y = -3; - pixel_x = -6 - }, -/obj/item/stamp/captain{ - pixel_y = 2; - pixel_x = -6 +"Bw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 }, -/obj/item/stamp/head_of_personnel{ - pixel_y = -1; - pixel_x = -5 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/crewthree) +/obj/effect/turf_decal/ntspaceworks_small, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "BH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -3085,30 +3289,6 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"BO" = ( -/obj/machinery/light, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor/hole/right, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"BR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) -"BT" = ( -/obj/structure/tank_dispenser, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "BW" = ( /obj/effect/turf_decal/corner/opaque/white/mono, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -3116,25 +3296,6 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/crew/canteen/kitchen) -"BY" = ( -/obj/machinery/door/airlock{ - name = "Bathroom"; - desc = "Throne of kings." - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) "Ca" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/item/defibrillator/loaded, @@ -3157,23 +3318,42 @@ /obj/structure/closet/crate/medical, /turf/open/floor/plasteel/mono, /area/ship/cargo) -"Cu" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ +"Cl" = ( +/obj/structure/table, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/stamp/law{ + pixel_x = 7 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/effect/spawner/structure/window/plasma/reinforced/shutters, +/obj/item/folder/red{ + pixel_x = -8 + }, +/obj/item/stamp/centcom{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/crew/office) +"Cu" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/door/firedoor/window, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/structure/grille, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Cx" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 +"CA" = ( +/obj/effect/turf_decal/corner/opaque/yellow/border{ + dir = 1 }, -/obj/machinery/vending/cola/random, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) +/obj/effect/turf_decal/corner/opaque/yellow/half, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/ship/cargo) "CB" = ( /obj/machinery/smartfridge/bloodbank/preloaded, /turf/closed/wall, @@ -3187,6 +3367,16 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/atmospherics) +"CE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "CH" = ( /obj/machinery/medical_kiosk, /turf/open/floor/carpet/nanoweave/blue, @@ -3197,25 +3387,6 @@ }, /turf/closed/wall/r_wall, /area/ship/engineering/engine) -"CP" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) "CR" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3243,26 +3414,10 @@ /turf/open/floor/plating, /area/ship/engineering/engine) "Dd" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastright, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "windowlockdown" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/door/firedoor/window, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/structure/grille, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "Dp" = ( @@ -3274,25 +3429,17 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/crew/office) -"Dw" = ( -/obj/machinery/power/shieldwallgen/atmos/roundstart{ - dir = 4; - locked = 1; - id = "skippyshieldywalle" - }, -/obj/structure/cable, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor{ - id = "amogusdoors"; - name = "Cargo Bay Blast Door" +"Dv" = ( +/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ + dir = 4 }, -/obj/machinery/door/poddoor{ - id = "amogusdoors"; - name = "Cargo Bay Blast Door" +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/structure/chair{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/cargo) +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "DN" = ( /obj/structure/window/reinforced/spawner/east, /obj/structure/chair/comfy/black{ @@ -3318,27 +3465,14 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"DY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Infirmary" +"DV" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/newscaster/security_unit/directional/west, /turf/open/floor/plasteel/dark, -/area/ship/medical) +/area/ship/crew/crewthree) "Ea" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -3357,24 +3491,32 @@ /obj/effect/turf_decal/atmos/nitrogen, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) -"Eo" = ( -/obj/machinery/power/apc/auto_name/west, +"En" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/ship/bridge) "Eu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/plasma/reinforced/shutters, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/obj/docking_port/stationary{ + dwidth = 15; + width = 30; + height = 15; + dir = 2 + }, +/turf/template_noop, +/area/template_noop) "Ev" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -3400,6 +3542,27 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"EE" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastright, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "windowlockdown" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "EJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/effect/turf_decal/techfloor{ @@ -3416,19 +3579,16 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/atmospherics) -"EW" = ( -/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ +"Fc" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 25 +/obj/effect/turf_decal/techfloor{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Ff" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, @@ -3440,24 +3600,6 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"Fh" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/noslip, -/area/ship/engineering) -"Fi" = ( -/obj/structure/sign/poster/official/high_class_martini{ - pixel_y = 32 - }, -/obj/machinery/vending/snack/random, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) "Fj" = ( /obj/structure/window/reinforced/spawner/east, /obj/item/kirbyplants/random, @@ -3466,16 +3608,6 @@ }, /turf/open/floor/carpet, /area/ship/crew/office) -"Fk" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/medical) "Fq" = ( /obj/effect/turf_decal/corner/opaque/yellow/half{ dir = 4 @@ -3503,82 +3635,37 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"FD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/freezer, -/area/ship/crew/dorm) -"FK" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ +"FC" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/effect/turf_decal/corner/opaque/yellow/border{ dir = 8 }, -/obj/structure/sign/poster/retro/nanotrasen_logo_70s{ - pixel_x = -32 - }, -/turf/open/floor/goonplaque{ - desc = "\"This is a plaque in honour of our comrades on the TG4407 Stations. It is our hope that the crews of these ST13XX-class ships can live up to your fame and fortune.\" Scratched in beneath that is a crude image of two spacemen. One of them is missing their top half." - }, -/area/ship/bridge) -"FL" = ( -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = -25; - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/ship/cargo) +"FN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" + dir = 5 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew/office) -"FQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -22; + pixel_y = 9 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-4" }, -/obj/machinery/light, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/firealarm/directional/west{ + pixel_y = -12 }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew/office) +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/medical) "FW" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/pump, @@ -3624,6 +3711,35 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) +"Gm" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"Go" = ( +/obj/machinery/door/airlock{ + dir = 4; + name = "Dormitory" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/black/full, +/turf/open/floor/carpet/nanoweave, +/area/ship/crew/dorm) "Gp" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/spawner/lootdrop/maintenance/five, @@ -3647,34 +3763,48 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/medical) -"Gv" = ( -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 1 +"Gx" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 8 }, -/obj/effect/turf_decal/corner/opaque/yellow/half, -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ship/cargo) +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "GA" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 4 }, -/obj/effect/spawner/structure/window/plasma/reinforced/shutters, +/obj/machinery/door/firedoor/window, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/structure/grille, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "GF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output, /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) -"GK" = ( -/obj/machinery/power/apc/auto_name/south, +"GL" = ( /obj/structure/cable{ - icon_state = "0-8" + icon_state = "1-4" }, -/turf/open/floor/plasteel/freezer, -/area/ship/crew/canteen/kitchen) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/west, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/bridge) "GQ" = ( /obj/effect/spawner/structure/window/reinforced/shutters, /obj/machinery/door/poddoor{ @@ -3682,31 +3812,6 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) -"GX" = ( -/obj/structure/table, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 10 - }, -/obj/item/folder/yellow, -/obj/item/stamp/qm, -/obj/machinery/button/shieldwallgen{ - id = "skippyshieldywalle"; - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/ship/cargo/office) -"Hb" = ( -/obj/machinery/pipedispenser, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "Hd" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3735,24 +3840,26 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Ho" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 8; - pixel_x = 2 +"Hq" = ( +/obj/machinery/door/window/brigdoor/southright{ + desc = "A strong door. A robust looking stainless steel plate with 'INTERNAL AFFAIRS' is written on it."; + dir = 4; + name = "Internal Affairs" }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/turf/open/floor/plasteel/mono/white, -/area/ship/crew/canteen/kitchen) -"Hp" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -24 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/wood, -/area/ship/crew/crewtwo) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/crew/office) "Hu" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/item/clothing/shoes/magboots, @@ -3802,6 +3909,23 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/medical) +"HR" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + dir = 4; + pixel_x = -28; + pixel_y = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Ic" = ( /obj/machinery/cryopod{ dir = 8 @@ -3840,44 +3964,48 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"Iw" = ( -/obj/structure/closet/secure_closet/wall{ - icon_state = "sec_wall"; - name = "firearms locker"; - dir = 4; - pixel_x = -32; - req_one_access_txt = "57, 41" - }, -/obj/item/gun/energy/e_gun/mini{ - pixel_y = 8; - pixel_x = -8 +"Iy" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/item/gun/energy/e_gun/mini{ - pixel_y = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/obj/item/gun/energy/e_gun/mini{ - pixel_y = 8; - pixel_x = 8 +/turf/open/floor/plasteel/freezer, +/area/ship/crew/dorm) +"IA" = ( +/obj/structure/tank_dispenser, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"IB" = ( +/obj/structure/chair{ + dir = 4 }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser, -/obj/item/gun/ballistic/automatic/pistol/commander/no_mag, -/obj/item/gun/ballistic/automatic/pistol/commander/no_mag, -/obj/structure/cable{ - icon_state = "0-4" +/obj/effect/turf_decal/corner/transparent/grey/half{ + dir = 1 }, -/obj/machinery/power/apc/auto_name/south, /turf/open/floor/plasteel/dark, -/area/ship/crew/crewthree) -"IB" = ( -/obj/structure/chair{ +/area/ship/crew/office) +"II" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastleft, +/obj/machinery/door/poddoor{ + dir = 4; + id = "windowlockdown" + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/effect/turf_decal/corner/transparent/grey/half{ - dir = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/office) +/turf/open/floor/plating, +/area/ship/engineering) "IP" = ( /obj/structure/railing{ dir = 4 @@ -3889,21 +4017,34 @@ "IV" = ( /turf/closed/wall, /area/ship/engineering/engine) -"IX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" +"Ja" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32 }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) +/obj/machinery/light/small/directional/east, +/obj/machinery/vending/cola/random, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "Jj" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/carpet/nanoweave/orange, /area/ship/hallway/central) +"Jk" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Air to Distro"; + target_pressure = 1000 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "Jm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 5 @@ -3928,16 +4069,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo/office) -"JD" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/newscaster/security_unit{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/crewthree) "JE" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -3964,29 +4095,39 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) -"Kn" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ +"Kh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/engine/airless, -/area/ship/external) -"Ko" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastleft, -/obj/machinery/door/poddoor{ - id = "windowlockdown" +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "sorrywejustclosed"; + name = "Closing Shutters" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 8; + pixel_y = -25 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"Ki" = ( +/obj/machinery/vending/clothing, +/obj/machinery/computer/cryopod/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/crew/cryo) +"Kn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/engine/airless, +/area/ship/external) "Kp" = ( /obj/structure/cable{ icon_state = "2-4" @@ -4019,6 +4160,20 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"KH" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 1; + name = "cryogenic freezer"; + target_temperature = 73 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew/cryo) +"KI" = ( +/obj/structure/dresser, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood, +/area/ship/crew/dorm) "KL" = ( /obj/machinery/door/airlock/external, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -4038,15 +4193,15 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"KS" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 +"KU" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/stock_parts/cell/gun, +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/wood, +/area/ship/crew/crewtwo) "KY" = ( /obj/machinery/advanced_airlock_controller{ dir = 4; @@ -4057,32 +4212,18 @@ }, /turf/open/floor/plasteel, /area/ship/hallway/central) -"Lh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "coolingshutdown" - }, -/turf/open/floor/engine/airless, -/area/ship/external) -"Lj" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo/office) "Lm" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input, /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) +"Lq" = ( +/obj/effect/spawner/structure/window/reinforced/shutters, +/obj/machinery/door/poddoor{ + dir = 4; + id = "bridgelockdown" + }, +/turf/open/floor/plating, +/area/ship/bridge) "Ls" = ( /obj/effect/turf_decal/corner/opaque/yellow/border{ dir = 1 @@ -4090,24 +4231,6 @@ /obj/effect/turf_decal/corner/opaque/yellow/half, /turf/open/floor/plasteel, /area/ship/cargo) -"Lu" = ( -/obj/effect/turf_decal/corner/opaque/red/mono, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/crew/canteen/kitchen) "Lv" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -4150,18 +4273,11 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"LG" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 8; - pixel_x = -1 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/cryo) +"LV" = ( +/obj/machinery/washing_machine, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/ship/crew/dorm) "LX" = ( /obj/machinery/autolathe, /obj/structure/window/reinforced{ @@ -4175,38 +4291,6 @@ }, /turf/open/floor/plasteel, /area/ship/cargo/office) -"LY" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastleft, -/obj/machinery/door/poddoor{ - id = "windowlockdown" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"Ma" = ( -/obj/effect/turf_decal/corner/opaque/yellow/half{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/ship/cargo) "Mh" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -4231,40 +4315,42 @@ }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) +"Mk" = ( +/obj/effect/turf_decal/corner/opaque/black{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel, +/area/ship/cargo/office) "Mn" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, /turf/open/floor/carpet/nanoweave, /area/ship/hallway/central) -"Mo" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/departments/engineering{ - pixel_x = -32 +"Mq" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/central) -"Mp" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - target_pressure = 1000; - name = "Air to Holding Tank" +/obj/structure/sign/warning/enginesafety{ + pixel_x = 32 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/light/small/directional/east, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/techfloor{ + dir = 4 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Ms" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -4274,29 +4360,30 @@ /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/plating, /area/ship/engineering/engine) +"MA" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastright, +/obj/machinery/door/poddoor{ + dir = 4; + id = "windowlockdown" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "ME" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 1 }, /turf/open/floor/engine/airless, /area/ship/external) -"MG" = ( -/obj/effect/turf_decal/corner/opaque/yellow/bordercorner{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/effect/turf_decal/techfloor/hole{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) "MH" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/effect/spawner/lootdrop/maintenance/five, @@ -4304,6 +4391,17 @@ /obj/effect/spawner/lootdrop/donkpockets, /turf/open/floor/plasteel/mono, /area/ship/cargo) +"MI" = ( +/obj/structure/table/reinforced{ + color = "#363636" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "noiwillnotgiveyouaa"; + name = "Closing Shutters" + }, +/turf/open/floor/plating, +/area/ship/crew/crewthree) "MJ" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 9 @@ -4340,15 +4438,24 @@ dir = 8 }, /area/ship/crew/cryo) -"Nd" = ( -/obj/machinery/light{ - dir = 1 +"MV" = ( +/obj/machinery/advanced_airlock_controller/mix_chamber{ + pixel_y = 26 }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/office) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/button/ignition/incinerator/atmos{ + dir = 4; + pixel_x = -26; + pixel_y = -3 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine, +/area/ship/engineering/engine) "Nh" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -4373,17 +4480,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output, /turf/open/floor/engine/air, /area/ship/engineering/atmospherics) -"Ns" = ( -/obj/effect/turf_decal/corner/opaque/yellow/half{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/ship/cargo) "NB" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 9 @@ -4395,43 +4491,6 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plasteel/mono, /area/ship/cargo) -"ND" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Office" - }, -/obj/effect/turf_decal/corner/opaque/black/full, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew/office) -"NG" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "coolingshutdown" - }, -/turf/open/floor/engine/airless, -/area/ship/external) "NH" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 @@ -4456,28 +4515,17 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"NO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 +"NL" = ( +/obj/effect/turf_decal/corner/opaque/red/diagonal, +/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ + dir = 4 }, -/obj/effect/turf_decal/techfloor{ +/obj/structure/chair{ dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"NP" = ( -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow/half, -/obj/machinery/firealarm{ - pixel_y = 28 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel, -/area/ship/cargo) +/area/ship/crew/canteen) "NT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/effect/turf_decal/techfloor, @@ -4489,21 +4537,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/cryo) -"Ok" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 25 - }, -/obj/structure/catwalk/over, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "Om" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/closet/crate/engineering, @@ -4512,25 +4545,23 @@ /obj/item/stack/sheet/glass/fifty, /turf/open/floor/plasteel/mono, /area/ship/cargo) -"On" = ( -/obj/machinery/processor, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/button/door{ - id = "sorrywejustclosed"; - name = "Shutters Control"; - pixel_y = 24; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen/kitchen) "Oo" = ( /obj/machinery/atmospherics/pipe/manifold/orange/visible, /turf/open/floor/plating, /area/ship/engineering) -"Ou" = ( +"Op" = ( +/obj/machinery/iv_drip, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"OF" = ( /obj/machinery/door/airlock/medical{ + dir = 4; name = "Infirmary" }, /obj/machinery/door/firedoor/border_only{ @@ -4546,44 +4577,14 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/plasteel/mono/white, /area/ship/crew/canteen/kitchen) -"OJ" = ( -/obj/effect/turf_decal/corner/opaque/black{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/table, -/obj/structure/cable, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel, -/area/ship/cargo/office) -"OO" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, +"ON" = ( +/obj/effect/turf_decal/corner/opaque/red/mono, /obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew/office) -"OQ" = ( -/obj/effect/turf_decal/corner/opaque/yellow/half{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -24 + icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ship/cargo) +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) "OT" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 6 @@ -4593,20 +4594,6 @@ }, /turf/open/floor/plasteel, /area/ship/engineering/atmospherics) -"OX" = ( -/obj/structure/table, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -25 - }, -/obj/structure/bedsheetbin, -/turf/open/floor/plasteel/dark, -/area/ship/crew/cryo) "Pf" = ( /obj/structure/sign/warning/fire{ pixel_y = 32 @@ -4614,6 +4601,17 @@ /obj/machinery/air_sensor/atmos/toxin_tank, /turf/open/floor/engine/plasma, /area/ship/engineering/atmospherics) +"Pk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/corner/opaque/white/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "Pl" = ( /obj/item/kirbyplants/random, /obj/machinery/airalarm/directional/north, @@ -4689,47 +4687,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/cryo) -"PC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/rag, -/obj/machinery/door/poddoor/shutters{ - name = "Closing Shutters"; - id = "sorrywejustclosed" - }, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = -25; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"PD" = ( -/obj/machinery/advanced_airlock_controller/mix_chamber{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = -26; - pixel_y = -3; - dir = 4 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) "PI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 @@ -4739,28 +4696,6 @@ }, /turf/open/floor/plasteel/mono, /area/ship/cargo) -"PL" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "amogusdoors"; - name = "Cargo Blast Door Control"; - pixel_x = 25; - dir = 8; - pixel_y = -4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/button/shieldwallgen{ - dir = 8; - id = "skippyshieldywalle"; - pixel_x = 24; - pixel_y = 5 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) "Qe" = ( /obj/machinery/door/airlock/mining{ name = "Cargo Office" @@ -4778,38 +4713,66 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo/office) +"Qi" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/bounty, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/ship/crew/dorm) "Ql" = ( /obj/structure/sign/directions/command{ dir = 4 }, -/turf/closed/wall, -/area/ship/crew/cryo) -"Qp" = ( -/turf/closed/wall/r_wall, -/area/ship/bridge) -"Qy" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/closed/wall, +/area/ship/crew/cryo) +"Qp" = ( +/turf/closed/wall/r_wall, +/area/ship/bridge) +"Qs" = ( +/obj/machinery/button/door{ + id = "sorrywejustclosed"; + name = "Canteen Shutters Control"; + pixel_x = -5; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "amogusdoors"; + name = "Cargo Blast Door Control"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "noiwillnotgiveyouaa"; + name = "Requests Desk Shutters Control"; + pixel_x = 17; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "hallwindows"; + name = "Cargo Bay Hallway Shutters Control"; + pixel_y = 32 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/button/door{ + id = "bridgelockdown"; + name = "Bridge Lockdown"; + pixel_x = 11; + pixel_y = 32 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/button/door{ + id = "windowlockdown"; + name = "Close Ship Window Blast Doors"; + pixel_x = 5; + pixel_y = 40 }, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"QD" = ( -/obj/machinery/iv_drip, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +/obj/machinery/button/door{ + id = "coolingshutdown"; + name = "Shutdown Cooling"; + pixel_x = 16; + pixel_y = 40 }, -/obj/machinery/light, -/turf/open/floor/plasteel/mono/dark, -/area/ship/medical) +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/bridge) "QJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4824,20 +4787,17 @@ dir = 8 }, /area/ship/cargo) -"QL" = ( -/obj/machinery/light/small{ - dir = 8 +"QK" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -10; + pixel_y = -25 }, -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 9 +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/plasteel, -/area/ship/hallway/central) -"QM" = ( -/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -4845,22 +4805,22 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) -"QT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/crew/office) +"QM" = ( +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) +/obj/effect/turf_decal/corner/opaque/white/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical) "QU" = ( /obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel, @@ -4888,6 +4848,21 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"Re" = ( +/obj/effect/turf_decal/corner/opaque/red/mono, +/obj/structure/table/reinforced, +/obj/item/kitchen/knife{ + pixel_x = 15 + }, +/obj/item/reagent_containers/food/snacks/dough, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -5; + pixel_y = 18 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) "Ri" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -4898,33 +4873,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Rk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/corner/opaque/white/mono, -/turf/open/floor/plasteel/mono/white, -/area/ship/medical) -"Ro" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning/full, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) "Rv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -4935,6 +4883,10 @@ /obj/structure/chair/comfy/black, /turf/open/floor/carpet, /area/ship/crew/office) +"Rx" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "RB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/door/firedoor/border_only, @@ -4948,6 +4900,14 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input, /turf/open/floor/engine/air, /area/ship/engineering/atmospherics) +"RL" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/corner/opaque/black{ + dir = 9 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/ship/hallway/central) "RO" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/computer/atmos_control/tank/air_tank{ @@ -4955,30 +4915,6 @@ }, /turf/open/floor/plasteel/mono, /area/ship/engineering/atmospherics) -"RP" = ( -/obj/structure/railing/corner{ - pixel_x = -1; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/bridge) "RQ" = ( /obj/machinery/power/generator{ dir = 4 @@ -5005,48 +4941,29 @@ }, /turf/open/floor/carpet/royalblue, /area/ship/crew/crewtwo) -"RX" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastright, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor{ - id = "windowlockdown" - }, -/obj/machinery/door/firedoor/border_only{ +"Sc" = ( +/obj/machinery/computer/cargo/express{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering) -"Sl" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) -"St" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/corner/opaque/red/mono, -/obj/machinery/reagentgrinder{ - pixel_y = 13; - pixel_x = 6 +/obj/machinery/button/door{ + id = "noiwillnotgiveyouaa"; + name = "Requests Desk Shutters Control"; + pixel_x = 25; + pixel_y = 24 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 +/obj/item/radio/intercom/directional/east, +/obj/item/spacecash/bundle/loadsamoney, +/turf/open/floor/plasteel/dark, +/area/ship/crew/crewthree) +"Ss" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_x = -8; + pixel_y = 10 }, -/turf/open/floor/plasteel/mono/white, -/area/ship/crew/canteen/kitchen) +/obj/item/areaeditor/shuttle, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/crew/office) "Su" = ( /obj/structure/cable/yellow{ icon_state = "0-2" @@ -5066,19 +4983,6 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/crew/office) -"Sw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "Sz" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/machinery/shieldgen, @@ -5090,38 +4994,13 @@ }, /turf/open/floor/plasteel/mono, /area/ship/cargo) -"SE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/sign/warning/enginesafety{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"SH" = ( -/obj/structure/railing/corner{ - pixel_x = -1 - }, -/obj/machinery/power/apc/auto_name/west, +"SA" = ( +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, +/obj/structure/railing/corner, /turf/open/floor/carpet/nanoweave/beige, /area/ship/bridge) "SO" = ( @@ -5153,8 +5032,44 @@ }, /turf/open/floor/plasteel/mono/white, /area/ship/crew/canteen/kitchen) -"Th" = ( +"SY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "sorrywejustclosed"; + name = "Closing Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"Ta" = ( +/obj/machinery/processor, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/button/door{ + id = "sorrywejustclosed"; + name = "Shutters Control"; + pixel_x = -24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"Tc" = ( /obj/machinery/door/airlock/engineering{ + dir = 4; name = "Engineering" }, /obj/machinery/door/firedoor/border_only{ @@ -5163,7 +5078,23 @@ /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"Tf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "Tr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -5180,59 +5111,12 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/office) -"Ts" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/engineering/atmospherics) -"Tv" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ - dir = 4 - }, -/obj/structure/sign/painting{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) "Tz" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/ship/crew/crewtwo) -"TC" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - target_pressure = 1000; - name = "Air to Distro" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"TE" = ( -/obj/effect/turf_decal/corner/opaque/black{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel, -/area/ship/cargo/office) "TF" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/closed/wall, @@ -5279,17 +5163,13 @@ }, /turf/open/floor/plasteel, /area/ship/cargo/office) -"TM" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/structure/curtain/bounty, -/turf/open/floor/wood, -/area/ship/crew/dorm) "TN" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/shutters, -/obj/machinery/atmospherics/pipe/simple/green/visible{ +/obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 6 }, +/obj/machinery/door/firedoor/window, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/structure/grille, /turf/open/floor/plating, /area/ship/engineering/atmospherics) "TO" = ( @@ -5311,46 +5191,33 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Uc" = ( -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 +"TU" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering" }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/effect/turf_decal/techfloor{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, +/turf/open/floor/plasteel/dark, /area/ship/engineering) -"Ud" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - name = "kitchen freezer" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 +"Uh" = ( +/obj/effect/turf_decal/corner/opaque/black{ + dir = 10 }, -/turf/open/floor/plasteel/freezer, -/area/ship/crew/canteen/kitchen) +/obj/structure/closet/emcloset/anchored, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/cargo/office) "Uk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ dir = 4 }, /turf/closed/wall, /area/ship/engineering/engine) -"Ur" = ( -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/yellow/half{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/ship/cargo) "Ut" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/bounty, @@ -5417,6 +5284,32 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"UI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"UJ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/broken/directional/north, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) "UL" = ( /obj/structure/sign/directions/engineering{ dir = 8 @@ -5446,21 +5339,28 @@ }, /turf/open/floor/carpet/nanoweave/beige, /area/ship/crew/cryo) -"UT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/southright{ - name = "Requests Desk"; - req_one_access_txt = "57, 41" +"Vd" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering" }, -/obj/machinery/door/window/northleft{ - name = "Requests Desk" +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/door/poddoor/shutters{ - name = "Closing Shutters"; - id = "noiwillnotgiveyouaa" +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/crew/crewthree) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "Ve" = ( /obj/structure/curtain/bounty, /obj/machinery/door/poddoor{ @@ -5472,44 +5372,23 @@ "Vj" = ( /turf/closed/wall, /area/ship/hallway/central) -"Vz" = ( -/obj/effect/turf_decal/atmos/plasma, -/turf/open/floor/engine/plasma, -/area/ship/engineering/atmospherics) -"VD" = ( -/obj/effect/turf_decal/corner/opaque/red/mono, -/obj/structure/table/reinforced, -/obj/item/kitchen/knife{ - pixel_x = 15 - }, -/obj/item/reagent_containers/food/snacks/dough, -/obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 18; - pixel_x = -5 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/mono/white, -/area/ship/crew/canteen/kitchen) -"VI" = ( -/obj/effect/turf_decal/corner/opaque/blue/bordercorner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ +"Vp" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 9 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/techfloor{ dir = 4 }, -/turf/open/floor/plasteel/tech/techmaint, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/ship/engineering/atmospherics) +"Vz" = ( +/obj/effect/turf_decal/atmos/plasma, +/turf/open/floor/engine/plasma, /area/ship/engineering/atmospherics) "VK" = ( /obj/structure/cable/yellow, @@ -5520,18 +5399,19 @@ }, /turf/open/floor/plating, /area/ship/engineering/engine) -"VL" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +"VP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/crewthree) +/obj/structure/bedsheetbin, +/obj/structure/table, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "VQ" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -5545,10 +5425,13 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"VY" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine/airless, -/area/ship/engineering/engine) +"Wa" = ( +/obj/machinery/iv_drip, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) "Wb" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8 @@ -5579,59 +5462,14 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"Wt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/hallway/central) "Wv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/layer2, /turf/open/floor/plasteel/tech/techmaint, /area/ship/hallway/central) -"Ww" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 25; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew/dorm) -"WF" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastleft, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor{ - id = "windowlockdown" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering) +"WC" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "WJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5643,28 +5481,12 @@ /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/engineering) -"WK" = ( -/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/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/turf/open/floor/wood, -/area/ship/bridge) +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) "WO" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/item/storage/bag/trash, @@ -5702,41 +5524,18 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"WY" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 28 +"WX" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_x = 2; + pixel_y = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/obj/effect/turf_decal/corner/opaque/white/mono, +/turf/open/floor/plasteel/mono/white, +/area/ship/crew/canteen/kitchen) "WZ" = ( /turf/closed/wall, /area/ship/crew/cryo) -"Xd" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/effect/turf_decal/corner/opaque/yellow/diagonal{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) "Xe" = ( /obj/effect/turf_decal/techfloor{ dir = 10 @@ -5759,6 +5558,32 @@ "Xp" = ( /turf/closed/wall/r_wall, /area/ship/cargo/office) +"Xs" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/hole, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Xt" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/effect/turf_decal/number/two, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Xy" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/yellow, +/obj/effect/turf_decal/corner/opaque/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "XA" = ( /obj/structure/table, /obj/effect/turf_decal/corner/opaque/black/three_quarters, @@ -5768,38 +5593,12 @@ /obj/item/pen, /turf/open/floor/plasteel, /area/ship/cargo/office) -"XD" = ( -/obj/structure/closet/secure_closet/captains, -/obj/item/stock_parts/cell/gun, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/wood, -/area/ship/crew/crewtwo) "XJ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/ship/crew/crewtwo) -"XK" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/eastright, -/obj/machinery/door/poddoor{ - id = "windowlockdown" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering) "XU" = ( /turf/closed/wall/r_wall, /area/ship/crew/dorm) @@ -5879,6 +5678,41 @@ }, /turf/open/floor/plasteel/dark, /area/ship/crew/cryo) +"YC" = ( +/obj/item/bedsheet/dorms, +/obj/structure/bed, +/obj/structure/curtain/bounty, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/ship/crew/dorm) +"YE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/disposal/bin, +/obj/item/paper{ + info = "The igniter in the chamber does not work very well. I suggest throwing lit welders down the disposal chute over there to ignite the chamber." + }, +/obj/item/weldingtool, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/deathsposal{ + desc = "A warning sign which reads 'DISPOSAL: LEADS TO INCINERATOR'."; + name = "\improper DISPOSAL: LEADS TO INCINERATOR sign"; + pixel_x = 32 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating, +/area/ship/engineering) "YL" = ( /obj/effect/turf_decal/corner/opaque/purple, /obj/effect/turf_decal/corner/opaque/yellow{ @@ -5890,16 +5724,24 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"YZ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, +"YQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 + dir = 4 }, -/obj/machinery/light/small, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/crewtwo) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) +"YT" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/medical) "Za" = ( /obj/machinery/sleeper{ dir = 1 @@ -5912,6 +5754,59 @@ "Zd" = ( /turf/closed/wall, /area/ship/crew/canteen) +"Zf" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/door/window/eastleft, +/obj/machinery/door/poddoor{ + dir = 4; + id = "windowlockdown" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Zo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + dir = 4; + id = "coolingshutdown" + }, +/turf/open/floor/engine/airless, +/area/ship/external) +"Zr" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_welding{ + anchored = 1 + }, +/obj/item/reagent_containers/glass/bottle/welding_fuel, +/obj/item/reagent_containers/glass/bottle/welding_fuel, +/obj/item/reagent_containers/glass/bottle/welding_fuel, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Zv" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/north{ + pixel_y = 25 + }, +/turf/open/floor/carpet, +/area/ship/crew/office) "Zw" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5922,6 +5817,28 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo/office) +"ZC" = ( +/obj/machinery/pipedispenser, +/obj/machinery/light/directional/west, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"ZE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/nanoweave, +/area/ship/hallway/central) "ZI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -5968,7 +5885,7 @@ mF mF ul ul -VY +mX ul ul mF @@ -5983,6 +5900,7 @@ fW fW fW fW +fW "} (2,1,1) = {" fW @@ -5992,18 +5910,18 @@ fW fW fW vD -Ar +gb kz kz -LY -XK +II +lE ul nF HL bk ul -Ko -jx +Zf +MA gh gh vD @@ -6014,6 +5932,7 @@ fW fW fW fW +fW "} (3,1,1) = {" fW @@ -6022,29 +5941,30 @@ fW fW fW kz +ed tf -Dd kz -Hb +ZC WU NK ul ZO -Qy +lV lY ul NK uT -BT +IA gh -WF -RX +Ak +EE gh fW fW fW fW fW +fW "} (4,1,1) = {" fW @@ -6053,29 +5973,30 @@ fW kz kz kz -WY +gO dJ -yg +xO sz yG yG IV -PD +MV sK -by +AG Jm yG yG we sD TH -lK +zy gh gh gh fW fW fW +fW "} (5,1,1) = {" fW @@ -6083,8 +6004,8 @@ fW kz kz Np -yj -TC +wt +Jk nj Hm RB @@ -6092,7 +6013,7 @@ Lz MJ IV NH -cE +lg Yn Uk ub @@ -6107,6 +6028,7 @@ gh gh fW fW +fW "} (6,1,1) = {" fW @@ -6114,18 +6036,18 @@ kz kz At RK -Eu +wt dS Ra tF mS cL EJ -NO -uH +CE +HR Ws bA -Uc +Fc uX Kz sc @@ -6134,53 +6056,55 @@ bz bz dO qK -BO +bI gh gh fW +fW "} (7,1,1) = {" kz kz gx gx -TN +yj TF -Mp +gN pW vW ne -mY +ra hZ ft pB pc WJ Gi -fn -Ro -Ok +YE +fw +Tf ww -SE -ky -jN +Mq +zK +Zr Ew -tG +Xs wC gh fW +fW "} (8,1,1) = {" kz Vz kr -wt +Cu Px -uE +jM TS lR dZ -VI +ff TO IV rx @@ -6190,8 +6114,8 @@ gB vB IV Eb -Th -iR +Tc +Vd Fu Fu Fu @@ -6200,12 +6124,13 @@ Fu Fu tx fW +fW "} (9,1,1) = {" kz Pf pZ -ed +Dd Ri Yv TG @@ -6220,38 +6145,39 @@ fD MP mA IV -mV -Sl +fg +fz ai Fu qQ -OQ +FC Fq -Ma -Ns +qy +tz tx tx +fW "} (10,1,1) = {" kz gx gx -GA +TN kB Ni -IX -Ts +fu +bf NT fJ sk IV -CP +UJ MS RQ tp -sn +aL IV -Fh +lr jZ wB Fu @@ -6261,17 +6187,18 @@ Sz sh Kv pr -Dw +uG +fW "} (11,1,1) = {" kz AM GF -Cu +GA WP MQ -gF -Ts +Gx +bf QU Pm ah @@ -6283,26 +6210,27 @@ Wb mA ul gh -wv -eh +TU +er Fu -NP +CA Om NI WO ug jv rb +fW "} (12,1,1) = {" kz JY Lm -ed +Dd UD dB -IX -Ts +rK +um QU vO QY @@ -6313,29 +6241,30 @@ Da VK HE ul -Mo +rW pD gQ Fu -Gv +dt Yp Rv PI Pq JE Ym +fW "} (13,1,1) = {" kz gx gx -GA +TN VQ ES -IX -Ts +Bw +tm gi -MG +jD TO ul ul @@ -6355,24 +6284,25 @@ ZI JQ JE Ym +Eu "} (14,1,1) = {" kz Ek rM -Cu +GA WP jP -nK -KS +pT +Xt TO TO TO KQ pD Nh -ld -Eo +xK +xW Mn FB Jj @@ -6386,15 +6316,16 @@ Uu NC jv Ym +fW "} (15,1,1) = {" kz jc as -ed +Dd dp OT -kL +Vp TO TO qY @@ -6402,7 +6333,7 @@ aF bE aF Wr -Sw +vc Ev Kp oD @@ -6415,8 +6346,9 @@ MH JQ UC FW -PL +fs jX +fW "} (16,1,1) = {" kz @@ -6424,7 +6356,7 @@ kz kz kz vY -pN +cY TO TO pD @@ -6445,14 +6377,15 @@ UA pt zR QJ -Ur +uQ tx tx +fW "} (17,1,1) = {" hr KY -QL +RL TO TO TO @@ -6463,9 +6396,9 @@ gQ Ql WZ MT -LG -jR -OX +hb +Ki +lh Hd WZ cp @@ -6479,18 +6412,19 @@ cQ pq Xp fW +fW "} (18,1,1) = {" AJ Wv WR KL -Wt +cC wX if if if -BR +UI WZ Pz re @@ -6500,16 +6434,17 @@ al Ys Fv WZ -cW +WC eu ys -ut +qR Au JA wG -TE +Uh Xp fW +fW "} (19,1,1) = {" xE @@ -6519,40 +6454,41 @@ Zd Br Br Zd -bx +Ao pD -nO +YQ WZ Yx Wg Oi -rk +gP Ic yD -An +KH WZ -iJ +ts sO Qe qm nd Zw -oC -OJ +nv +Mk Xp fW +fW "} (20,1,1) = {" fW xE -Fi -ad +yf +uw uD jr Br Bg gM -vz +pI xs xs xs @@ -6562,16 +6498,17 @@ cF cF xs xs -jq +Rx ta wU HA Au nB wA -GX +ba Xp fW +fW "} (21,1,1) = {" fW @@ -6585,39 +6522,40 @@ nX pD gQ ji -JD -Iw +DV +fI ji -nx -me -Hp -XD +qq +fY +zG +KU qa gM eP ys kM -Lj +iI TI -kt +AB XA Xp fW +fW "} (22,1,1) = {" fW xE xE -Tv +mT Bh LD Id Jn fo ZJ -cg -Bv -cR +MI +lj +gm ji mD XJ @@ -6634,6 +6572,7 @@ AT ls Xp fW +fW "} (23,1,1) = {" fW @@ -6646,25 +6585,26 @@ Br gR pD gQ -UT +eC xA -kV +bO dl -FK +ht id qS -YZ +rq qa -co +rB sO rF -mw -dd -ez -jh +FN +js +pf +YT hJ fW fW +fW "} (24,1,1) = {" fW @@ -6677,16 +6617,16 @@ Ut vG Bd aZ -cg -gC -VL +MI +Sc +us ji -WK +En XJ SO -jQ +qs Tz -Cx +Ja ta ga AE @@ -6696,77 +6636,80 @@ dy hJ fW fW +fW "} (25,1,1) = {" fW fW GQ -Xd +NL oU Pn Zd -EW +Dv pD -QT +ZE ji ji ji ji -fy +rN XJ XJ qa nq nq -ND +hA nq -sq +bd dy CH -hM +em ls fW fW +fW "} (26,1,1) = {" fW fW xE xE -uP -PC +SY +Kh Zd Zd pD gQ sG Qp -SH +SA IP pm bq -RP +GL Qp CV ZR -FL +QK nq -DY -Ou +iY +OF CB ls ls fW fW +fW "} (27,1,1) = {" fW fW fW lw -On +Ta tB -Lu +eL oT fo Ff @@ -6789,23 +6732,24 @@ ls fW fW fW +fW "} (28,1,1) = {" fW fW fW lw -kP +Gm OG SX xf Vj -xH +VP BJ Qp -zp +Qs rw -nN +pz wp ok Qp @@ -6815,11 +6759,12 @@ Tr nq vP RR -QD +Op ls fW fW fW +fW "} (29,1,1) = {" fW @@ -6832,25 +6777,26 @@ ca uq jS jS -kl +Go Qp -bQ +Xy xi YL UM hi Qp -xV +Zv de -FQ +tH nq -Rk +Pk ix -zw +Wa ls fW fW fW +fW "} (30,1,1) = {" fW @@ -6858,22 +6804,22 @@ fW fW lw lw -VD +Re BW -sX +ON jS -fO -Ww +KI +wd Qp -go -zP -zP -yO -yO +fi +Lq +Lq +iB +iB Qp yu ex -OO +dM nq Gc tZ @@ -6882,6 +6828,7 @@ ls fW fW fW +fW "} (31,1,1) = {" fW @@ -6889,11 +6836,11 @@ fW fW fW lw -Ho -St -dn +WX +eB +bW jS -TM +Qi Az Ve mg @@ -6907,12 +6854,13 @@ di Mh nq HO -Fk +tr ls fW fW fW fW +fW "} (32,1,1) = {" fW @@ -6922,9 +6870,9 @@ fW lw lw xf -kS +yU jS -mz +YC Yb ph np @@ -6935,7 +6883,7 @@ Kn sY Fj DN -dv +Hq nq ls ls @@ -6944,6 +6892,7 @@ fW fW fW fW +fW "} (33,1,1) = {" fW @@ -6953,7 +6902,7 @@ fW fW lw eQ -GK +fS jS of ie @@ -6964,7 +6913,7 @@ ME NB Kn nq -Nd +uY Sv Dp IB @@ -6975,6 +6924,7 @@ fW fW fW fW +fW "} (34,1,1) = {" fW @@ -6984,20 +6934,20 @@ fW fW lw lw -Ud +gu jS jS -BY +zu XU -Lh -gl -gl -gl -NG +Zo +vo +vo +vo +hP sY wH -bl -km +Ss +Cl kU nq nq @@ -7006,6 +6956,7 @@ fW fW fW fW +fW "} (35,1,1) = {" fW @@ -7017,8 +6968,8 @@ fW lw lw jS -FD -zO +LV +Iy XU im fW @@ -7028,7 +6979,7 @@ im sY wH mM -sH +fG nq nq fW @@ -7037,6 +6988,7 @@ fW fW fW fW +fW "} (36,1,1) = {" fW @@ -7049,7 +7001,7 @@ fW lw XU Xl -wJ +rz XU im fW @@ -7068,6 +7020,7 @@ fW fW fW fW +fW "} (37,1,1) = {" fW @@ -7099,4 +7052,5 @@ fW fW fW fW +fW "} diff --git a/_maps/shuttles/shiptest/pirate_ember.dmm b/_maps/shuttles/shiptest/pirate_ember.dmm new file mode 100644 index 000000000000..673ef557de79 --- /dev/null +++ b/_maps/shuttles/shiptest/pirate_ember.dmm @@ -0,0 +1,12973 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/turf/closed/wall/r_wall, +/area/ship/bridge) +"af" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/closet/secure_closet{ + icon_state = "cap"; + name = "\proper captain's locker"; + req_access_txt = "20" + }, +/obj/item/clothing/under/rank/security/officer/frontier/admiral, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/head/beret/sec/frontier/officer, +/obj/item/clothing/accessory/holster/detective, +/obj/item/clothing/glasses/hud/security/sunglasses/eyepatch, +/obj/item/clothing/suit/armor/frontier, +/obj/item/clothing/shoes/cowboy, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "pirate_cutter_escape"; + name = "Escape Shutters"; + pixel_x = 7; + pixel_y = 25 + }, +/turf/open/floor/carpet/green, +/area/ship/crew/office) +"ah" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/machinery/vending/tool, +/obj/effect/decal/cleanable/wrapping{ + pixel_y = -4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"al" = ( +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 6 + }, +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 1; + pixel_x = -16 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"aq" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"ar" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/hardsuit/security/independent/frontier, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) +"aw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"ax" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/ship/security) +"aD" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"aG" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1; + color = "#808080" + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/security/range) +"aJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/ship/crew/office) +"aL" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"aO" = ( +/turf/closed/wall/r_wall, +/area/ship/engineering/incinerator) +"aP" = ( +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Lockdown Shutters"; + id = "cutter_sm_lockdown" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"aQ" = ( +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"aS" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"aZ" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/closet/firecloset/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"bb" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"bg" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/sign/poster/official/moth/smokey{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"bh" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/crew) +"bi" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"bo" = ( +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"bq" = ( +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light_switch{ + pixel_x = -21; + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"bt" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"bA" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/moth/supermatter{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"bF" = ( +/obj/machinery/door/airlock/engineering/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) +"bI" = ( +/obj/structure/table/wood/poker, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = -4 + }, +/obj/item/trash/candy{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"bS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/machinery/smartfridge/drying_rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"bV" = ( +/obj/structure/frame/machine, +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/circuitboard/machine/telecomms/receiver, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/maintenance/port) +"cb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"ce" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/loading{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/cargo) +"ch" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"ck" = ( +/obj/machinery/door/airlock/grunge, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew) +"cl" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/melee/baseball_bat/ablative, +/obj/item/trash/energybar, +/obj/machinery/button/door{ + id = "cutter_general_lockdown"; + name = "Ship Lockdown"; + pixel_x = -7; + pixel_y = 7; + dir = 1; + req_access_txt = "20" + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"cm" = ( +/obj/machinery/vending/cola/black{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"cn" = ( +/obj/effect/turf_decal/industrial/warning/corner, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) +"co" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/security/range) +"cp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/rust, +/area/ship/medical) +"cr" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/newspaper{ + pixel_x = 5 + }, +/obj/item/newspaper{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/machinery/jukebox/boombox{ + pixel_y = 5; + pixel_x = -4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/security) +"cA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"cE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/ship/engineering/electrical) +"cF" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/item/reagent_containers/food/snacks/grown/wheat{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"cH" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/structure/dresser, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"cQ" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"cT" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/structure/bed{ + icon_state = "dirty_mattress" + }, +/obj/structure/sign/poster/contraband/masked_men{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"dc" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"df" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/maintenance/port) +"du" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"dv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/robot_debris/old, +/obj/item/stock_parts/capacitor{ + pixel_y = -9; + pixel_x = -6 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/maintenance/fore) +"dy" = ( +/obj/structure/toilet{ + dir = 4; + pixel_x = -1; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew) +"dB" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/railing{ + dir = 8; + layer = 3.1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"dE" = ( +/obj/machinery/computer/monitor, +/obj/effect/decal/cleanable/robot_debris, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/engineering/communications) +"dF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"dM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"dN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"dP" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber/huge/movable, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"dX" = ( +/obj/structure/chair/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"eb" = ( +/obj/structure/barricade/wooden/crude{ + layer = 3.1 + }, +/obj/machinery/door/poddoor{ + id = "pirate_cutter_escape" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/office) +"ed" = ( +/turf/closed/wall, +/area/ship/crew) +"eh" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "cutter_windows_general" + }, +/turf/open/floor/plating, +/area/ship/security) +"em" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"er" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 9; + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/mug{ + pixel_y = -2; + pixel_x = 9 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/megaphone/sec{ + name = "syndicate megaphone"; + pixel_x = -4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/ship/security) +"ew" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"eA" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor{ + id = "cutter_engines_lockdown"; + name = "Engine Blast Door" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"eE" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/loading{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"eG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/ship/crew/canteen) +"eO" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 5; + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "cutter_armoury"; + name = "Armoury Shutter" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"eQ" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/closet/secure_closet/engineering_welding{ + req_access = null; + anchored = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating/rust, +/area/ship/engineering) +"eV" = ( +/obj/structure/bookcase/random, +/turf/open/floor/concrete/reinforced, +/area/ship/crew) +"eY" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"fb" = ( +/obj/effect/turf_decal/industrial/traffic, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch{ + pixel_x = -12; + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"fc" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"fd" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 1; + piping_layer = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"fe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"fl" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/communications) +"fm" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 10; + color = "#808080" + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_y = 6; + pixel_x = -2 + }, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_y = -1; + pixel_x = 2 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"ft" = ( +/obj/item/toy/plush/beeplushie{ + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/toy/plush/moth{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/toy/beach_ball, +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/item/toy/seashell{ + pixel_y = -10; + pixel_x = 11 + }, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"fu" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"fv" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/airalarm/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"fw" = ( +/turf/closed/wall/rust, +/area/ship/engineering/electrical) +"fy" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/medical) +"fz" = ( +/obj/effect/turf_decal/industrial/traffic, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"fB" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plating, +/area/ship/cargo) +"fC" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/security/range) +"fD" = ( +/obj/structure/chair/comfy/black, +/obj/effect/decal/cleanable/dirt/dust, +/mob/living/simple_animal/pet/penguin/emperor, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"fH" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/communications) +"fL" = ( +/turf/closed/wall/r_wall, +/area/ship/security/range) +"fM" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/dexalin{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/antitoxin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = -2 + }, +/obj/item/storage/pill_bottle/happy{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe/contraband{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/roller, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/moth/epi{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"fN" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/red/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/robot_debris, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"fP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"fQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "cutter_cargo_shutters"; + name = "Cargo Shutters" + }, +/obj/structure/cable, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 4; + id = "cutter_cargo"; + locked = 1 + }, +/turf/open/floor/plating, +/area/ship/cargo) +"fU" = ( +/obj/machinery/door/window/brigdoor/northright{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/range) +"fX" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/trinary/mixer/airmix/inverse{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"fY" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"gb" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"gc" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"gd" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/crayon, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/wallframe/light_fixture{ + pixel_y = -14; + pixel_x = 5 + }, +/obj/structure/closet/crate/secure/loot, +/obj/item/reagent_containers/glass/bottle/hydrogen{ + pixel_x = -9 + }, +/obj/item/reagent_containers/glass/bottle/carbon, +/obj/item/reagent_containers/glass/beaker/meta{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/ammonia{ + pixel_y = -5 + }, +/obj/item/reagent_containers/glass/bottle/carbon{ + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/reagent_containers/glass/bottle/oxygen{ + pixel_x = 6; + pixel_y = -9 + }, +/obj/structure/sign/warning/explosives/alt{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"ge" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/vending/snack/random, +/turf/open/floor/plating, +/area/ship/hallway/central) +"gg" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"gi" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/contraband/inteq_gec{ + pixel_y = -32 + }, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/desk_flag/trans{ + pixel_x = -11; + pixel_y = -3 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/range) +"gu" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"gA" = ( +/obj/structure/salvageable/autolathe, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/security/range) +"gC" = ( +/turf/closed/wall, +/area/ship/engineering/electrical) +"gK" = ( +/obj/effect/decal/cleanable/greenglow/filled, +/obj/effect/decal/cleanable/plasma, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating/airless{ + icon_state = "platingdmg3" + }, +/area/ship/maintenance/port) +"gP" = ( +/turf/closed/wall/rust, +/area/ship/security/armory) +"hl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ship/engineering/atmospherics) +"hm" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"ho" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 10 + }, +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 10; + pixel_x = 16 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"hp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/airlock/wood/glass{ + name = "Canteen" + }, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"ht" = ( +/obj/item/stock_parts/subspace/ansible{ + pixel_x = 10; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/stack/cable_coil/cut/yellow, +/turf/open/floor/plating/airless{ + icon_state = "plating_rust" + }, +/area/ship/maintenance/port) +"hw" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/effect/decal/cleanable/chem_pile{ + pixel_y = -8; + pixel_x = -8 + }, +/obj/machinery/sleeper{ + desc = "An enclosed machine used to stabilize and heal patients. Despite the looks, it's just a normal sleeper painted red."; + dir = 8; + icon_state = "sleeper_s" + }, +/obj/effect/decal/cleanable/oil/streak{ + pixel_x = -11 + }, +/turf/open/floor/plating/rust, +/area/ship/medical) +"hy" = ( +/obj/structure/closet/emcloset/wall{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/wrapping, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"hE" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 6; + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "cutter_armoury"; + name = "Armoury Shutter" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"hF" = ( +/obj/structure/chair/stool{ + dir = 4; + pixel_x = 7; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/ship/crew/office) +"hP" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"hS" = ( +/obj/effect/decal/fakelattice{ + color = "#808080" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/oil/streak, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/engineering/atmospherics) +"hW" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/crew/office) +"ic" = ( +/obj/effect/turf_decal/corner_techfloor_gray/diagonal{ + dir = 4; + layer = 2.36 + }, +/obj/item/weldingtool{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/turf/open/floor/plating/rust, +/area/ship/engineering/electrical) +"im" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 2; + color = "#808080" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"io" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/toilet{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating/catwalk_floor, +/area/ship/security/armory) +"iw" = ( +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/glass{ + pixel_x = 9; + pixel_y = -11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) +"iA" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"iB" = ( +/obj/effect/decal/cleanable/blood{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/mob_spawn/human/botanist, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"iC" = ( +/turf/closed/wall/rust, +/area/ship/engineering/communications) +"iG" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/central) +"iJ" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating/rust, +/area/ship/security/armory) +"iM" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/effect/turf_decal/borderfloorblack, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"iN" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/structure/rack, +/obj/item/storage/firstaid/ancient{ + pixel_x = 4 + }, +/obj/item/storage/firstaid/medical{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/hypospray/mkii/CMO/combat{ + pixel_x = -10 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"iT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/ship/crew/office) +"iY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"je" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/ship/hallway/central) +"jf" = ( +/obj/machinery/button/door{ + id = "cutter_bridge_lockdown"; + name = "Bridge Lockdown"; + pixel_x = -8; + pixel_y = -22; + dir = 1; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 4 + }, +/area/ship/crew/office) +"jg" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/blood/old, +/obj/item/toy/toy_dagger, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating/rust, +/area/ship/maintenance/fore) +"jh" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/security) +"jk" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Lockdown Shutters"; + id = "cutter_sm_lockdown" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"jl" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/security) +"jn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"jq" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/glass{ + pixel_x = -7; + pixel_y = -16 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"jt" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = -1 + }, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_x = 32 + }, +/obj/item/toy/plush/goatplushie{ + pixel_x = 8; + pixel_y = -9 + }, +/obj/item/trash/can{ + pixel_y = -10 + }, +/obj/item/trash/boritos{ + pixel_y = -17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"jv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/open/floor/plating/airless{ + icon_state = "plating_rust" + }, +/area/ship/maintenance/port) +"jA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) +"jB" = ( +/obj/item/flashlight/lamp{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/storage/fancy/cigarettes/derringer{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/lighter/greyscale{ + pixel_x = 4 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/machinery/airalarm/directional/west, +/obj/item/trash/chips{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"jC" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/machinery/button/door{ + id = "cutter_sm_lockdown"; + name = "Lockdown Shutters"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"jF" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"jG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"jI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"jO" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/cleanable/glass{ + pixel_x = -7; + pixel_y = -16 + }, +/obj/structure/tubes, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/reagent_containers/glass/bottle/nutrient/ez{ + pixel_y = 1; + pixel_x = -2 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/ez{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/l4z{ + pixel_x = -11; + pixel_y = -4 + }, +/obj/item/reagent_containers/glass/bottle/mutagen{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_y = -7 + }, +/obj/item/reagent_scanner{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/reagent_containers/glass/bottle/facid{ + pixel_y = -8; + pixel_x = -5 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"jT" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 2; + color = "#808080" + }, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light_switch{ + pixel_x = -22; + dir = 4; + pixel_y = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/industrial/hatch/orange, +/obj/structure/closet/crate/solarpanel_small, +/obj/structure/grille/broken, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"jW" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/security/armory) +"jY" = ( +/turf/closed/wall/rust, +/area/ship/security) +"jZ" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-8" + }, +/turf/open/floor/plating/airless{ + icon_state = "platingdmg1" + }, +/area/ship/maintenance/port) +"kb" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"kc" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 9; + color = "#808080" + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "cutter_armoury"; + name = "Armoury Lockdown"; + pixel_x = -23; + pixel_y = 6; + dir = 4; + req_access_txt = "3" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"kf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/salvage_manipulator, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"kk" = ( +/turf/closed/wall, +/area/ship/cargo) +"kn" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) +"ko" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"kr" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/structure/sign/poster/contraband/bulldog{ + pixel_y = -32 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/hardsuit/security/independent/frontier, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) +"kt" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Office" + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"ku" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"kx" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/crew) +"ky" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/security) +"kC" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/eoehoma{ + pixel_y = 32; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"kD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) +"kG" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/simple/brown/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/ship/engineering/incinerator) +"kI" = ( +/obj/structure/closet/secure_closet{ + icon_door = "tac"; + icon_state = "tac"; + name = "boarding tools locker"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/techfloor, +/obj/item/storage/backpack/duffelbag/syndie/x4, +/obj/item/crowbar/power{ + pixel_y = -4 + }, +/obj/item/radio/intercom/directional/north{ + pixel_y = 23; + pixel_x = -2 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"kK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"kM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/item/storage/backpack/duffelbag{ + pixel_y = -3 + }, +/obj/item/storage/backpack/duffelbag{ + pixel_y = -1; + pixel_x = 4 + }, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken7" + }, +/area/ship/crew) +"kO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"kP" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 8 + }, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/maintenance/fore) +"kS" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"kT" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"kZ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/communications) +"ld" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "cutter_engines_lockdown"; + name = "Engine Blast Door" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"le" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/clothing/gloves/krav_maga/combatglovesplus, +/obj/item/clothing/under/syndicate/camo, +/obj/item/clothing/under/syndicate/soviet, +/obj/item/clothing/neck/scarf/black, +/obj/item/clothing/neck/cloak/hos, +/obj/item/clothing/mask/bandana/black{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/clothing/mask/russian_balaclava, +/obj/item/clothing/suit/armor/vest/marine/medium, +/obj/item/storage/belt/military, +/obj/item/clothing/shoes/cowboy/black, +/obj/item/clothing/head/helmet/bulletproof/x11/frontier, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/closet/secure_closet{ + anchored = 1; + icon_state = "hos"; + name = "master at arm's locker"; + req_access_txt = "3" + }, +/obj/item/gun/ballistic/automatic/pistol/APS, +/obj/item/ammo_box/magazine/pistolm9mm, +/obj/item/clothing/mask/gas/atmos{ + name = "tactical gas mask"; + desc = "Improved gas mask utilized by pirates. Still not very good at blocking gas flow, but it's flameproof!" + }, +/turf/open/floor/carpet/black, +/area/ship/security) +"lf" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pill_bottle/dice{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/toy/cards/deck, +/obj/effect/spawner/lootdrop/gambling{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"ln" = ( +/turf/closed/wall, +/area/ship/maintenance/fore) +"lo" = ( +/obj/effect/turf_decal/atmos/plasma, +/turf/open/floor/engine/plasma, +/area/ship/engineering/incinerator) +"lp" = ( +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Lockdown Shutters"; + id = "cutter_sm_lockdown" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"lq" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"lu" = ( +/obj/machinery/door/airlock/grunge{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/engineering/communications) +"lz" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/crew) +"lA" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/engineering/incinerator) +"lH" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"lJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/range) +"lO" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/closet/crate/engineering, +/obj/item/stack/conveyor/thirty{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/rcl/pre_loaded, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"lR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "gib6-old"; + pixel_x = 8 + }, +/obj/machinery/vending/wallmed{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/medical) +"lT" = ( +/obj/machinery/door/poddoor{ + id = "cutter_disposals_hatch" + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/incinerator) +"lV" = ( +/obj/machinery/holopad/emergency/engineering, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"mh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "6-9" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/ship/engineering/electrical) +"mi" = ( +/obj/structure/closet/wall/red{ + dir = 4; + name = "armory locker"; + pixel_x = -28; + req_one_access_txt = "1" + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/item/clothing/suit/armor/vest/bulletproof/frontier, +/obj/item/clothing/suit/armor/vest/bulletproof/frontier, +/obj/item/clothing/suit/armor/vest/bulletproof/frontier, +/obj/item/clothing/suit/armor/vest/bulletproof/frontier, +/obj/item/clothing/suit/armor/vest/bulletproof/frontier, +/obj/item/clothing/head/helmet/bulletproof/x11/frontier, +/obj/item/clothing/head/helmet/bulletproof/x11/frontier, +/obj/item/clothing/head/helmet/bulletproof/x11/frontier, +/obj/item/clothing/head/helmet/bulletproof/x11/frontier, +/obj/item/clothing/head/helmet/bulletproof/x11/frontier, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"mn" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/machinery/computer/security{ + layer = 3.0; + pixel_y = 4; + pixel_x = 4 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"mq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"mz" = ( +/obj/effect/turf_decal/techfloor, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/paper_bin{ + pixel_x = -5 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/item/reagent_containers/food/drinks/mug{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/flask{ + pixel_x = 5 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"mE" = ( +/obj/structure/cable{ + icon_state = "0-9" + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 8; + id = "cutter_cargo"; + locked = 1 + }, +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + launch_status = 0; + port_direction = 4; + preferred_direction = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "cutter_cargo_shutters"; + name = "Cargo Shutters" + }, +/turf/open/floor/plating, +/area/ship/cargo) +"mI" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/cargo) +"mJ" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/communications) +"mL" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "cutter_engines_lockdown"; + name = "Engine Blast Door" + }, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"mR" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"mS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/ship/hallway/central) +"mU" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ship/hallway/central) +"mW" = ( +/obj/structure/table/reinforced, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/machinery/button/door{ + id = "cutter_bridge_window"; + name = "Bridge Window Shutters"; + pixel_x = 7; + pixel_y = 6; + dir = 1 + }, +/obj/machinery/button/door{ + id = "cutter_windows_general"; + name = "Window Shutters"; + pixel_x = 7; + pixel_y = -3; + dir = 1 + }, +/obj/machinery/button/door{ + id = "cutter_bridge_lockdown"; + name = "Bridge Lockdown"; + pixel_x = -7; + pixel_y = 6; + dir = 1; + req_access_txt = "20" + }, +/obj/machinery/button/door{ + id = "cutter_general_lockdown"; + name = "Ship Lockdown"; + pixel_x = -7; + pixel_y = -3; + dir = 1; + req_access_txt = "20" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"mY" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/girder/displaced, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"na" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 4 + }, +/obj/item/tank/internals/plasma/full, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"ne" = ( +/turf/closed/wall, +/area/ship/maintenance/central) +"nf" = ( +/obj/machinery/holopad/emergency/command, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"ni" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/ship/security) +"np" = ( +/obj/effect/decal/fakelattice{ + color = "#808080" + }, +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/robot_debris{ + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow{ + color = "#808080" + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/engineering/atmospherics) +"nu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken" + }, +/area/ship/crew) +"nw" = ( +/obj/structure/table/survival_pod, +/obj/item/pda/chemist, +/obj/item/paper/fluff/jobs/toxins/chemical_info{ + pixel_y = -3; + pixel_x = 7 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 9 + }, +/obj/structure/sign/warning/chemdiamond{ + pixel_x = -32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/fore) +"nx" = ( +/obj/effect/turf_decal/techfloor, +/obj/structure/closet/wall{ + dir = 1; + icon_door = "yellow_wall"; + name = "engineering closet"; + pixel_y = -28 + }, +/obj/item/clothing/suit/toggle/industrial, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/workboots{ + pixel_y = -7 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/effect/turf_decal/steeldecal/steel_decals1{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/glasses/meson{ + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"nB" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/mineral/ore_redemption{ + dir = 8; + output_dir = 8; + input_dir = 8 + }, +/obj/structure/grille/broken, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"nD" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "cutter_windows_general" + }, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"nI" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/engineering) +"nJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/green, +/area/ship/crew/office) +"nL" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"nM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"nO" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating/rust, +/area/ship/engineering/atmospherics) +"nP" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1; + color = "#808080" + }, +/obj/item/kitchen/knife/combat{ + pixel_x = 9; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"nQ" = ( +/obj/structure/catwalk/over/plated_catwalk, +/turf/open/floor/plating, +/area/ship/hallway/central) +"nX" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/structure/closet/wall/red{ + dir = 1; + name = "Firearm Locker"; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_x = -1 + }, +/obj/item/gun/ballistic/derringer{ + pixel_y = -4; + pixel_x = 3 + }, +/obj/item/gun/ballistic/rifle/boltaction/polymer{ + pixel_y = -8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"nZ" = ( +/obj/structure/sign/poster/official/here_for_your_safety{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 8 + }, +/area/ship/bridge) +"oa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/central) +"oh" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 8 + }, +/area/ship/bridge) +"oj" = ( +/obj/machinery/door/airlock/atmos/glass, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Lockdown Shutters"; + id = "cutter_sm_lockdown" + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"ok" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"oq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/plastic{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"oy" = ( +/obj/machinery/door/airlock/engineering/glass{ + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"oA" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/emitter{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"oE" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/loading{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"oN" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"oO" = ( +/obj/structure/sign/poster/contraband/energy_swords{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"oS" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/turf_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"oT" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"oU" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/curtain/bounty, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"oX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"oY" = ( +/turf/closed/wall/r_wall, +/area/ship/engineering/atmospherics) +"pc" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/sign/poster/official/moth/piping{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/engineering/incinerator) +"pd" = ( +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) +"ph" = ( +/obj/effect/decal/fakelattice{ + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/engineering/atmospherics) +"pj" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"pn" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/dorms, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"po" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/xenoblood, +/obj/effect/turf_decal/industrial/radiation{ + dir = 5 + }, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = -32 + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/maintenance/fore) +"pA" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"pB" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -1 + }, +/obj/item/table_bell{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/ship/crew/canteen/kitchen) +"pC" = ( +/obj/effect/turf_decal/steeldecal/steel_decals6, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"pD" = ( +/obj/item/stock_parts/subspace/ansible{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stock_parts/cell/high{ + pixel_y = -4 + }, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"pF" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/fermenting_barrel{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/structure/fermenting_barrel{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bucket/wooden{ + pixel_y = -4; + pixel_x = -1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"pM" = ( +/turf/closed/wall, +/area/ship/security) +"pN" = ( +/obj/structure/bookcase/random/fiction, +/obj/item/radio/intercom/directional/north{ + pixel_y = 22; + pixel_x = -6 + }, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = 22 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"pO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/rice{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/concrete/slab_3, +/area/ship/crew/canteen/kitchen) +"pQ" = ( +/obj/machinery/smartfridge/disks, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"pR" = ( +/obj/effect/turf_decal/number/zero, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/security/armory) +"pT" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/junglebush/c, +/mob/living/simple_animal/chicken, +/turf/open/floor/grass, +/area/ship/maintenance/central) +"pU" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/maintenance/fore) +"pZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"qf" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-2" + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"qk" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/maintenance/fore) +"qp" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/bottle/pruno, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/hallway/fore) +"qr" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 28 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"qv" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/hole{ + dir = 1 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"qw" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/sign/departments/botany{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"qG" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/card/emag/limited{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/structure/closet/wall/blue{ + dir = 4; + name = "Component Storage"; + pixel_x = -28 + }, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/orange{ + pixel_y = -6; + pixel_x = 5 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/stock_parts/manipulator{ + pixel_y = 5 + }, +/obj/item/stock_parts/micro_laser/high{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stock_parts/micro_laser/high{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/stock_parts/micro_laser/high{ + pixel_y = -2; + pixel_x = 1 + }, +/obj/item/screwdriver{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/jammer, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/maintenance/port) +"qK" = ( +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/effect/turf_decal/box/corners, +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/crew/canteen/kitchen) +"qP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/hallway/central) +"qQ" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old{ + pixel_x = -9; + pixel_y = 11; + icon_state = "floor6-old" + }, +/obj/effect/decal/cleanable/blood/old{ + pixel_x = -2; + pixel_y = -3; + icon_state = "gib2-old" + }, +/obj/effect/turf_decal/arrows{ + pixel_y = 15 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"qT" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) +"qU" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/obj/item/clothing/head/hardhat/weldhat/orange{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"qX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"rd" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/fore) +"re" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"rg" = ( +/turf/closed/wall, +/area/ship/hallway/central) +"rm" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"ro" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"rp" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/rust, +/area/ship/maintenance/port) +"rq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"ru" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 8; + id = "cutter_conveyor" + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/incinerator) +"rw" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/security) +"rz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/ship/engineering/atmospherics) +"rF" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/airless{ + icon_state = "foam_plating" + }, +/area/ship/maintenance/port) +"rG" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ship/hallway/central) +"rJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/closet/wall{ + dir = 1; + pixel_y = -28 + }, +/obj/item/reagent_containers/syringe/contraband/fentanyl{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/reagent_containers/syringe/contraband/morphine, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/reagent_containers/pill/floorpill, +/obj/item/reagent_containers/pill/floorpill, +/obj/item/reagent_containers/pill/floorpill, +/obj/item/reagent_containers/pill/happy{ + pixel_x = 7; + pixel_y = -11 + }, +/obj/item/reagent_containers/pill/happy{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/reagent_containers/pill/happy{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/reagent_containers/pill/happy{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/reagent_containers/pill/happy{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_containers/pill/happy{ + pixel_x = 12; + pixel_y = -10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew) +"rN" = ( +/turf/closed/wall/rust, +/area/ship/crew/canteen) +"rQ" = ( +/obj/structure/closet/emcloset/wall{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"rW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"sa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"sb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"se" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"sf" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/cloth/grey, +/obj/item/radio/intercom/directional/north{ + pixel_y = 23; + pixel_x = -2 + }, +/obj/machinery/light_switch{ + pixel_x = 10; + pixel_y = 23 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/carpet/red_gold, +/area/ship/crew) +"sg" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"sj" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/hole{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-9" + }, +/obj/item/stack/sheet/metal/fifty{ + pixel_y = 2 + }, +/obj/item/stack/sheet/metal/fifty{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/structure/closet/crate/engineering, +/obj/item/stack/sheet/mineral/plastitanium/fifty{ + pixel_x = -3 + }, +/obj/item/stack/sheet/mineral/plastitanium/twenty{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"sn" = ( +/obj/structure/chair/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"sp" = ( +/obj/structure/chair/e_chair, +/turf/open/floor/plasteel/tech, +/area/ship/security) +"sq" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "cutter_gun_driver" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1; + color = "#808080" + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/security/range) +"ss" = ( +/turf/closed/wall/r_wall, +/area/ship/hallway/fore) +"sw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"sy" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/security/armory) +"sF" = ( +/obj/structure/table/reinforced, +/obj/item/trash/semki{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -7 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/ship/crew/canteen/kitchen) +"sH" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/computer/cryopod/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) +"sK" = ( +/obj/structure/chair/office{ + dir = 1; + name = "tactical swivel chair"; + pixel_y = 9; + pixel_x = -5 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"sL" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/east, +/obj/machinery/light_switch{ + pixel_x = 22; + dir = 8; + pixel_y = 7 + }, +/turf/open/floor/plating/rust, +/area/ship/maintenance/central) +"sP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 8 + }, +/area/ship/bridge) +"sR" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/concrete/slab_4, +/area/ship/crew/canteen/kitchen) +"sS" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/machinery/recharger{ + pixel_x = 6 + }, +/obj/machinery/button/door{ + id = "cutter_armoury"; + name = "Armoury Lockdown"; + pixel_x = -23; + pixel_y = 6; + dir = 4; + req_access_txt = "3" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"ta" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"ti" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/kudzu{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/ship/crew/office) +"tl" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1; + color = "#808080" + }, +/obj/structure/cable{ + icon_state = "0-10" + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + id = "cutter_gun_holo"; + locked = 1 + }, +/obj/machinery/door/poddoor{ + id = "cutter_gun_hatch" + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/security/range) +"to" = ( +/turf/open/floor/engine/plasma, +/area/ship/engineering/incinerator) +"tp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/holopad, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"tq" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/techfloor/hole/right{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access = null + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"tr" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/cargo) +"tu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_x = 32 + }, +/obj/machinery/vending/syndichem, +/obj/structure/sign/departments/chemistry{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"tv" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-74" + }, +/obj/item/stack/ore/salvage/scrapmetal/ten, +/turf/open/floor/plating/airless{ + icon_state = "foam_plating" + }, +/area/ship/maintenance/port) +"tw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"tD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"tH" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"tL" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"tM" = ( +/obj/structure/table/wood/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = 8 + }, +/obj/item/pen{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/phone{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"tQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/cloth/grey, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet/red_gold, +/area/ship/crew) +"tT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"tX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/fluff/hedge{ + icon_state = "hedge-4"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/railing{ + color = "#A47449"; + dir = 10 + }, +/obj/structure/sign/barsign{ + icon_state = "thewretchedhive"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"ul" = ( +/obj/structure/rack, +/obj/item/storage/box/zipties{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/item/storage/box/firingpins{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/storage/box/syndie_kit/throwing_weapons, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/stechkin{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"um" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"uq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/industrial/radiation{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/chem_master, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/maintenance/fore) +"us" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"ut" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 4 + }, +/area/ship/engineering/atmospherics) +"uu" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/lighter/greyscale{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/figure/chemist{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/trash/syndi_cakes, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/fore) +"uy" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/item/desk_flag{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/item/newspaper{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/gps{ + pixel_x = -6 + }, +/obj/item/megaphone/command{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"uz" = ( +/obj/effect/turf_decal/industrial/warning/cee, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/machinery/airalarm/directional/north, +/obj/item/clothing/suit/space/scar, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/office) +"uB" = ( +/obj/effect/turf_decal/techfloor/corner, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/stack/cable_coil/cut/yellow, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/stock_parts/subspace/filter{ + pixel_x = 7; + pixel_y = -13 + }, +/turf/open/floor/plating/airless{ + icon_state = "plating_rust" + }, +/area/ship/maintenance/port) +"uD" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/hallway/central) +"uH" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/outline, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"uK" = ( +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen/kitchen) +"uL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"uN" = ( +/obj/structure/reagent_dispensers, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/railing{ + dir = 4; + layer = 3.1 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"uO" = ( +/obj/structure/chair/office{ + name = "tactical swivel chair"; + dir = 8 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/engineering/communications) +"uP" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/machinery/computer/crew/syndie{ + dir = 1; + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"uQ" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"uX" = ( +/obj/effect/decal/cleanable/sprayweb, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"va" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/hardsuit/security/independent/frontier, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) +"vc" = ( +/obj/item/stock_parts/subspace/filter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"ve" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/fore) +"vg" = ( +/turf/closed/wall/rust, +/area/ship/maintenance/central) +"vh" = ( +/obj/machinery/door/airlock/external, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"vl" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"vm" = ( +/obj/machinery/computer/crew/syndie, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/security) +"vo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/bed/dogbed, +/obj/machinery/light/small/directional/south, +/obj/machinery/light_switch{ + pixel_x = 22; + dir = 8; + pixel_y = -11 + }, +/mob/living/simple_animal/parrot, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/ship/security) +"vq" = ( +/obj/effect/decal/cleanable/glass{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = -7 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = -1; + pixel_x = 9 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 7; + pixel_y = -8 + }, +/obj/item/restraints/handcuffs/cable/white, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/fore) +"vr" = ( +/obj/item/stack/ore/salvage/scrapsilver, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"vs" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"vt" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"vu" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/ship/maintenance/port) +"vw" = ( +/obj/structure/rack, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/structure/sign/poster/official/mini_energy_gun{ + pixel_x = -32 + }, +/obj/item/grenade/frag{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/grenade/frag{ + pixel_x = 1; + pixel_y = -8 + }, +/obj/item/grenade/firecracker, +/obj/item/grenade/firecracker{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/grenade/flashbang{ + pixel_y = -4; + pixel_x = -10 + }, +/obj/item/grenade/flashbang{ + pixel_y = -5; + pixel_x = -7 + }, +/obj/item/grenade/flashbang{ + pixel_y = -9; + pixel_x = -8 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"vy" = ( +/obj/structure/plaque/static_plaque/golden{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/holopad/emergency/command, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/ship/crew/office) +"vz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"vC" = ( +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"vD" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) +"vE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/fluff/hedge{ + icon_state = "hedge-8"; + pixel_y = 2; + pixel_x = 2 + }, +/obj/structure/railing{ + color = "#A47449"; + dir = 2 + }, +/obj/structure/sign/poster/contraband/mothpill{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"vG" = ( +/obj/item/stock_parts/cell/crap{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = 2; + pixel_y = -5 + }, +/obj/item/stock_parts/subspace/analyzer{ + pixel_y = -10; + pixel_x = 6 + }, +/turf/open/floor/plating/airless{ + icon_state = "plating_rust" + }, +/area/ship/maintenance/port) +"vH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"vK" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/syringe/contraband/bath_salts{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/reagent_containers/syringe/contraband/space_drugs{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/mortar/metal, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"vL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/food/snacks/breadslice/moldy{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/structure/table/wood/reinforced, +/obj/item/reagent_containers/food/snacks/breadslice/creamcheese{ + pixel_x = -1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/ship/crew/canteen) +"vX" = ( +/obj/machinery/light/broken/directional/west, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"vY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"vZ" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/turf_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"wc" = ( +/turf/closed/wall/rust, +/area/ship/cargo) +"wd" = ( +/obj/item/disk/plantgene{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/disk/plantgene{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"wh" = ( +/obj/machinery/atmospherics/pipe/simple/brown/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/incinerator) +"wi" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"wm" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"wo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/item/stack/rods{ + pixel_x = 7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"wp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew) +"ws" = ( +/turf/template_noop, +/area/template_noop) +"wt" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"wu" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"ww" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/ship/maintenance/central) +"wx" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/ship/cargo) +"wC" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/closet/firecloset/wall{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plating, +/area/ship/hallway/central) +"wD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"wG" = ( +/obj/structure/table/wood/reinforced, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/paicard{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/drinks/bottle/hooch{ + pixel_x = -12; + pixel_y = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"wN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"wQ" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 4 + }, +/obj/structure/closet/emcloset/wall{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"wS" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 2; + color = "#808080" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/security/range) +"wT" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/official/help_others{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"wZ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8; + color = "#808080" + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/computer/cargo/express{ + dir = 8 + }, +/obj/machinery/vending/wallmed{ + pixel_y = 32 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) +"xh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"xj" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"xk" = ( +/turf/closed/wall/r_wall, +/area/ship/cargo) +"xo" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "cutter_gun_driver" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 2; + color = "#808080" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/security/range) +"xs" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/foam, +/area/ship/security) +"xx" = ( +/obj/effect/turf_decal/techfloor, +/obj/machinery/power/port_gen/pacman/super, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/shreds, +/obj/structure/cable/yellow{ + icon_state = "0-1" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"xB" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/curtain/bounty, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"xK" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/hallway/fore) +"xO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + icon_state = "dirty_mattress" + }, +/obj/structure/sign/warning/incident{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/ship/hallway/central) +"xP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/concrete/slab_2, +/area/ship/crew/canteen/kitchen) +"xS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"yd" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/hardsuit/security/independent/frontier, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) +"yh" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"yk" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = 22 + }, +/obj/item/radio/intercom/directional/north{ + pixel_y = 22; + pixel_x = -6 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"yl" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/item/modular_computer/laptop{ + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/moonshine{ + pixel_x = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"yo" = ( +/turf/open/floor/engine/n2, +/area/ship/engineering/atmospherics) +"yq" = ( +/obj/effect/decal/cleanable/sprayweb, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"ys" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"yv" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/hallway/fore) +"yw" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen/fountain{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/megaphone/sec, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"yx" = ( +/turf/closed/wall/rust, +/area/ship/maintenance/port) +"yy" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/belt/utility/full/engi{ + pixel_y = -1; + pixel_x = 3 + }, +/obj/item/clothing/glasses/welding{ + pixel_y = 5 + }, +/obj/item/multitool{ + pixel_x = 9 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/range) +"yF" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Animal Pen"; + req_access_txt = "35" + }, +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/decal/cleanable/blood/gibs, +/mob/living/simple_animal/cow{ + desc = "Allegedly a bull."; + name = "Otis"; + real_name = "Betsy" + }, +/turf/open/floor/grass, +/area/ship/maintenance/central) +"yG" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/rust, +/area/ship/maintenance/port) +"yJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"yL" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/office) +"yM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/stock_parts/scanning_module{ + pixel_x = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/maintenance/fore) +"yO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/fore) +"yV" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/light_switch{ + pixel_x = -22; + dir = 4; + pixel_y = 6 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"zc" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "cutter_windows_general" + }, +/turf/open/floor/plating, +/area/ship/security/armory) +"zf" = ( +/obj/structure/girder/reinforced, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"zh" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ship/security/armory) +"zi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/clothing/gloves/color/latex/nitrile/evil, +/obj/item/healthanalyzer, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/obj/machinery/vending/wallmed{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"zn" = ( +/obj/effect/spawner/lootdrop/salvage_scanning, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"zo" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/engineering{ + pixel_x = -32 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"zu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"zv" = ( +/obj/machinery/door/airlock/external, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"zw" = ( +/turf/closed/wall, +/area/ship/engineering/communications) +"zE" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"zF" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"zH" = ( +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter{ + pixel_x = 2; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"zJ" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 4; + layer = 2.36 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4; + layer = 2.37 + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 10; + layer = 2.36 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/ship/engineering/electrical) +"zK" = ( +/turf/closed/wall/rust, +/area/ship/medical) +"zP" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/hardsuit/security/independent/frontier, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/tech/grid, +/area/ship/security/armory) +"zS" = ( +/obj/machinery/door/window/brigdoor/northleft{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/concrete/slab_4, +/area/ship/crew/canteen/kitchen) +"zV" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/engine) +"zY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/patterned, +/area/ship/cargo) +"zZ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 2; + color = "#808080" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Ab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen/kitchen) +"Ad" = ( +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/engineer, +/obj/item/clothing/head/helmet/space/light/engineer, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/communications) +"Ag" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/light_switch{ + pixel_x = -8; + dir = 1; + pixel_y = -22 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/brown/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"Ah" = ( +/obj/effect/decal/cleanable/robot_debris{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/plastic, +/obj/machinery/light/broken/directional/south, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"Ak" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/grunge, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew) +"Al" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 9 + }, +/obj/item/stock_parts/subspace/filter{ + pixel_x = 10; + pixel_y = -11 + }, +/obj/item/circuitboard/machine/telecomms/processor{ + pixel_y = -9; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/blood/gibs/old{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/maintenance/port) +"Am" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering) +"An" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/structure/showcase/cyborg/old, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/ship/security) +"As" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"Au" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"AA" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"AD" = ( +/turf/closed/wall/r_wall, +/area/ship/crew/office) +"AG" = ( +/obj/item/trash/popcorn{ + pixel_y = 4; + pixel_x = -16 + }, +/obj/item/trash/candy, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"AI" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"AL" = ( +/obj/structure/closet/wall/orange{ + dir = 8; + name = "Engineering locker"; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/robot_debris/gib, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/suit/hooded/wintercoat/engineering{ + pixel_x = 6 + }, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/clothing/shoes/workboots{ + pixel_y = -7 + }, +/obj/structure/catwalk, +/obj/item/clothing/under/rank/engineering/chief_engineer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating/rust, +/area/ship/engineering/communications) +"AM" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/bed{ + icon_state = "dirty_mattress" + }, +/obj/item/bedsheet/grey, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ship/security/armory) +"AQ" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"AU" = ( +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/yellow{ + icon_state = "0-1" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"AV" = ( +/turf/closed/wall, +/area/ship/crew/canteen) +"AZ" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Bb" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Lockdown Shutters"; + id = "cutter_sm_lockdown" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Bh" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/structure/bed{ + icon_state = "dirty_mattress" + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Bm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + pixel_y = -8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/obj/machinery/light/small/broken/directional/east, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light_switch{ + pixel_x = 22; + dir = 8; + pixel_y = -11 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/medical) +"Bo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"Bp" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/maintenance/port) +"Bq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + pixel_y = -7 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Br" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Bv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_bridge_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/fore) +"Bw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on, +/turf/open/floor/engine/plasma, +/area/ship/engineering/incinerator) +"By" = ( +/obj/structure/guncase, +/obj/item/gun/ballistic/automatic/smg/thompson{ + pixel_y = -3 + }, +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/item/gun/ballistic/rifle/boltaction{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"Bz" = ( +/obj/effect/turf_decal/techfloor, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/crew) +"BD" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/machinery/holopad/emergency/medical, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"BH" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + dir = 8; + pixel_y = -11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"BI" = ( +/turf/open/floor/engine, +/area/ship/engineering/engine) +"BQ" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"BR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"BW" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"BZ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Ca" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/hole{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/random_machine_circuit_rare, +/obj/item/stack/ore/salvage/scraptitanium/five, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"Cg" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1; + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Co" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/industrial/hatch/red, +/obj/structure/closet/firecloset, +/obj/structure/sign/poster/official/moth/hardhats{ + pixel_y = -32 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"Cq" = ( +/obj/structure/frame/machine, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/circuitboard/machine/telecomms/hub{ + pixel_x = -3; + pixel_y = -4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"CA" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 1; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"CF" = ( +/obj/effect/turf_decal/techfloor{ + dir = 5 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8; + min_temperature = 1; + target_temperature = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"CI" = ( +/obj/effect/turf_decal/industrial/loading{ + dir = 4; + layer = 2.37 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 8; + layer = 2.36 + }, +/turf/open/floor/plasteel, +/area/ship/cargo) +"CL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wall{ + dir = 8; + pixel_x = 28; + name = "Uniform Closet" + }, +/obj/item/clothing/neck/shemagh, +/obj/item/clothing/neck/shemagh, +/obj/item/clothing/neck/shemagh, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/under/rank/security/officer/frontier, +/obj/item/clothing/under/rank/security/officer/frontier, +/obj/item/clothing/under/rank/security/officer/frontier, +/obj/item/clothing/under/rank/security/officer/frontier, +/obj/item/clothing/under/rank/security/officer/frontier, +/obj/item/clothing/under/rank/security/officer/frontier, +/obj/item/clothing/under/rank/security/officer/frontier, +/obj/item/clothing/head/beret/sec/frontier, +/obj/item/clothing/head/beret/sec/frontier, +/obj/item/clothing/head/beret/sec/frontier, +/obj/item/clothing/head/beret/sec/frontier, +/obj/item/clothing/head/beret/sec/frontier, +/obj/item/clothing/head/beret/sec/frontier, +/obj/item/clothing/head/beret/sec/frontier, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"CO" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/medical) +"CP" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/engineering/incinerator) +"CS" = ( +/obj/item/stack/rods/ten{ + pixel_x = 9 + }, +/turf/open/floor/plating/airless{ + icon_state = "platingdmg1" + }, +/area/ship/maintenance/port) +"CV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"CW" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/modular_computer/laptop/preset, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/seeds/tobacco/space{ + pixel_y = -14; + pixel_x = 5 + }, +/obj/item/seeds/tobacco/space{ + pixel_y = -14; + pixel_x = 5 + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"CX" = ( +/obj/effect/turf_decal/corner_techfloor_grid/full{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/corner, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"CZ" = ( +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/condiment/mayonnaise, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/crew/canteen/kitchen) +"Db" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/purple/hidden, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"De" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/structure/frame/machine, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/circuitboard/machine/telecomms/bus, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/port) +"Dv" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/patterned/grid, +/area/ship/medical) +"Dw" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-3" + }, +/obj/structure/girder, +/turf/open/floor/plating/airless{ + icon_state = "foam_plating" + }, +/area/ship/maintenance/port) +"Dy" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-74" + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"DC" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"DE" = ( +/obj/effect/turf_decal/corner_techfloor_grid/full{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/closet/wall/blue{ + dir = 8; + pixel_x = 28; + name = "Bridge Officer's locker" + }, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/under/rank/security/officer/frontier/officer, +/obj/item/clothing/head/beret/sec/frontier, +/obj/item/clothing/neck/cloak/qm, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/glasses/hud/diagnostic, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/melee/transforming/energy/sword/saber/pirate/red, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"DF" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/item/geiger_counter{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/geiger_counter{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/obj/item/pipe_dispenser{ + pixel_y = -6 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"DG" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/grass, +/area/ship/maintenance/central) +"DR" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-3" + }, +/obj/item/stack/ore/salvage/scrapmetal/ten{ + pixel_y = -4; + pixel_x = -11 + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"DS" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Ea" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) +"Eb" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/cargo) +"Ec" = ( +/obj/machinery/computer/med_data/syndie{ + dir = 1; + pixel_y = -3 + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"Eg" = ( +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/pen/fourcolor{ + pixel_x = -4 + }, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/stamp/denied{ + pixel_x = 8 + }, +/obj/item/stamp/qm{ + pixel_y = -5; + pixel_x = 8 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Ej" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/fakelattice{ + color = "#808080" + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass{ + dir = 8; + pixel_y = 1; + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/engineering/atmospherics) +"Ek" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 13; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/snacks/honeybar{ + pixel_x = -3 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"El" = ( +/turf/closed/wall/r_wall, +/area/ship/engineering/engine) +"Em" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/northleft, +/turf/open/floor/plasteel/stairs, +/area/ship/security) +"En" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Er" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/food/drinks/bottle/hooch{ + pixel_x = -15; + pixel_y = -6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Et" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/central) +"Eu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fakelattice{ + icon_state = "lattice-3" + }, +/obj/item/stack/rods{ + pixel_x = -7; + pixel_y = -2 + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"Ey" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/corner, +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"EC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"EG" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew) +"EI" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber/huge/movable, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"EJ" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"EM" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/security/armory) +"EP" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_x = -1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/turf_decal/steeldecal/steel_decals8, +/obj/effect/turf_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"ER" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"ES" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Cannon Bay" + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/range) +"EX" = ( +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/suit/space/engineer, +/obj/item/clothing/head/helmet/space/light/engineer, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/communications) +"Fb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 8 + }, +/area/ship/security/armory) +"Fd" = ( +/obj/effect/turf_decal/techfloor, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"Fg" = ( +/obj/effect/turf_decal/trimline/opaque/red/corner, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"Fo" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Fu" = ( +/obj/machinery/door/airlock/external, +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Fw" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Fx" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"FC" = ( +/obj/effect/turf_decal/techfloor{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"FE" = ( +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/chair{ + dir = 4; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) +"FF" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/engineering) +"FG" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"FI" = ( +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/corner, +/obj/effect/turf_decal/radiation, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/warning/radiation{ + pixel_y = 32 + }, +/obj/machinery/light/directional/west, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson{ + pixel_y = -6 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = -6 + }, +/obj/item/reagent_containers/syringe/salacid, +/obj/item/reagent_containers/hypospray/medipen/penacid, +/obj/item/reagent_containers/hypospray/medipen/penacid, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"FK" = ( +/obj/effect/turf_decal/techfloor, +/obj/item/stack/sheet/plasteel/twenty{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/autolathe, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 6 + }, +/obj/item/stack/sheet/metal/fifty{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"FL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/ship/hallway/central) +"FM" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central6{ + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/button/door{ + id = "cutter_engines_lockdown"; + name = "Engine Shutters"; + pixel_y = 23; + pixel_x = -10 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"FQ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/security/armory) +"FR" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 2; + color = "#808080" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + id = "cutter_gun_hatch" + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + id = "cutter_gun_holo"; + locked = 1; + dir = 1 + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/security/range) +"FT" = ( +/obj/structure/sign/poster/ripped{ + pixel_x = -32 + }, +/obj/structure/fluff/hedge, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/small/directional/west, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/wood, +/area/ship/crew/office) +"FU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/ship/cargo) +"FV" = ( +/obj/effect/decal/fakelattice, +/obj/structure/salvageable/computer{ + dir = 4; + pixel_x = -1 + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"FW" = ( +/obj/item/stock_parts/subspace/filter{ + pixel_x = -7; + pixel_y = -13 + }, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal{ + pixel_x = 8; + pixel_y = -9 + }, +/obj/item/stock_parts/subspace/crystal{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/stock_parts/subspace/crystal{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/gibs/body{ + pixel_y = -13 + }, +/turf/open/floor/plating/airless{ + icon_state = "plating_rust" + }, +/area/ship/maintenance/port) +"Gf" = ( +/obj/machinery/computer/secure_data/syndie{ + layer = 3.0; + pixel_y = 4 + }, +/obj/effect/turf_decal/techfloor, +/obj/item/reagent_containers/food/drinks/mug{ + pixel_y = 2; + pixel_x = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"Gl" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/obj/item/flashlight, +/obj/item/trash/candy, +/obj/item/trash/boritos{ + pixel_y = -3 + }, +/obj/item/taperecorder, +/obj/item/switchblade, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"Gn" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/caution, +/obj/effect/decal/cleanable/oil/streak, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) +"Gp" = ( +/obj/structure/window/reinforced/spawner, +/obj/item/trash/cheesie{ + pixel_x = -4 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "cutter_conveyor" + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/incinerator) +"Gq" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/bridge) +"Gr" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/ship/crew/office) +"Gw" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/highsecurity{ + name = "Master At Arm's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel, +/area/ship/security) +"Gz" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning/corner, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/cargo) +"GE" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/maintenance/fore) +"GF" = ( +/obj/effect/turf_decal/techfloor, +/obj/structure/closet/wall{ + dir = 1; + icon_door = "yellow_wall"; + name = "engineering closet"; + pixel_y = -28 + }, +/obj/item/clothing/suit/toggle/industrial, +/obj/item/clothing/under/utility, +/obj/item/clothing/under/utility/skirt, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/workboots{ + pixel_y = -7 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/glasses/meson{ + pixel_y = -6 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"GH" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/engineering/communications) +"GI" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/outline/orange, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"GL" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/bridge) +"GM" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/incinerator) +"GO" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/fore) +"GQ" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/engineering/atmospherics) +"GS" = ( +/turf/closed/wall/r_wall/rust, +/area/ship/engineering/engine) +"GU" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"GV" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/closet/crate/critter, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human{ + pixel_x = -3; + pixel_y = -6 + }, +/obj/item/stack/sheet/animalhide/human{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/reagent_containers/food/snacks/meat/slab/human, +/obj/item/reagent_containers/food/snacks/meat/slab/human, +/obj/item/reagent_containers/food/snacks/meat/slab/human, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"GY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/showcase/cyborg/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/security) +"Hc" = ( +/obj/item/stock_parts/subspace/ansible{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stock_parts/subspace/filter{ + pixel_x = 7; + pixel_y = -13 + }, +/obj/item/stock_parts/subspace/filter{ + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible{ + pixel_x = 10; + pixel_y = -9 + }, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"Hd" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8; + min_temperature = 1; + target_temperature = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Hf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1; + pixel_x = 6; + pixel_y = 7 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"Hi" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/dorms, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"Hm" = ( +/obj/structure/bed{ + icon_state = "dirty_mattress" + }, +/obj/item/bedsheet/grey, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"Hs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"Ht" = ( +/obj/structure/bed/dogbed, +/obj/effect/decal/cleanable/molten_object/large{ + pixel_x = 19; + pixel_y = -2 + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"Hz" = ( +/obj/structure/curtain/bounty, +/obj/effect/decal/cleanable/greenglow/ecto, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"HD" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/structure/curtain/cloth/grey, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/paicard{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew) +"HE" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"HG" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/engineering/engine) +"HI" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/ship/engineering/incinerator) +"HL" = ( +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/turf_decal/steeldecal/steel_decals9, +/obj/structure/sign/poster/contraband/smoke{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"HN" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/cargo) +"HR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/maintenance/central) +"HV" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap, +/turf/open/floor/plating/catwalk_floor, +/area/ship/security/armory) +"HW" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/carnivore{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/box/ingredients/exotic{ + pixel_x = 7 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"Ij" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/fore) +"Ik" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "cutter_windows_general" + }, +/turf/open/floor/plating, +/area/ship/crew) +"Im" = ( +/turf/closed/wall/r_wall, +/area/ship/maintenance/fore) +"In" = ( +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"It" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/cargo) +"Iu" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "0-1" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"Iv" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/ship/security) +"IB" = ( +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) +"IC" = ( +/obj/structure/table/wood/reinforced, +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/toy/cards/deck/cas/black{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/item/toy/cards/deck/cas{ + pixel_x = -11 + }, +/obj/item/lighter{ + pixel_x = 12; + pixel_y = -8 + }, +/turf/open/floor/concrete/reinforced, +/area/ship/crew) +"ID" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch{ + pixel_x = -12; + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"IE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/table/wood/reinforced, +/obj/item/newspaper{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/mug{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/newspaper{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/newspaper{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/contraband/space_cola{ + pixel_x = -32 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"IF" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 10 + }, +/obj/machinery/telecomms/broadcaster, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = 2; + pixel_y = -5 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light_switch{ + pixel_x = -21; + dir = 4; + pixel_y = 7 + }, +/obj/item/stack/cable_coil/cut/yellow, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/maintenance/port) +"II" = ( +/obj/effect/decal/cleanable/insectguts, +/obj/structure/catwalk/over, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"IL" = ( +/turf/closed/wall/rust, +/area/ship/maintenance/fore) +"IM" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "cutter_windows_general" + }, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"IP" = ( +/obj/effect/turf_decal/number/two, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/security/armory) +"IR" = ( +/obj/structure/salvageable/computer{ + dir = 4; + pixel_x = -3 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/circuit/green/off, +/area/ship/security/range) +"IS" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "cutter_gun_hatch"; + name = "Gun Shutters"; + pixel_x = -8; + pixel_y = 5; + dir = 8 + }, +/obj/machinery/button/shieldwallgen{ + id = "cutter_gun_holo"; + pixel_x = -9; + dir = 8; + pixel_y = -3 + }, +/obj/machinery/button/massdriver{ + id = "cutter_gun_driver"; + name = "Launch Control"; + pixel_y = -3; + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/security/range) +"IX" = ( +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/glowstick, +/obj/item/stack/cable_coil/cut/yellow, +/obj/item/stack/rods{ + pixel_x = 7; + pixel_y = -9 + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"Ja" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/south, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"Jb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"Jd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Jf" = ( +/obj/item/grenade/empgrenade{ + pixel_x = -9 + }, +/obj/item/grenade/empgrenade{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/grenade/syndieminibomb{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/grenade/syndieminibomb{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/structure/rack, +/obj/item/grenade/spawnergrenade/manhacks{ + pixel_y = -5; + pixel_x = -1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/range) +"Jk" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"Jl" = ( +/obj/effect/turf_decal/industrial/traffic, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"Jp" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/decal/cleanable/wrapping, +/obj/effect/decal/cleanable/cobweb{ + layer = 5 + }, +/obj/machinery/jukebox, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/light/directional/west, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 23 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"Jr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 8 + }, +/area/ship/security/range) +"Jt" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bag/plants/portaseeder, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"Jx" = ( +/obj/machinery/vending/cola/random, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 42 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 21; + dir = 8 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 28; + dir = 1 + }, +/obj/structure/sign/directions/security{ + pixel_y = 35; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Jy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"JE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/window/reinforced/spawner/west, +/obj/structure/frame/machine, +/turf/open/floor/concrete/slab_4, +/area/ship/crew/canteen/kitchen) +"JK" = ( +/turf/closed/wall, +/area/ship/security/armory) +"JO" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/structure/sign/departments/botany{ + pixel_x = 32 + }, +/turf/open/floor/concrete/slab_1, +/area/ship/crew/canteen/kitchen) +"JQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + pixel_y = 22; + pixel_x = 6 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/crew) +"JS" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/glasses/welding{ + pixel_y = 5 + }, +/obj/item/multitool{ + pixel_x = 9 + }, +/obj/item/geiger_counter{ + pixel_x = 1; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "cutter_engines_lockdown"; + name = "Engine Shutters"; + pixel_y = -21; + pixel_x = -10; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 9 + }, +/turf/open/floor/plating/rust, +/area/ship/engineering) +"JV" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/confetti, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"JX" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew) +"JZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/structure/curtain{ + color = "#5c131b" + }, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/north{ + pixel_y = 22; + pixel_x = 5 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet/black, +/area/ship/security) +"Kb" = ( +/turf/closed/wall, +/area/ship/crew/canteen/kitchen) +"Ke" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Kh" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/glass, +/obj/structure/sign/departments/security{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Kk" = ( +/obj/effect/turf_decal/atmos/air{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) +"Kl" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Kp" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/wrapping, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Kq" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Kt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/rust, +/area/ship/security) +"Ku" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ship/engineering/incinerator) +"Kw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_y = -4; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/engineering/communications) +"Kx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wall{ + name = "Utility Closet"; + pixel_y = -28; + dir = 1 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"Ky" = ( +/obj/machinery/power/supermatter_crystal/shard/engine, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"KE" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/hole{ + dir = 8 + }, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6"; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"KJ" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/fakelattice{ + color = "#808080" + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/engineering/atmospherics) +"KM" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 10; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/plastic, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"KN" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"KO" = ( +/obj/structure/chair/office{ + name = "tactical swivel chair"; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"KP" = ( +/turf/closed/wall/rust, +/area/ship/engineering) +"KR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/firstaid/advanced{ + pixel_x = 5 + }, +/obj/item/stack/medical/bruise_pack/herb, +/obj/item/stack/medical/ointment/herb{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/item/sensor_device{ + pixel_x = -9; + pixel_y = -1 + }, +/obj/machinery/firealarm/directional/north, +/obj/item/radio/intercom/directional/north{ + pixel_y = 22; + pixel_x = 5 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"KT" = ( +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 1; + pixel_x = -16 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"KV" = ( +/obj/structure/table/reinforced, +/obj/item/gun/ballistic/revolver/nagant{ + pixel_y = 6 + }, +/obj/item/gun/ballistic/revolver/nagant, +/obj/item/gun/ballistic/revolver/nagant{ + pixel_y = -5 + }, +/obj/effect/turf_decal/techfloor{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"KW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine/plasma, +/area/ship/engineering/incinerator) +"KY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"Lc" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Ld" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/stock_parts/micro_laser{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Le" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Lf" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe{ + pixel_x = 3 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 7 + }, +/obj/structure/chair/office{ + dir = 8; + name = "tactical swivel chair" + }, +/obj/effect/mob_spawn/human/corpse/frontier, +/turf/open/floor/plating/rust, +/area/ship/maintenance/fore) +"Lg" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) +"Lj" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/glass{ + dir = 8; + pixel_y = 1; + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/turf/open/floor/plating/rust, +/area/ship/engineering/atmospherics) +"Lm" = ( +/obj/item/stock_parts/subspace/ansible{ + pixel_x = -7 + }, +/obj/effect/decal/fakelattice{ + icon_state = "lattice-1" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/ore/salvage/scrapsilver/five, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"Ln" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Lq" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + dir = 8; + pixel_y = -10; + color = "#808080" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"Ls" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Lx" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_x = -1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Ly" = ( +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/glass, +/obj/structure/chair{ + dir = 4; + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/sodawater{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"Lz" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/hallway/central) +"LA" = ( +/obj/effect/turf_decal/atmos/nitrogen{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/ship/engineering/atmospherics) +"LB" = ( +/turf/closed/wall, +/area/ship/engineering) +"LE" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/caution, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) +"LH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"LJ" = ( +/obj/effect/turf_decal/corner_techfloor_grid/full{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/corner, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"LQ" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"LT" = ( +/obj/machinery/door/airlock/external, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"LU" = ( +/obj/effect/turf_decal/corner_techfloor_grid/full{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/closet/wall/blue{ + dir = 8; + pixel_x = 28; + name = "Bridge Officer's locker" + }, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/under/rank/security/officer/frontier/officer, +/obj/item/clothing/head/beret/sec/frontier, +/obj/item/clothing/neck/cloak/qm, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/glasses/hud/diagnostic, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/melee/transforming/energy/sword/saber/pirate/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"LV" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/atmos{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"LZ" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/flashlight/lamp{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = -8 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/phone{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + dir = 4; + pixel_y = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"Mb" = ( +/obj/docking_port/stationary{ + height = 15; + width = 15; + dwidth = 7; + name = "main ember dock" + }, +/turf/template_noop, +/area/template_noop) +"Mf" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 8 + }, +/area/ship/bridge) +"Mh" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/multitool{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 8; + piping_layer = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"Mj" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"Ml" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Mo" = ( +/obj/effect/turf_decal/industrial/traffic, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"Ms" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "cutter_bridge_window" + }, +/turf/open/floor/plating, +/area/ship/bridge) +"Mt" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/structure/sign/poster/contraband/d_day_promo{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"Mu" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/ship/security) +"Mv" = ( +/turf/closed/wall, +/area/ship/medical) +"Mz" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/closet/crate/bin, +/obj/item/trash/syndi_cakes, +/obj/item/trash/plate, +/obj/item/trash/candy, +/obj/item/trash/waffles, +/obj/item/flashlight, +/turf/open/floor/plating, +/area/ship/hallway/central) +"MF" = ( +/turf/closed/wall/rust, +/area/ship/crew/canteen/kitchen) +"ML" = ( +/obj/effect/turf_decal/techfloor, +/obj/item/kirbyplants{ + icon_state = "plant-22"; + pixel_x = -10 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"MO" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + id = "cutter_conveyor" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/ship/engineering/incinerator) +"MQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + pixel_x = 9; + pixel_y = -11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"MS" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-7" + }, +/turf/open/floor/plating/airless{ + icon_state = "foam_plating" + }, +/area/ship/maintenance/port) +"MW" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/pickaxe/rusted, +/obj/item/pickaxe/drill, +/obj/item/pickaxe/drill, +/obj/machinery/button/door{ + id = "cutter_cargo_shutters"; + name = "Cargo Shutters"; + pixel_y = -23; + dir = 1 + }, +/obj/machinery/button/shieldwallgen{ + id = "cutter_cargo"; + pixel_x = -8; + pixel_y = -22; + dir = 1 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"Nb" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer4{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ship/engineering/incinerator) +"Nc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Nj" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/effect/turf_decal/techfloor/corner, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Nn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/ship/security) +"No" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"Np" = ( +/obj/structure/catwalk/over, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"Nr" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/hallway/fore) +"Nx" = ( +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Ny" = ( +/obj/effect/turf_decal/corner/opaque/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/loading{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ship/cargo) +"Nz" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -2 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"NC" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"NE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/bounty, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"NI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"NJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/medical) +"NM" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/radio/intercom/wideband/directional/west{ + icon_state = "intercom-wideband-table" + }, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"NT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/trashcart, +/obj/item/trash/candy, +/obj/effect/decal/cleanable/vomit/old, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/trash/sosjerky, +/obj/item/storage/portable_chem_mixer{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/trash/syndi_cakes{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/trash/energybar{ + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"NW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/fore) +"NX" = ( +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 31 + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"NZ" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7, +/obj/effect/decal/cleanable/glass{ + pixel_y = -8; + pixel_x = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"Oc" = ( +/turf/closed/wall/rust, +/area/ship/engineering/atmospherics) +"Oh" = ( +/obj/effect/decal/cleanable/greenglow{ + color = "#808080" + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/catwalk/over, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"Oi" = ( +/obj/structure/window/reinforced/spawner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mass_driver{ + dir = 8; + id = "cutter_disposals" + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/incinerator) +"Oj" = ( +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/ship/cargo) +"Om" = ( +/obj/structure/closet/wall{ + name = "Atmospheric locker"; + dir = 4; + pixel_x = -28 + }, +/obj/item/clothing/suit/hooded/wintercoat/engineering/atmos, +/obj/item/clothing/under/rank/engineering/atmospheric_technician/firefighter, +/obj/item/clothing/under/rank/engineering/atmospheric_technician/firefighter/skirt, +/obj/item/clothing/suit/fire/atmos, +/obj/item/clothing/head/hardhat/atmos, +/obj/item/clothing/mask/gas/atmos, +/obj/item/clothing/gloves/color/orange, +/obj/item/analyzer, +/obj/item/storage/belt/utility/atmostech, +/obj/item/clothing/glasses/meson/engine/tray, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/engineering/incinerator) +"On" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/curtain/bounty, +/turf/open/floor/wood/walnut, +/area/ship/crew) +"Oq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/garbage, +/obj/effect/decal/cleanable/food/flour, +/obj/item/reagent_containers/glass/bucket/wooden{ + pixel_y = -5; + pixel_x = -8 + }, +/obj/item/clothing/suit/longcoat/chemist, +/obj/item/clothing/head/beret/chem{ + pixel_y = -9; + pixel_x = 4 + }, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) +"Ou" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"Ox" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/clothing/head/hardhat/red/upgraded{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/machinery/jukebox/boombox{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"Oy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew) +"OC" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/ship/hallway/central) +"OL" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_y = -32; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"OM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/poster/contraband/have_a_puff{ + pixel_y = -32 + }, +/turf/open/floor/carpet/green, +/area/ship/crew/office) +"ON" = ( +/obj/effect/turf_decal/techfloor, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"OP" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"OR" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/hyper{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"OW" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/communications) +"Pa" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating/rust, +/area/ship/security) +"Pb" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"Pf" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"Pl" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Pn" = ( +/obj/structure/closet/wall/red{ + name = "Ammo locker"; + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/hole{ + dir = 8 + }, +/obj/item/ammo_box/n762{ + pixel_y = -3 + }, +/obj/item/ammo_box/n762{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/item/storage/box/lethalshot{ + pixel_x = -3 + }, +/obj/item/storage/box/lethalshot{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/item/ammo_box/magazine/smgm45/drum{ + pixel_y = -4 + }, +/obj/item/ammo_box/magazine/smgm45, +/obj/item/ammo_box/n762{ + pixel_y = -3 + }, +/obj/item/ammo_box/n762{ + pixel_y = -5; + pixel_x = -1 + }, +/obj/item/ammo_box/a762, +/obj/item/ammo_box/a762, +/obj/item/storage/toolbox/ammo/a762{ + pixel_y = -6; + pixel_x = 5 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"Ps" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"Pv" = ( +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/turf_decal/steeldecal/steel_decals9, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Pw" = ( +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/machinery/button/door{ + id = "cutter_ce_lockdown"; + name = "Window Shutters"; + pixel_y = 23; + pixel_x = -10 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/space/hardsuit/engine/elite, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"PC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"PE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen/kitchen) +"PG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/circuitboard/machine/telecomms/message_server{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/circuitboard/machine/telecomms/relay, +/obj/item/stack/cable_coil/cut/yellow, +/obj/item/stack/rods, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"PJ" = ( +/obj/effect/turf_decal/trimline/opaque/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"PP" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"PX" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"PY" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Qb" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/obj/item/tank/internals/plasma/full, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Qe" = ( +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/stock_parts/subspace/transmitter{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/stock_parts/subspace/transmitter{ + pixel_x = 3; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/subspace/transmitter{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/stock_parts/subspace/transmitter{ + pixel_x = 1; + pixel_y = -4 + }, +/turf/open/floor/plating/airless{ + icon_state = "plating_rust" + }, +/area/ship/maintenance/port) +"Qi" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/item/ammo_casing/shotgun/laserscatter{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/item/ammo_casing/shotgun/laserscatter{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/ammo_casing/shotgun/stunslug, +/obj/item/ammo_casing/shotgun/stunslug{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/gun/ballistic/shotgun/automatic/dual_tube{ + pixel_y = 2 + }, +/obj/item/gun/ballistic/shotgun/doublebarrel{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"Qk" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/crew) +"Qs" = ( +/turf/open/floor/plasteel/stairs{ + icon = 'icons/obj/stairs.dmi'; + dir = 8 + }, +/area/ship/security/armory) +"Qv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/item/radio/intercom/wideband/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Qw" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/sign/warning/firingrange{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Qx" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"Qz" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/purple/hidden{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/ship/engineering/incinerator) +"QC" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/obj/item/tank/internals/plasma/full, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"QH" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/closet/emcloset/wall{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"QK" = ( +/turf/closed/wall, +/area/ship/maintenance/port) +"QP" = ( +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"QR" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Ra" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"Re" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/security/range) +"Rf" = ( +/obj/structure/catwalk, +/obj/item/kirbyplants{ + icon_state = "plant-22"; + pixel_x = -10; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/engineering/communications) +"Rn" = ( +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/turf_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 1; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Rs" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/fakelattice{ + color = "#808080" + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/insectguts{ + color = "#808080" + }, +/obj/effect/decal/cleanable/wrapping{ + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/elevatorshaft{ + color = "#808080" + }, +/area/ship/engineering/atmospherics) +"Ry" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/efuel{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating/rust, +/area/ship/engineering/communications) +"RB" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"RP" = ( +/obj/machinery/door/window/brigdoor/northleft{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/security/range) +"RQ" = ( +/obj/effect/decal/cleanable/sprayweb, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"RR" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-55" + }, +/turf/open/floor/plating/airless{ + icon_state = "foam_plating" + }, +/area/ship/maintenance/port) +"RS" = ( +/obj/machinery/door/poddoor{ + id = "pirate_cutter_escape" + }, +/obj/structure/barricade/wooden/crude{ + layer = 3.1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/office) +"RW" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/engineering/incinerator) +"RY" = ( +/obj/effect/spawner/lootdrop/salvage_capacitor, +/obj/item/stack/cable_coil/cut/yellow, +/obj/item/stack/rods{ + pixel_x = 7 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/ship/maintenance/port) +"Sa" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/engineering/atmospherics) +"Sb" = ( +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/wood{ + req_access_txt = "20" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/office) +"Sc" = ( +/obj/structure/chair/office{ + dir = 1; + name = "tactical swivel chair" + }, +/obj/effect/decal/cleanable/wrapping, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Sk" = ( +/obj/structure/sign/warning/deathsposal{ + pixel_y = 32 + }, +/obj/item/trash/can, +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "cutter_conveyor" + }, +/obj/machinery/door/window/brigdoor/southright{ + req_access_txt = "1" + }, +/turf/open/floor/engine/hull/reinforced/interior, +/area/ship/engineering/incinerator) +"Sq" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Sr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Ss" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/communications) +"SA" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8; + color = "#808080" + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/cargo) +"SB" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/engineering/atmospherics) +"SE" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut{ + icon_state = "wood-broken4" + }, +/area/ship/crew) +"SF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"SH" = ( +/turf/closed/wall, +/area/ship/engineering/atmospherics) +"SK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"SM" = ( +/obj/structure/foamedmetal, +/obj/structure/foamedmetal, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"SO" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4; + name = "tactical chair" + }, +/obj/effect/turf_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/turf_decal/steeldecal/steel_decals3, +/obj/effect/turf_decal/steeldecal/steel_decals_central4{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"SP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plating{ + icon_state = "foam_plating" + }, +/area/ship/hallway/central) +"SR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"SW" = ( +/obj/structure/fireaxecabinet{ + pixel_y = 27 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/engineering/incinerator) +"Td" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/electrical) +"Tk" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/east, +/turf/open/floor/plating, +/area/ship/engineering) +"Tn" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/obj/item/tank/internals/plasma/full, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"To" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/canteen/kitchen) +"Tp" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/item/kitchen/knife{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/knife/butcher{ + pixel_x = -1 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"Tw" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ship/maintenance/fore) +"Tx" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/concrete/tiles, +/area/ship/crew/canteen/kitchen) +"TI" = ( +/turf/closed/wall/r_wall, +/area/ship/security/armory) +"TO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"TS" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"TW" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/ship/maintenance/central) +"TY" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Uj" = ( +/obj/structure/table/wood/reinforced, +/obj/item/areaeditor/shuttle{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/storage/photo_album{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/item/vibro_weapon, +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"Uk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + pixel_y = -5; + pixel_x = -9 + }, +/turf/open/floor/wood, +/area/ship/security) +"Ul" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/extinguisher/advanced{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/pipe_dispenser{ + pixel_y = -6 + }, +/obj/item/reagent_containers/glass/maunamug{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"Um" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/emcloset/wall{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/advanced_airlock_controller{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/fore) +"Ut" = ( +/obj/structure/table/reinforced, +/obj/item/toy/figure/botanist{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/spear/bonespear, +/obj/item/scythe, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/cultivator, +/obj/item/cultivator, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"Uw" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/crew/office) +"Uz" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/chair/greyscale{ + dir = 8; + pixel_y = -7; + pixel_x = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"UA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fakelattice{ + icon_state = "lattice-9" + }, +/turf/open/floor/plating, +/area/ship/maintenance/port) +"UC" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/ship/cargo) +"UF" = ( +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/outline, +/obj/structure/sign/warning/explosives/alt{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"UH" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"UT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"UV" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/structure/sign/poster/official/build{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/electrical) +"UX" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ship/crew/canteen/kitchen) +"UY" = ( +/obj/item/stack/rods{ + pixel_x = 7 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Va" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Vb" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"Vh" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/crate/bin, +/obj/item/trash/energybar, +/obj/item/trash/candy, +/obj/item/trash/cheesie, +/obj/item/trash/pistachios{ + pixel_x = 5 + }, +/obj/item/flashlight/flare, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Vr" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"Vs" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-29" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/stack/ore/salvage/scrapgold/five, +/turf/open/floor/plating/airless{ + icon_state = "platingdmg3" + }, +/area/ship/maintenance/port) +"Vt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/arrows{ + pixel_y = 15 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating/rust, +/area/ship/medical) +"Vu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/cargo{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Vw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/ship/engineering/incinerator) +"Vx" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_y = 15; + pixel_x = -10 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 13; + pixel_x = -7 + }, +/obj/item/reagent_containers/food/snacks/dough{ + pixel_x = 3 + }, +/obj/item/book/manual/chef_recipes{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen/kitchen) +"VA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/mafia_outfit, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"VB" = ( +/obj/structure/railing{ + dir = 2; + layer = 4.1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/red/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/security) +"VC" = ( +/obj/structure/railing/corner, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/stairs, +/area/ship/security) +"VD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/ship/engineering/atmospherics) +"VG" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/techfloor{ + dir = 5 + }, +/obj/item/paper_bin{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/camera_bug{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/machinery/recharger{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clipboard{ + pixel_x = -10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"VI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"VL" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/east, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"VN" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/railing{ + dir = 8; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "cutter_engines_lockdown"; + name = "Engine Shutters"; + pixel_y = 9; + pixel_x = -23; + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/incinerator) +"VP" = ( +/obj/structure/guncase, +/obj/effect/turf_decal/techfloor, +/obj/item/gun/energy/taser, +/obj/structure/sign/poster/official/ion_carbine{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"Wb" = ( +/obj/structure/bed, +/obj/item/bedsheet/cult, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/curtain/cloth/grey, +/obj/machinery/newscaster/directional/south, +/obj/item/toy/plush/beeplushie, +/turf/open/floor/carpet/green, +/area/ship/crew/office) +"Wc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + pixel_y = 10 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_general_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"Wd" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"Wj" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Wm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband{ + pixel_y = -4 + }, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"Wq" = ( +/obj/effect/turf_decal/techfloor, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-1" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"Wt" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"WA" = ( +/obj/effect/turf_decal/atmos/oxygen{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"WH" = ( +/turf/closed/wall/rust, +/area/ship/crew) +"WK" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/grown/corn{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/snacks/grown/pumpkin{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"WL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/hallway/central) +"WR" = ( +/obj/structure/table/wood/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/cards/deck/tarot{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/concrete/reinforced, +/area/ship/crew) +"WV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"WY" = ( +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "equipment locker"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/techfloor, +/obj/item/clothing/mask/bandana/black{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/clothing/mask/bandana/black{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/clothing/mask/bandana/black{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/clothing/mask/russian_balaclava, +/obj/item/clothing/mask/russian_balaclava, +/obj/item/clothing/mask/russian_balaclava, +/obj/item/storage/belt/military, +/obj/item/storage/belt/military, +/obj/item/storage/belt/military/army, +/obj/item/storage/belt/military/army, +/obj/item/clothing/head/helmet/old{ + pixel_x = 7 + }, +/obj/item/clothing/head/helmet/old{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/armory) +"Xd" = ( +/obj/structure/sink/puddle, +/obj/structure/flora/ausbushes/stalkybush{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/grass, +/area/ship/maintenance/central) +"Xj" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4; + color = "#808080" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"Xm" = ( +/obj/structure/catwalk, +/obj/item/weldingtool{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/engineering/communications) +"Xn" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Xp" = ( +/obj/item/stock_parts/subspace/ansible{ + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_x = -7; + pixel_y = -2 + }, +/turf/open/floor/plating/airless, +/area/ship/maintenance/port) +"Xt" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8; + color = "#808080" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"Xu" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/airlock/medical{ + name = "Medbay" + }, +/turf/open/floor/plating, +/area/ship/medical) +"Xz" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/catwalk_floor, +/area/ship/crew) +"XA" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/red/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/security) +"XL" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/corner, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 1; + piping_layer = 4 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"XP" = ( +/obj/machinery/holopad/emergency/bar, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ship/crew/canteen/kitchen) +"XU" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/catwalk/over, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"XV" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/line, +/obj/effect/turf_decal/industrial/stand_clear, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"Yf" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/hatch{ + name = "The Plank" + }, +/turf/open/floor/plating, +/area/ship/engineering/incinerator) +"Yg" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/sign/poster/contraband/xenofauna_parasite{ + pixel_x = -32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/medical) +"Yh" = ( +/obj/structure/curtain/bounty, +/obj/item/trash/chips, +/turf/open/floor/plating/airless{ + icon_state = "plating_rust" + }, +/area/ship/maintenance/port) +"Yj" = ( +/obj/effect/spawner/lootdrop/salvage_manipulator, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/range) +"Yk" = ( +/obj/item/stock_parts/subspace/treatment{ + pixel_x = 2; + pixel_y = -5 + }, +/obj/item/stock_parts/subspace/treatment{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/stock_parts/subspace/treatment{ + pixel_x = -4; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/cut/yellow, +/turf/open/floor/plating/airless{ + icon_state = "plating_rust" + }, +/area/ship/maintenance/port) +"Yn" = ( +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals1, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Ys" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/hallway/central) +"Yv" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "cutter_ce_lockdown" + }, +/turf/open/floor/plating, +/area/ship/engineering/communications) +"YB" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"YC" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"YG" = ( +/obj/machinery/computer/helm{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) +"YH" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility/chief/full, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ship/engineering/communications) +"YR" = ( +/obj/effect/decal/fakelattice{ + icon_state = "lattice-3" + }, +/turf/open/floor/plating/airless{ + icon_state = "panelscorched" + }, +/area/ship/maintenance/port) +"YW" = ( +/obj/structure/janitorialcart, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 4 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/soap/syndie, +/turf/open/floor/plating/rust, +/area/ship/maintenance/port) +"YX" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/open/floor/plating/foam, +/area/ship/cargo) +"YY" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/space_cube{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Zb" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/cell/high, +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/patterned/dirty, +/area/ship/security/range) +"Zf" = ( +/obj/structure/catwalk/over/plated_catwalk, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/purple/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Zh" = ( +/obj/structure/railing{ + dir = 4; + layer = 4.1 + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 2 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/stack/sheet/mineral/plasma/twenty{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"Zl" = ( +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/fore) +"Zn" = ( +/obj/effect/decal/cleanable/robot_debris/limb, +/obj/effect/decal/cleanable/vomit/old{ + pixel_x = 15 + }, +/obj/structure/sign/departments/medbay/alt{ + pixel_y = 32 + }, +/obj/item/stack/rods{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/ship/hallway/central) +"Zt" = ( +/obj/effect/turf_decal/techfloor{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/power/emitter{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/engine) +"Zw" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/concrete/tiles, +/area/ship/crew) +"Zy" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "cutter_windows_general" + }, +/turf/open/floor/plating, +/area/ship/crew/canteen/kitchen) +"ZB" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/transparent/lightgrey/corner{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/radiation, +/obj/machinery/pipedispenser, +/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering/atmospherics) +"ZC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "cutter_disposals_hatch"; + name = "Plank Opener"; + pixel_x = -1; + pixel_y = -23; + dir = 1 + }, +/obj/machinery/button/massdriver{ + id = "cutter_disposals"; + name = "disposals button"; + pixel_x = 7; + pixel_y = -22; + dir = 1 + }, +/turf/open/floor/wood, +/area/ship/engineering/incinerator) +"ZK" = ( +/turf/closed/wall/r_wall, +/area/ship/crew) +"ZT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cutter_bridge_lockdown"; + name = "Lockdown Shutters" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/fore) +"ZV" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/plasteel/patterned/cargo_one, +/area/ship/cargo) +"ZW" = ( +/obj/effect/turf_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/robot_debris, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) +"ZX" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/reagent_containers/food/snacks/grown/tobacco/space, +/obj/item/reagent_containers/food/snacks/grown/tobacco/space{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/pipe/cobpipe, +/turf/open/floor/carpet/nanoweave, +/area/ship/security) +"ZY" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/crew) + +(1,1,1) = {" +ws +ws +ws +ws +ws +GM +lT +nD +nD +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +fH +fH +fH +fH +ws +ws +ws +ws +ws +"} +(2,1,1) = {" +ws +ws +ws +ws +ws +GM +Oi +MO +nD +HI +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +Yv +Yv +LZ +qU +fH +ws +ws +ws +ws +ws +"} +(3,1,1) = {" +ws +ws +ws +ws +ws +GM +Sk +ZC +aO +wh +GM +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +Yv +Yv +YH +uO +Ry +fH +ws +ws +ws +ws +ws +"} +(4,1,1) = {" +ws +ws +ws +ws +GM +GM +Gp +Vw +Yf +Ag +GM +mL +mL +GM +ws +ws +ws +ws +ws +ws +ws +Am +ld +ld +fH +Pw +Rf +Xm +zw +fH +fH +ws +ws +ws +ws +"} +(5,1,1) = {" +ws +ws +ws +ws +GM +GM +ru +Ku +aO +kG +GM +VL +VL +GM +RW +ws +ws +ws +ws +ws +nI +Am +Tk +Tk +fH +dE +jq +AL +lu +Kw +fH +ws +ws +ws +ws +"} +(6,1,1) = {" +ws +ws +ws +ws +GM +aO +aO +aO +aO +SW +Om +Qz +oE +VN +GM +RW +ws +ws +ws +nI +Am +jT +Zf +JS +iC +zw +Ea +zw +zw +GH +fH +ws +ws +ws +ws +"} +(7,1,1) = {" +ws +ws +ws +GM +GM +to +lo +KW +wi +Mh +re +hm +eE +dP +EI +GM +eA +eA +eA +Am +dB +Xt +YB +eQ +zw +Ad +Gn +mJ +zw +zw +fH +fH +ws +ws +ws +"} +(8,1,1) = {" +ws +ws +ws +GM +to +to +to +Bw +wi +Ox +Ul +Db +aO +aO +lA +aO +FG +FG +FG +Am +uN +Xj +Ke +FF +bF +qT +cn +Ss +vh +wN +QH +LT +ws +ws +ws +"} +(9,1,1) = {" +ws +ws +zV +zV +El +GS +El +El +El +UF +uH +pc +oY +Kk +pd +oY +FM +Iu +Wq +LB +KP +KP +oy +LB +zw +EX +LE +OW +zw +kZ +fl +fH +ws +ws +ws +"} +(10,1,1) = {" +ws +ws +zV +Tn +QC +jk +bA +Fw +El +aO +GI +CP +GQ +kD +jA +oY +OR +pC +xx +fw +AQ +KM +GU +Co +gC +ed +ed +ed +WH +ed +ed +EG +EG +ws +ws +"} +(11,1,1) = {" +ws +ws +zV +pA +kT +aP +Wt +HG +Zt +aO +Nb +kt +oY +fu +fu +oY +Zh +ut +AU +gC +lq +al +Td +Fd +gC +WR +sn +bI +HE +WH +dy +Xz +EG +ws +ws +"} +(12,1,1) = {" +ws +ws +zV +pZ +pZ +El +FC +Kl +oA +hl +FI +Wd +wQ +fX +Vr +iA +mY +EJ +Ey +gC +ah +KE +NZ +mz +gC +IC +dX +lf +Zw +ed +JQ +rJ +EG +ws +ws +"} +(13,1,1) = {" +ws +ws +zV +Ky +BI +oj +wm +qX +bt +LV +XV +tL +SB +Sa +JV +Xn +QR +Lj +nO +mh +em +ic +lV +GF +gC +eV +ku +TS +Kx +ed +ck +ed +EG +ws +ws +"} +(14,1,1) = {" +ws +ws +zV +ew +ew +El +jC +jF +PX +oY +ZB +fd +gb +Jk +XL +BH +ok +Ou +Gl +gC +sj +kb +zJ +nx +gC +HD +JX +cA +SE +On +cb +Hi +Ik +ws +ws +"} +(15,1,1) = {" +ws +ws +zV +kS +PY +lp +aL +Pv +DF +GQ +fu +fu +oY +fu +fu +oY +Rs +Ej +KJ +gC +UV +ho +No +tq +gC +sf +wp +KN +CL +NE +nu +pn +Ik +ws +ws +"} +(16,1,1) = {" +ws +ws +zV +Qb +na +Bb +CF +Hd +GS +oY +rz +VD +oY +rW +As +oY +hS +ph +np +fw +sg +KT +cQ +FK +gC +tQ +Oy +kM +ZK +lz +Ak +ZK +EG +ws +ws +"} +(17,1,1) = {" +ws +df +df +GS +El +El +El +El +El +oY +LA +yo +oY +QP +WA +oY +SH +SH +Oc +gC +gC +gC +cE +fw +fw +ed +Qk +ed +ZK +Bz +kn +ZY +EG +EG +ws +"} +(18,1,1) = {" +ws +df +rm +vu +yG +Al +IF +rm +rm +oY +GQ +oY +oY +GQ +oY +oY +yq +Jd +rQ +Wc +Lc +mU +WL +zo +yV +aQ +YC +Mz +lz +bh +sH +kx +ZK +EG +ws +"} +(19,1,1) = {" +ws +df +rm +SM +Cq +vc +FW +Qe +rm +rm +rg +vD +vX +aD +rg +uX +dc +eY +us +SP +Lz +Bq +FL +sa +BR +pj +Jy +hy +xk +xk +xk +xk +xk +Eb +ws +"} +(20,1,1) = {" +df +df +rm +QK +yx +uB +De +zH +PG +VA +um +DC +UH +bb +Fu +RQ +wo +Ys +Np +dF +aq +qw +iB +aZ +uD +sw +tT +vY +kk +lO +Jl +GV +fb +Eb +Eb +"} +(21,1,1) = {" +Pf +rF +yG +yx +qG +Hc +Wm +pD +Mv +Mv +zK +Mv +zK +Mv +zK +xO +vH +CV +II +ne +vg +ne +vt +ne +ne +Jx +BW +Vu +kk +ZV +fz +HW +Mo +MW +Eb +"} +(22,1,1) = {" +df +rF +rF +rm +IX +Ca +bV +RY +Mv +fM +zi +iN +fy +Mv +Mv +mU +tD +Nc +ne +ne +Ut +Et +iG +WK +ne +ge +sb +Ls +Oj +ce +tr +Ny +HN +CI +fQ +"} +(23,1,1) = {" +Dw +RR +rF +QK +ht +QK +QK +vG +Mv +KR +du +BD +cp +Yg +Mv +Zn +yJ +bg +ne +pT +DG +oa +ww +vz +HR +pO +zS +JE +wc +wx +Gz +UC +It +YX +mE +"} +(24,1,1) = {" +ws +tv +MS +FV +Lm +Xp +QK +Yk +zK +Dv +Vt +NJ +Bm +lR +Xu +zf +ch +qP +ne +Xd +yF +sL +cF +TW +ne +sR +xP +JO +kk +FU +fB +zY +oN +nB +Eb +"} +(25,1,1) = {" +ws +ws +jZ +Dy +YR +Eu +Vs +kf +Mv +CO +qQ +hw +Mv +zK +Mv +Oh +dM +Ah +rN +rN +AV +AV +AV +Kb +Kb +Kb +jG +Kb +kk +kk +kk +wZ +SA +Eb +mI +"} +(26,1,1) = {" +ws +ws +ws +ws +zn +vr +QK +NI +Mv +Mv +lH +pM +pM +ax +pM +XU +Sr +Kp +AV +Jp +oX +nM +IE +Kb +CZ +qK +xj +Jt +pQ +ID +Kb +Eb +Eb +mI +ws +"} +(27,1,1) = {" +ws +ws +ws +ws +ws +gK +yx +YW +rp +QK +pM +pM +er +Nn +jY +aS +SF +mq +hp +Jb +iw +IB +eG +pB +PE +Ab +Fx +xS +wd +yh +To +mI +ws +ws +ws +"} +(28,1,1) = {" +ws +ws +ws +ws +qf +DR +UA +KY +Yh +Ht +jY +le +ni +Iv +Gw +Br +mS +Mj +AV +tX +FE +ZW +EC +sF +XP +uK +Vx +jI +vs +Au +To +ws +ws +ws +ws +"} +(29,1,1) = {" +ws +ws +ws +ws +ws +df +jv +CS +Hz +AG +jY +JZ +Uk +vo +pM +qr +iY +rG +AV +vE +vL +Hf +Ra +MF +Ek +Tp +Nz +uQ +Tx +To +UX +ws +ws +ws +ws +"} +(30,1,1) = {" +ws +ws +ws +ws +ws +Bp +ky +ky +pM +jY +pM +pM +jY +jY +pM +Pl +Lq +Mt +TI +TI +TI +jW +TI +TI +TI +TI +sy +Zy +Zy +UX +ws +ws +ws +ws +ws +"} +(31,1,1) = {" +ws +ws +ws +ws +ws +ws +ky +cr +bq +VC +PJ +bo +Ly +XA +VB +um +ys +UY +TI +WY +kc +fm +By +mi +Pn +vw +sy +ws +ws +ws +ws +ws +ws +ws +ws +"} +(32,1,1) = {" +ws +ws +ws +ws +ws +ws +ky +vm +LH +NM +yw +GY +jl +ko +ko +In +En +BZ +TI +VP +nP +im +qv +vC +Bo +ul +sy +ws +ws +ws +ws +ws +ws +ws +ws +"} +(33,1,1) = {" +ws +ws +ws +ws +ws +ws +rw +ky +oT +fD +Ja +Ps +jh +SR +Vb +MQ +jn +nQ +jW +kI +Cg +zZ +KV +jt +Qi +sy +EM +ws +ws +ws +ws +ws +ws +ws +ws +"} +(34,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +eh +LH +tp +cl +Pb +WV +Pa +xs +fY +ta +Kh +jW +JK +eO +hE +JK +JK +JK +sy +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(35,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +eh +bS +CW +ZX +An +Kt +gu +Mu +xh +zu +OC +DS +Qw +Kq +TY +sS +io +HV +sy +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(36,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ky +sp +Em +Fg +NX +Qx +kO +fN +PC +UT +dN +TO +wD +fe +uL +OP +iJ +zh +sy +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(37,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +rw +ky +pM +jY +pM +pM +jY +pM +wC +jn +oO +Va +Le +ro +zE +LQ +AM +Hm +zc +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(38,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +GE +nw +Oq +ln +po +uq +ln +fv +rq +VI +TI +FQ +Fb +FQ +Qs +JK +JK +sy +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(39,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +GE +jO +Lf +yO +vq +oq +fP +kK +SK +tw +jW +yd +Lg +zP +se +kr +gP +pR +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(40,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +GE +ln +ln +IL +yM +NT +IL +tu +je +Vh +TI +zP +nL +va +AA +ar +JK +pR +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(41,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +GE +cm +jg +Ld +dv +Im +ss +ss +Ij +ss +TI +jW +jW +TI +TI +TI +TI +IP +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(42,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +qk +GE +uu +gd +pU +pU +Fo +BQ +fc +gg +Nx +xB +cT +Bh +yv +ss +ft +xK +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(43,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +GE +kP +Tw +Im +pU +mR +kC +NC +Zl +Ml +bi +oU +ER +OL +vK +ss +ss +xK +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(44,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +xK +Um +GO +ss +AZ +vl +wT +CX +ss +ZT +Bv +ss +DE +AI +Uz +cH +ss +xK +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(45,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +Mb +zv +aw +NW +Hs +wt +Wj +LJ +ad +ad +sP +nZ +ad +ss +LU +Sq +Er +Nr +IM +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(46,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +xK +rd +ve +ss +tH +Nj +ad +Gq +jB +Ln +Rn +Eg +ad +ad +pF +ON +qp +IM +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(47,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +yL +yL +AD +hW +Sb +AD +ad +wu +Sc +hP +CA +mW +ad +ad +fL +ES +fL +fC +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(48,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +ws +Uw +yL +FT +aJ +ti +ad +Lx +EP +Yn +RB +HL +nX +ad +yy +lJ +Jf +fC +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(49,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +yL +uz +hF +iT +Gq +oh +yl +nf +SO +ML +Mf +ad +Zb +Yj +gi +fC +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(50,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +yL +tM +Uj +jf +ad +iM +VG +uy +YG +zF +Qv +ad +IR +Jr +gA +fC +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(51,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +yL +wG +Gr +OM +ad +PP +oS +uP +mn +vZ +YY +Gq +RP +fU +co +fC +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(52,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +yL +pN +vy +nJ +ad +yk +KO +Ec +Gf +sK +gc +ad +sq +xo +IS +fC +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(53,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +Uw +yL +af +Wb +GL +Ms +Ms +Ms +Ms +Ms +Ms +GL +aG +wS +fC +Re +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} +(54,1,1) = {" +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +yL +RS +eb +yL +ws +ws +ws +ws +ws +ws +fC +tl +FR +fC +ws +ws +ws +ws +ws +ws +ws +ws +ws +ws +"} diff --git a/_maps/shuttles/shiptest/pirate_libertatia.dmm b/_maps/shuttles/shiptest/pirate_libertatia.dmm index a6c7c4d8a441..0085f0306943 100644 --- a/_maps/shuttles/shiptest/pirate_libertatia.dmm +++ b/_maps/shuttles/shiptest/pirate_libertatia.dmm @@ -1,4 +1,14 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "pirateshutters"; + name = "Blast Shutters" + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) "au" = ( /obj/structure/frame/computer, /obj/effect/decal/cleanable/dirt/dust, @@ -28,10 +38,7 @@ pixel_x = -25; pixel_y = 5 }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = -10 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/pod/light, /area/ship/bridge) "bb" = ( @@ -39,18 +46,9 @@ dir = 1 }, /obj/structure/railing, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 22; - pixel_y = 10 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22; - pixel_y = -10 - }, /obj/effect/landmark/start/captain, /obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/wideband/directional/east, /turf/open/floor/pod/light, /area/ship/bridge) "br" = ( @@ -129,10 +127,7 @@ /area/ship/cargo) "fi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/structure/cable{ icon_state = "2-4" }, @@ -147,7 +142,7 @@ dir = 1 }, /obj/effect/landmark/start/head_of_personnel, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -211,6 +206,7 @@ "kK" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "pirateshutters"; name = "Blast Shutters" }, @@ -241,15 +237,13 @@ pixel_x = 15; pixel_y = 26 }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/mineral/plastitanium, /area/ship/security) "mJ" = ( @@ -258,9 +252,7 @@ /obj/structure/cable{ icon_state = "4-6" }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/landmark/start/security_officer, /turf/open/floor/pod/light, /area/ship/security) @@ -312,7 +304,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-8" }, @@ -334,15 +326,14 @@ pixel_x = -15; pixel_y = 26 }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/directional/south, /turf/open/floor/mineral/plastitanium, /area/ship/security) "nQ" = ( @@ -364,6 +355,7 @@ "nW" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "pirateshutters"; name = "Blast Shutters" }, @@ -384,10 +376,7 @@ /turf/open/floor/engine/hull, /area/ship/external) "pm" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 12 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 }, @@ -419,10 +408,6 @@ /turf/open/floor/mineral/plastitanium, /area/ship/security) "pS" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 12 - }, /obj/item/storage/box{ icon_state = "lethalshot_box"; name = "dusty shotshell box" @@ -457,6 +442,15 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/security) +"qh" = ( +/obj/docking_port/stationary{ + dwidth = 4; + width = 8; + height = 15; + dir = 8 + }, +/turf/template_noop, +/area/template_noop) "qP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -471,6 +465,9 @@ dir = 8 }, /obj/structure/catwalk/over, +/obj/effect/turf_decal/number/two{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/security) "rc" = ( @@ -510,9 +507,7 @@ /turf/open/floor/mineral/plastitanium, /area/ship/security) "rL" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/industrial/stand_clear{ dir = 1 }, @@ -523,10 +518,7 @@ /turf/open/floor/mineral/plastitanium, /area/ship/cargo) "sc" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/item/clothing/suit/space/orange, /obj/item/clothing/mask/breath, /obj/item/tank/internals/oxygen, @@ -555,6 +547,9 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/catwalk/over, +/obj/effect/turf_decal/number/zero{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/security) "sx" = ( @@ -565,19 +560,14 @@ /obj/machinery/status_display/shuttle{ pixel_y = -32 }, -/obj/machinery/light/small{ - pixel_x = -12 - }, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/industrial/warning{ dir = 10 }, /turf/open/floor/mineral/plastitanium, /area/ship/security) "sI" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/firealarm/directional/south, /obj/item/kitchen/knife/hunting{ pixel_y = 5 }, @@ -634,6 +624,7 @@ /area/ship/crew) "ui" = ( /obj/machinery/door/airlock/hatch{ + dir = 4; name = "External Access Hatch" }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -642,7 +633,7 @@ /turf/open/floor/pod/light, /area/ship/crew) "uo" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4{ dir = 4 }, @@ -676,6 +667,7 @@ /area/ship/crew) "vo" = ( /obj/machinery/door/airlock/hatch{ + dir = 4; name = "External Access Hatch" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -705,8 +697,21 @@ location = "forward" }, /obj/structure/catwalk/over, +/obj/effect/turf_decal/number/five{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/crew) +"vN" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + id = "pirateshutters"; + name = "Blast Shutters"; + dir = 4 + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) "vW" = ( /obj/structure/table, /obj/machinery/microwave{ @@ -725,6 +730,7 @@ /obj/machinery/door/window/southright, /obj/structure/curtain/bounty, /obj/effect/decal/cleanable/vomit/old, +/obj/machinery/light/small/directional/north, /turf/open/floor/pod/light, /area/ship/crew) "wP" = ( @@ -782,6 +788,7 @@ "za" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "pirateshutters"; name = "Blast Shutters" }, @@ -802,9 +809,7 @@ }, /obj/item/healthanalyzer, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/pod/light, /area/ship/crew) "zR" = ( @@ -836,6 +841,9 @@ }, /obj/effect/landmark/observer_start, /obj/structure/catwalk/over, +/obj/effect/turf_decal/miskilamo_small/right{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/crew) "AL" = ( @@ -843,7 +851,7 @@ /obj/effect/spawner/lootdrop/donkpockets, /obj/effect/spawner/lootdrop/donkpockets, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/item/radio/intercom, +/obj/item/radio/intercom/directional/north, /obj/item/lighter{ pixel_x = 14 }, @@ -876,9 +884,6 @@ "Bw" = ( /obj/effect/spawner/lootdrop/minor/pirate_or_bandana, /obj/effect/spawner/lootdrop/minor/pirate_or_bandana, -/obj/machinery/light/small{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/item/clothing/shoes/jackboots, /obj/item/clothing/shoes/jackboots, @@ -932,6 +937,9 @@ dir = 8 }, /obj/structure/catwalk/over, +/obj/effect/turf_decal/miskilamo_small{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/crew) "Cj" = ( @@ -973,10 +981,7 @@ /area/ship/hallway/starboard) "Df" = ( /obj/structure/reagent_dispensers/watertank, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/pod/light, /area/ship/cargo) "DG" = ( @@ -1021,9 +1026,7 @@ /obj/machinery/defibrillator_mount/loaded{ pixel_y = -32 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/industrial/outline, /turf/open/floor/pod/light, /area/ship/crew) @@ -1045,7 +1048,7 @@ /obj/effect/turf_decal/siding{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/pod/light, /area/ship/crew) @@ -1061,6 +1064,9 @@ icon_state = "2-9" }, /obj/structure/catwalk/over, +/obj/effect/turf_decal/miskilamo_small/left{ + dir = 4 + }, /turf/open/floor/plating, /area/ship/crew) "Ey" = ( @@ -1075,7 +1081,7 @@ dir = 4 }, /obj/structure/curtain/bounty, -/obj/machinery/computer/cryopod{ +/obj/machinery/computer/cryopod/directional/north{ pixel_y = -25 }, /turf/open/floor/pod/light, @@ -1083,16 +1089,10 @@ "EH" = ( /obj/structure/bed, /obj/structure/curtain/bounty, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /obj/effect/decal/cleanable/dirt/dust, /obj/item/bedsheet/brown, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/pod/light, /area/ship/crew) "Fx" = ( @@ -1129,7 +1129,7 @@ icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -1178,19 +1178,13 @@ /area/ship/cargo) "Id" = ( /obj/structure/railing, -/obj/item/radio/intercom{ - pixel_y = 22 - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/pod/light, /area/ship/cargo) "Ie" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/pod/light, /area/ship/cargo) "IF" = ( @@ -1319,7 +1313,7 @@ /area/ship/hallway/port) "Mp" = ( /obj/machinery/atmospherics/components/binary/pump/on/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-2" }, @@ -1339,9 +1333,7 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = -32 }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/pod/light, /area/ship/cargo) "Nq" = ( @@ -1384,14 +1376,12 @@ /obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/pod/light, /area/ship/cargo) "Ol" = ( /obj/machinery/atmospherics/components/binary/pump/on/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -1413,13 +1403,7 @@ /obj/machinery/power/smes/engineering{ charge = 1e+006 }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, +/obj/machinery/light/small/directional/west, /obj/structure/cable{ icon_state = "0-2" }, @@ -1450,6 +1434,7 @@ /area/ship/hallway/port) "Py" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Port Engines" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1484,6 +1469,7 @@ /area/ship/hallway/port) "QO" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Port Engines" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1647,6 +1633,7 @@ /area/ship/cargo) "Ty" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Starboard Engines" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1690,6 +1677,7 @@ /area/ship/hallway/starboard) "Ut" = ( /obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; name = "Starboard Engines" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1732,13 +1720,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/ship/hallway/starboard) "Vp" = ( @@ -1757,6 +1739,7 @@ /obj/item/storage/toolbox/electrical, /obj/item/multitool, /obj/item/clothing/glasses/welding, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plating, /area/ship/hallway/port) "VC" = ( @@ -1772,10 +1755,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/hallway/port) @@ -1877,10 +1857,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/hallway/starboard) @@ -1897,6 +1874,7 @@ /obj/structure/cable{ icon_state = "8-10" }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -1922,9 +1900,7 @@ /turf/open/floor/plating, /area/ship/hallway/port) "ZB" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/industrial/stand_clear{ dir = 1 }, @@ -2028,7 +2004,7 @@ XJ XJ XJ XJ -XJ +qh XJ XJ XJ @@ -2125,10 +2101,10 @@ FF Fx "} (8,1,1) = {" -XB -XB +vN +ad Bb -XB +ad Bb iA mJ @@ -2206,10 +2182,10 @@ rc TP "} (11,1,1) = {" -XB -XB +vN +ad Bb -XB +ad Bb iA nB diff --git a/_maps/shuttles/shiptest/pirate_noderider.dmm b/_maps/shuttles/shiptest/pirate_noderider.dmm index c4048411cf74..3fbde5fb5c7f 100644 --- a/_maps/shuttles/shiptest/pirate_noderider.dmm +++ b/_maps/shuttles/shiptest/pirate_noderider.dmm @@ -16,6 +16,29 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/maintenance/central) +"aq" = ( +/obj/machinery/door/airlock/hatch{ + name = "Emergency Access"; + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "noderidercore"; + dir = 4 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/maintenance/central) +"au" = ( +/obj/effect/turf_decal/industrial/caution, +/obj/machinery/atmospherics/components/unary/tank/air{ + piping_layer = 2 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/mono/dark, +/area/ship/maintenance/central) "ax" = ( /obj/structure/cable{ icon_state = "4-8" @@ -30,10 +53,6 @@ /turf/open/floor/plating/airless, /area/ship/external) "ay" = ( -/obj/structure/railing{ - dir = 5; - layer = 3.1 - }, /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 5 }, @@ -64,6 +83,14 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"aD" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/obj/effect/turf_decal/industrial/outline/grey, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/external) "aH" = ( /obj/structure/cable{ icon_state = "1-4" @@ -78,37 +105,6 @@ /obj/effect/turf_decal/spline/fancy/opaque/grey/corner, /turf/open/floor/plating/airless, /area/ship/external) -"aN" = ( -/obj/structure/table, -/obj/structure/closet/wall/red{ - pixel_x = -28; - dir = 4; - name = "captain's locker" - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/under/utility, -/obj/item/clothing/head/soft/black, -/obj/item/melee/classic_baton/telescopic, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/item/storage/box/handcuffs, -/obj/item/clothing/glasses/meson, -/obj/item/megaphone, -/obj/item/melee/transforming/energy/sword/saber/red, -/obj/item/pinpointer/crew, -/obj/item/clothing/mask/gas/atmos, -/obj/item/clothing/mask/whistle, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "aX" = ( /obj/structure/cable{ icon_state = "1-4" @@ -123,44 +119,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"bd" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"bk" = ( -/obj/machinery/door/airlock/hatch, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/central) "bl" = ( /obj/machinery/camera/emp_proof{ dir = 6 @@ -186,6 +144,22 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"bG" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/advanced_airlock_controller{ + pixel_x = -26 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/mono/dark, +/area/ship/engineering) "bX" = ( /obj/machinery/power/grounding_rod{ anchored = 1 @@ -218,6 +192,20 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"ci" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "cP" = ( /obj/machinery/power/terminal{ dir = 8 @@ -278,24 +266,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"dx" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/advanced_airlock_controller{ - pixel_x = -32 - }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) "dJ" = ( /obj/structure/cable{ icon_state = "1-8" @@ -322,23 +292,6 @@ /obj/effect/turf_decal/spline/fancy/opaque/grey, /turf/open/floor/plating/airless, /area/ship/external) -"dU" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "dW" = ( /obj/item/storage/box/handcuffs, /obj/item/storage/box/handcuffs, @@ -384,9 +337,21 @@ /obj/effect/turf_decal/spline/fancy/opaque/grey/corner, /turf/open/floor/plating/airless, /area/ship/external) -"em" = ( -/turf/open/floor/plating/airless, -/area/ship/bridge) +"eq" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/crew) +"ev" = ( +/obj/machinery/power/rtg, +/obj/structure/cable{ + icon_state = "0-6" + }, +/turf/open/floor/circuit/red, +/area/ship/maintenance/central) "eF" = ( /obj/structure/cable{ icon_state = "1-2" @@ -420,40 +385,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"eX" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/plating, -/area/ship/maintenance/central) -"ft" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/caution{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1; - piping_layer = 2 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/maintenance/central) "fw" = ( /obj/structure/cable{ icon_state = "1-2" @@ -481,14 +412,28 @@ /obj/effect/turf_decal/industrial/caution, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"fE" = ( -/obj/machinery/power/grounding_rod{ - anchored = 1 +"fD" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/machinery/airalarm/directional/north, +/obj/machinery/button/door{ + dir = 2; + pixel_x = 26; + pixel_y = -10; + name = "cargo bay door"; + id = "noderidergogo" }, -/obj/effect/turf_decal/industrial/outline/grey, -/obj/machinery/light, -/turf/open/floor/plasteel/tech/grid, -/area/ship/external) +/obj/machinery/button/shieldwallgen{ + dir = 8; + pixel_x = 21; + pixel_y = 4; + id = "noderiders"; + name = "cargo airshield" + }, +/obj/machinery/computer/crew{ + icon_state = "computer-right" + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "fG" = ( /obj/machinery/power/grounding_rod{ anchored = 1 @@ -539,14 +484,18 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"gz" = ( -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 4 - }, +"gC" = ( /obj/structure/table, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) +/obj/machinery/recharger{ + pixel_y = 6 + }, +/obj/item/screwdriver{ + pixel_x = -12 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) "hd" = ( /obj/machinery/power/shieldwallgen/anchored, /obj/structure/cable{ @@ -564,6 +513,25 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"hr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Core"; + req_access_txt = "20"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/poddoor/preopen{ + id = "noderidercore"; + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/central) "hH" = ( /obj/structure/cable{ icon_state = "1-8" @@ -606,70 +574,23 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 28 - }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/plasteel/dark, /area/ship/crew) -"ii" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +"iJ" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 24 + dir = 10 }, -/turf/open/floor/plating, -/area/ship/maintenance/central) -"ir" = ( -/obj/machinery/computer/monitor{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) -"is" = ( -/obj/machinery/door/airlock/hatch{ - name = "Bathroom"; - id_tag = "nodedoor" - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew) -"iu" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 6 - }, -/obj/item/screwdriver{ - pixel_x = -12 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "iM" = ( /obj/structure/cable{ icon_state = "4-8" @@ -679,37 +600,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/cargo) -"jk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, -/obj/machinery/light, -/obj/effect/turf_decal/spline/fancy/opaque/grey{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/ship/external) -"jq" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/advanced_airlock_controller{ - pixel_x = -32 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) "jt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -770,23 +660,6 @@ }, /turf/open/floor/engine/hull, /area/ship/external) -"jO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "Core"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/poddoor/preopen{ - id = "noderidercore" - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/central) "jR" = ( /obj/structure/catwalk/over, /obj/effect/turf_decal/spline/fancy/opaque/grey{ @@ -794,14 +667,19 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"jU" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +"jW" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ dir = 1 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/maintenance/central) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "jX" = ( /obj/structure/cable{ icon_state = "1-4" @@ -812,22 +690,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"ka" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "kd" = ( /obj/structure/cable, /obj/effect/turf_decal/box/red, @@ -837,74 +699,38 @@ "kn" = ( /turf/open/floor/engine/hull, /area/ship/external) -"kK" = ( -/obj/effect/turf_decal/spline/fancy/opaque/black, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"kM" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, +"ky" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"kS" = ( -/obj/machinery/door/airlock/hatch{ - name = "Bridge"; - req_access_txt = "20" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 + icon_state = "1-4" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/machinery/light/directional/north, +/turf/open/floor/engine/hull, +/area/ship/external) +"kE" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "noderiderbridge" - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"lf" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"kK" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black, /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /turf/open/floor/plasteel/dark, -/area/ship/crew) +/area/ship/cargo) "lr" = ( /obj/structure/cable{ icon_state = "1-2" @@ -925,41 +751,40 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/turf_decal/corner_techfloor_gray{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"lI" = ( -/obj/effect/turf_decal/box/red, +"ly" = ( /obj/structure/cable{ icon_state = "1-4" }, -/obj/machinery/syndicatebomb{ - name = "low yield fusion bomb" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/maintenance/central) -"lR" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 24 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, +/obj/structure/catwalk/over, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/ship/maintenance/central) +"lI" = ( +/obj/effect/turf_decal/box/red, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/syndicatebomb{ + name = "low yield fusion bomb" + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/maintenance/central) "lU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -970,35 +795,6 @@ }, /turf/open/floor/engine/hull, /area/ship/bridge) -"lV" = ( -/obj/effect/turf_decal/floordetail/pryhole, -/obj/structure/sink{ - dir = 8; - pixel_x = 13 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/button/door{ - dir = 1; - pixel_x = -10; - pixel_y = -23; - id = "nodedoor"; - name = "bathroom lock"; - specialfunctions = 3 - }, -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "mf" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1012,6 +808,18 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"mo" = ( +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/structure/cable, +/obj/item/radio/intercom/wideband/directional/east, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "ms" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1033,6 +841,7 @@ icon_state = "4-8" }, /obj/machinery/camera/emp_proof, +/obj/structure/railing, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) "mJ" = ( @@ -1074,6 +883,18 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"nI" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/airless, +/area/ship/bridge) +"nM" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) "nO" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1123,16 +944,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"on" = ( -/obj/machinery/power/rtg, -/obj/structure/cable{ - icon_state = "0-6" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit/red, -/area/ship/maintenance/central) "oy" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1156,19 +967,6 @@ /obj/item/pickaxe/drill, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"pg" = ( -/obj/machinery/door/airlock/hatch{ - name = "Emergency Access" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "noderidercore" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/maintenance/central) "pi" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1198,20 +996,17 @@ "pm" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew) -"pJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" +"pu" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/maintenance/central) +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "pM" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1225,20 +1020,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"pW" = ( -/obj/machinery/power/shuttle/engine/electric/premium{ - name = "main drive"; - dir = 4; - power_per_burn = 200000 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "noderiderengine" - }, -/turf/open/floor/engine/hull, -/area/ship/engineering) "qc" = ( /turf/open/floor/plating/airless, /area/ship/external) @@ -1269,10 +1050,7 @@ dir = 8 }, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/computer/cryopod/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ship/crew) "qp" = ( @@ -1331,18 +1109,58 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"rK" = ( +"rx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"rC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 8 }, -/obj/machinery/light/small{ +/obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 4 }, -/obj/machinery/computer/helm{ +/obj/machinery/door/airlock/hatch{ dir = 8 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) +/turf/open/floor/plasteel/tech, +/area/ship/crew) +"se" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/central) "sn" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1369,17 +1187,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech, /area/ship/maintenance/central) -"sr" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering) "sw" = ( /obj/structure/sign/poster/contraband/cybersun_borg{ pixel_y = 32 @@ -1396,17 +1203,20 @@ /obj/item/healthanalyzer, /turf/open/floor/plasteel/dark, /area/ship/crew) -"sx" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, +"sz" = ( /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/power/shuttle/engine/electric/premium{ + name = "main drive"; + dir = 4; + power_per_burn = 200000 }, -/turf/open/floor/plasteel/tech/grid, +/obj/machinery/door/poddoor{ + id = "noderiderengine"; + dir = 4 + }, +/turf/open/floor/engine/hull, /area/ship/engineering) "sB" = ( /obj/structure/cable{ @@ -1418,6 +1228,31 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"sC" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/radio/intercom/directional/north, +/obj/structure/railing, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering) +"sD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/central) "sZ" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1432,15 +1267,20 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/cargo) -"ti" = ( -/obj/machinery/power/rtg, -/obj/structure/cable{ - icon_state = "0-10" +"tk" = ( +/obj/effect/turf_decal/industrial/caution{ + dir = 1 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1; + piping_layer = 2 }, -/turf/open/floor/circuit/red, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/mono/dark, /area/ship/maintenance/central) "ty" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -1497,6 +1337,21 @@ }, /turf/open/floor/engine/hull, /area/ship/bridge) +"tU" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor{ + id = "noderiderengine"; + dir = 4 + }, +/obj/machinery/power/shuttle/engine/electric/premium{ + name = "main drive"; + dir = 4; + power_per_burn = 200000 + }, +/turf/open/floor/engine/hull, +/area/ship/engineering) "tY" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1510,6 +1365,20 @@ "up" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) +"uV" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 6 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "vr" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1523,8 +1392,39 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/structure/railing/corner{ + dir = 8 + }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"vE" = ( +/obj/effect/turf_decal/floordetail/pryhole, +/obj/structure/sink{ + dir = 8; + pixel_x = 13 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/button/door{ + dir = 1; + pixel_x = -10; + pixel_y = -23; + id = "nodedoor"; + name = "bathroom lock"; + specialfunctions = 3 + }, +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/machinery/light/small/directional/east{ + pixel_y = 12 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "vH" = ( /obj/machinery/atmospherics/components/unary/passive_vent/layer4{ dir = 1 @@ -1534,45 +1434,15 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"vK" = ( -/obj/machinery/power/rtg, -/obj/structure/cable{ - icon_state = "0-5" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit/red, -/area/ship/maintenance/central) "vS" = ( /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/security/armory) -"vU" = ( -/obj/structure/railing/corner{ - dir = 4; - layer = 3.1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/button/door{ - dir = 4; - pixel_y = -4; - pixel_x = -24; - id = "noderiderengine"; - name = "Engine shutters" - }, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) +"vW" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/circuit/green, +/area/ship/maintenance/central) "vY" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1592,34 +1462,51 @@ "wu" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security/armory) -"wJ" = ( +"wA" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/engine/hull, +/area/ship/external) +"xk" = ( /obj/machinery/power/grounding_rod{ anchored = 1 }, /obj/effect/turf_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ship/external) -"wR" = ( -/obj/machinery/power/terminal{ - dir = 8 +"xl" = ( +/obj/structure/table, +/obj/structure/closet/wall/red{ + pixel_x = -28; + dir = 4; + name = "captain's locker" }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 }, -/obj/machinery/light, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"wX" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/item/radio/intercom{ - pixel_y = 24 +/obj/machinery/light/small/directional/south{ + pixel_x = 16 }, -/turf/open/floor/circuit/green, -/area/ship/maintenance/central) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/under/utility, +/obj/item/clothing/head/soft/black, +/obj/item/melee/classic_baton/telescopic, +/obj/item/storage/box/handcuffs, +/obj/item/clothing/glasses/meson, +/obj/item/megaphone, +/obj/item/melee/transforming/energy/sword/saber/red, +/obj/item/pinpointer/crew, +/obj/item/clothing/mask/gas/atmos, +/obj/item/clothing/mask/whistle, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "xy" = ( /obj/structure/catwalk/over, /turf/open/floor/plating/airless, @@ -1637,28 +1524,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/crew) -"xT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plasteel/tech, -/area/ship/crew) "xW" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1695,6 +1560,24 @@ }, /turf/open/floor/plasteel/tech, /area/ship/security/armory) +"yh" = ( +/obj/machinery/camera/emp_proof{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/turretid{ + pixel_y = 25 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/computer/communications{ + icon_state = "computer-left" + }, +/obj/machinery/light/small/built/directional/north{ + pixel_x = 16 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "ym" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1759,6 +1642,32 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"yM" = ( +/obj/machinery/power/shuttle/engine/electric/premium{ + name = "main drive"; + dir = 4; + power_per_burn = 200000 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor{ + id = "noderiderengine"; + dir = 4 + }, +/turf/open/floor/engine/hull, +/area/ship/engineering) +"yW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/catwalk/over, +/turf/open/floor/plating/airless, +/area/ship/external) "za" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -1772,23 +1681,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/cargo) -"zo" = ( -/obj/structure/railing{ - layer = 3.3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/machinery/light/small, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/space/hardsuit/security, -/turf/open/floor/plasteel/dark, -/area/ship/security/armory) "zp" = ( /obj/structure/window/reinforced{ dir = 4 @@ -1805,28 +1697,6 @@ /obj/item/clothing/suit/space/hardsuit/security, /turf/open/floor/plasteel/dark, /area/ship/security/armory) -"zB" = ( -/obj/machinery/door/airlock/hatch, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/central) "zF" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1836,6 +1706,13 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"Ab" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "Am" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew) @@ -1878,7 +1755,40 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"BN" = ( +"AY" = ( +/obj/machinery/door/airlock/hatch{ + name = "Bridge"; + req_access_txt = "20"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "noderiderbridge"; + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Bk" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -1892,12 +1802,22 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -24 - }, +/obj/item/radio/intercom/directional/west, /turf/open/floor/plating, /area/ship/cargo) +"BO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "BT" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1933,15 +1853,16 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech, /area/ship/crew) -"BW" = ( -/obj/item/radio/intercom{ - pixel_y = 24 +"BV" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) +/obj/item/radio/intercom/wideband/directional/south, +/turf/open/floor/circuit/green, +/area/ship/maintenance/central) "Ck" = ( /obj/structure/cable{ icon_state = "0-4" @@ -1969,14 +1890,16 @@ }, /turf/open/floor/plating, /area/ship/cargo) -"CW" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 1 +"CQ" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/tech/grid, -/area/ship/maintenance/central) +/obj/machinery/computer/helm{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/bridge) "De" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1984,11 +1907,15 @@ /obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/ship/cargo) +"Dq" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/central) "Dt" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1996,22 +1923,6 @@ /obj/effect/turf_decal/industrial/stand_clear, /turf/open/floor/engine/hull, /area/ship/external) -"DG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/ship/maintenance/central) "DL" = ( /obj/structure/cable{ icon_state = "4-10" @@ -2022,36 +1933,35 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"DN" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 +"DM" = ( +/obj/machinery/door/airlock/hatch{ + name = "Armory"; + req_access_txt = "1"; + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/engineering) -"DR" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/catwalk/over, -/obj/machinery/light/small{ - dir = 1 +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/industrial/warning{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plating, -/area/ship/maintenance/central) +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) "DU" = ( /obj/structure/catwalk/over, /obj/effect/turf_decal/spline/fancy/opaque/grey{ @@ -2059,6 +1969,13 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"Ee" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "Eg" = ( /obj/structure/cable{ icon_state = "2-8" @@ -2078,42 +1995,106 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"EH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +"Em" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4; + name = "acceleration couch" }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) -"EQ" = ( +/obj/machinery/ai_slipper, /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/catwalk/over, -/obj/effect/turf_decal/spline/fancy/opaque/grey{ - dir = 4 - }, -/obj/effect/turf_decal/spline/fancy/opaque/grey{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/ship/external) -"EZ" = ( -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 + icon_state = "2-8" }, -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/industrial/outline/yellow, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"Fe" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/button/door{ + pixel_y = 22; + pixel_x = 38; + name = "bridge lockdown"; + id = "noderiderbridge" }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Eu" = ( /obj/structure/cable{ icon_state = "1-8" }, /obj/structure/catwalk/over, -/obj/effect/turf_decal/spline/fancy/opaque/grey{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"Ev" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/advanced_airlock_controller{ + pixel_x = -26 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/mono/dark, +/area/ship/engineering) +"EH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/security/armory) +"EP" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"EQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk/over, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/ship/external) +"EZ" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/industrial/outline/yellow, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) +"Fe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/catwalk/over, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ dir = 4 }, /obj/effect/turf_decal/spline/fancy/opaque/grey/corner{ @@ -2130,19 +2111,6 @@ }, /turf/open/floor/plating/airless, /area/ship/security/armory) -"FE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/item/radio/intercom/wideband{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/circuit/green, -/area/ship/maintenance/central) "FH" = ( /obj/effect/turf_decal/industrial/outline/yellow, /obj/structure/curtain/cloth/grey, @@ -2150,23 +2118,6 @@ /obj/item/bedsheet/blue, /turf/open/floor/plasteel/tech/grid, /area/ship/crew) -"FO" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) "FQ" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -2178,6 +2129,28 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"FV" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/button/door{ + dir = 4; + pixel_y = -4; + pixel_x = -24; + id = "noderiderengine"; + name = "Engine shutters" + }, +/obj/effect/turf_decal/corner_techfloor_gray{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) "Ga" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2191,20 +2164,6 @@ }, /turf/open/floor/circuit/green, /area/ship/maintenance/central) -"Gh" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/emp_proof{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) "GA" = ( /obj/structure/cable{ icon_state = "1-8" @@ -2235,6 +2194,14 @@ /obj/item/pipe_dispenser, /turf/open/floor/plasteel/dark, /area/ship/engineering) +"GN" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/obj/effect/turf_decal/industrial/outline/grey, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/external) "GW" = ( /obj/structure/catwalk/over, /obj/effect/turf_decal/spline/fancy/opaque/grey{ @@ -2242,6 +2209,14 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"Hg" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/maintenance/central) "Hi" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2273,23 +2248,6 @@ /obj/item/stack/sheet/glass/fifty, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"HF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/structure/railing{ - layer = 3.3 - }, -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/machinery/light/small, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/space/hardsuit/security, -/turf/open/floor/plasteel/dark, -/area/ship/security/armory) "Ih" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2297,12 +2255,12 @@ /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2{ dir = 8 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/advanced_airlock_controller{ - pixel_y = 32 + pixel_y = 25 }, /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -2332,15 +2290,23 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"Jb" = ( -/obj/structure/cable{ - icon_state = "1-4" +"IH" = ( +/obj/structure/railing{ + layer = 3.3 }, -/obj/machinery/light{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/engine/hull, -/area/ship/external) +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/space/hardsuit/security, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) "Jp" = ( /obj/structure/table, /obj/machinery/recharger{ @@ -2360,6 +2326,24 @@ /obj/machinery/power/tesla_coil/tesla_ground, /turf/open/floor/engine/hull/reinforced, /area/ship/external) +"JI" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering) +"JP" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/directional/north, +/obj/structure/railing, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "JZ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2374,6 +2358,43 @@ "Kc" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/security/armory) +"Kd" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) +"Ke" = ( +/obj/machinery/door/airlock/hatch{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/central) "Km" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2418,10 +2439,6 @@ /turf/open/floor/plasteel/dark, /area/ship/cargo) "KF" = ( -/obj/structure/railing{ - dir = 1; - layer = 3.1 - }, /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 1 }, @@ -2438,6 +2455,13 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) +"KM" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/engine/hull, +/area/ship/external) "KR" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2454,61 +2478,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"KV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"Lo" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4; - name = "acceleration couch" - }, -/obj/machinery/ai_slipper, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 28; - pixel_y = -28 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/button/door{ - dir = 8; - pixel_y = 26; - pixel_x = 41; - name = "bridge lockdown"; - id = "noderiderbridge" - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"Lx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/ship/cargo) "LC" = ( /obj/structure/curtain/cloth/grey, /turf/open/floor/plasteel/dark, @@ -2533,6 +2502,13 @@ /obj/item/bedsheet/blue, /turf/open/floor/plasteel/tech/grid, /area/ship/crew) +"LR" = ( +/obj/machinery/power/rtg, +/obj/structure/cable{ + icon_state = "0-5" + }, +/turf/open/floor/circuit/red, +/area/ship/maintenance/central) "LY" = ( /obj/structure/cable{ icon_state = "2-8" @@ -2550,17 +2526,6 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"Mt" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk/over, -/obj/machinery/light, -/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/ship/external) "MG" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2579,20 +2544,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/maintenance/central) -"MI" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "noderiderengine" - }, -/obj/machinery/power/shuttle/engine/electric/premium{ - name = "main drive"; - dir = 4; - power_per_burn = 200000 - }, -/turf/open/floor/engine/hull, -/area/ship/engineering) "MJ" = ( /obj/structure/closet/wall{ dir = 1; @@ -2637,29 +2588,6 @@ /obj/item/radio, /turf/open/floor/plasteel/dark, /area/ship/crew) -"MN" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/central) -"MO" = ( -/obj/machinery/power/grounding_rod{ - anchored = 1 - }, -/obj/effect/turf_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/external) "MU" = ( /turf/closed/wall/r_wall/syndicate, /area/ship/maintenance/central) @@ -2671,11 +2599,16 @@ /obj/machinery/power/tesla_coil/tesla_ground, /turf/open/floor/engine/hull/reinforced, /area/ship/external) -"Nl" = ( -/obj/structure/railing{ - dir = 1; - layer = 3.1 +"Ne" = ( +/obj/machinery/camera/xray{ + dir = 8 }, +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/turf/open/floor/plating/airless, +/area/ship/bridge) +"Nl" = ( /obj/structure/cable{ icon_state = "1-6" }, @@ -2691,31 +2624,40 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"Ok" = ( +"NO" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, +/obj/structure/catwalk/over, +/obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/ship/maintenance/central) -"Oy" = ( -/obj/machinery/camera/xray{ - dir = 8 +"Oj" = ( +/obj/structure/cable{ + icon_state = "4-9" }, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/light/directional/south, +/turf/open/floor/engine/hull, +/area/ship/external) +"Ok" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/power/grounding_rod{ - anchored = 1 +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plating/airless, -/area/ship/bridge) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/maintenance/central) "Oz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -2742,37 +2684,14 @@ }, /turf/open/floor/plating, /area/ship/cargo) -"ON" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/structure/railing{ - layer = 3.3 - }, -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/space/hardsuit/security, -/turf/open/floor/plasteel/dark, -/area/ship/security/armory) -"Pg" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/light/small{ - dir = 8 +"PC" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 }, -/obj/item/clothing/suit/armor/vest/marine/medium, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) +/obj/effect/turf_decal/industrial/outline/grey, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/external) "PK" = ( /obj/structure/cable{ icon_state = "4-9" @@ -2801,13 +2720,15 @@ /obj/effect/turf_decal/industrial/outline/grey, /turf/open/floor/plasteel/tech/grid, /area/ship/external) -"QD" = ( -/obj/structure/cable{ - icon_state = "2-4" +"Qt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/obj/machinery/light, -/turf/open/floor/engine/hull, -/area/ship/external) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "QH" = ( /obj/structure/cable{ icon_state = "1-8" @@ -2830,6 +2751,17 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"QI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/emp_proof{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/crew) "QN" = ( /obj/structure/cable{ icon_state = "0-2" @@ -2847,33 +2779,29 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"QQ" = ( -/obj/structure/chair{ - dir = 4 +"Rn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"Rj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/catwalk/over, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ship/maintenance/central) +"Rp" = ( /obj/machinery/power/rtg, /obj/structure/cable{ - icon_state = "0-9" - }, -/obj/machinery/light{ - dir = 4 + icon_state = "0-10" }, +/obj/machinery/light/dim/directional/east, /turf/open/floor/circuit/red, /area/ship/maintenance/central) -"Ro" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/caution, -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/maintenance/central) "Rr" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -2884,11 +2812,36 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plasteel/dark, /area/ship/cargo) +"Ru" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-9" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/central) "Rz" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -2923,57 +2876,20 @@ /obj/structure/cable{ icon_state = "4-10" }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/caution{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"RW" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/effect/turf_decal/corner_techfloor_gray{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"Sc" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 }, -/obj/machinery/door/airlock/external{ - name = "Core"; - req_access_txt = "20" +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/industrial/caution{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 + dir = 6 }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/central) -"Ss" = ( -/obj/machinery/ai_slipper, -/obj/effect/turf_decal/spline/fancy/opaque/black, /turf/open/floor/plasteel/dark, -/area/ship/cargo) +/area/ship/engineering) "SP" = ( /obj/machinery/power/shieldwallgen/anchored, /obj/structure/cable, @@ -2990,36 +2906,11 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/stairs, -/area/ship/engineering) -"Tx" = ( -/obj/machinery/door/airlock/hatch{ - name = "Armory"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/structure/railing{ dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/security/armory) +/turf/open/floor/plasteel/stairs, +/area/ship/engineering) "TI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3035,6 +2926,28 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"Ut" = ( +/obj/machinery/door/airlock/hatch{ + name = "Bathroom"; + id_tag = "nodedoor"; + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew) +"Uv" = ( +/obj/machinery/power/rtg, +/obj/structure/cable{ + icon_state = "0-9" + }, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/circuit/red, +/area/ship/maintenance/central) "UM" = ( /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 1 @@ -3075,42 +2988,16 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"Vn" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/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/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/maintenance/central) -"Vw" = ( -/obj/structure/cable{ - icon_state = "4-10" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/hull, -/area/ship/external) -"Vx" = ( -/obj/structure/cable{ - icon_state = "4-9" - }, -/obj/machinery/light, -/turf/open/floor/engine/hull, -/area/ship/external) "VC" = ( /obj/machinery/porta_turret/centcom_shuttle, /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) +"VF" = ( +/obj/machinery/ai_slipper, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "VK" = ( /obj/machinery/power/shieldwallgen/anchored, /obj/structure/cable{ @@ -3118,28 +3005,6 @@ }, /turf/open/floor/engine/hull, /area/ship/external) -"Wb" = ( -/obj/effect/turf_decal/spline/fancy/opaque/black, -/obj/machinery/airalarm/directional/north, -/obj/machinery/button/door{ - dir = 8; - pixel_x = 28; - pixel_y = -7; - name = "cargo bay door"; - id = "noderidergogo" - }, -/obj/machinery/button/shieldwallgen{ - dir = 8; - pixel_x = 27; - pixel_y = 4; - id = "noderiders"; - name = "cargo airshield" - }, -/obj/machinery/computer/communications{ - icon_state = "computer-left" - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) "Wp" = ( /obj/structure/cable{ icon_state = "2-5" @@ -3154,16 +3019,14 @@ "Wv" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) -"WL" = ( -/obj/machinery/power/grounding_rod{ - anchored = 1 - }, -/obj/effect/turf_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 1 +"Xa" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/external) +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Xw" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3175,27 +3038,21 @@ }, /turf/open/floor/plating/airless, /area/ship/external) -"XZ" = ( -/obj/machinery/camera/emp_proof{ - dir = 4 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 +"XP" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/computer/crew{ - icon_state = "computer-right" +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/machinery/turretid{ - pixel_y = 25 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/bridge) +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/ship/cargo) "Yc" = ( /obj/machinery/door/window/brigdoor{ dir = 4 @@ -3204,31 +3061,14 @@ icon_state = "4-8" }, /obj/machinery/button/door{ - pixel_y = 27; - pixel_x = -26; + pixel_y = 33; + pixel_x = -22; dir = 4; name = "emergency blast shutters"; id = "noderidercore" }, /turf/open/floor/circuit/green, /area/ship/maintenance/central) -"Ye" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plating, -/area/ship/maintenance/central) "Yp" = ( /obj/machinery/holopad/emergency/engineering, /obj/effect/turf_decal/box, @@ -3241,17 +3081,30 @@ }, /turf/open/floor/plasteel/dark, /area/ship/engineering) -"Yy" = ( -/obj/machinery/door/airlock/hatch, +"YX" = ( +/obj/machinery/holopad/emergency/command, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"Zk" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-9" - }, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, @@ -3266,29 +3119,34 @@ }, /turf/open/floor/plasteel/tech, /area/ship/maintenance/central) -"YG" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +"Zn" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"YX" = ( -/obj/machinery/holopad/emergency/command, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/obj/structure/catwalk/over, +/obj/effect/turf_decal/spline/fancy/opaque/grey{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 +/obj/machinery/light/directional/south, +/turf/open/floor/plating/airless, +/area/ship/external) +"Zr" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) +/obj/item/tank/jetpack/carbondioxide, +/obj/structure/railing{ + layer = 3.3 + }, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/space/hardsuit/security, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/security/armory) "Zx" = ( /obj/structure/cable{ icon_state = "2-8" @@ -3299,6 +3157,23 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"ZF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Core"; + req_access_txt = "20"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/central) "ZW" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3309,6 +3184,20 @@ }, /turf/open/floor/plating/airless, /area/ship/external) +"ZX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/central) (1,1,1) = {" by @@ -3436,15 +3325,15 @@ by Ck by pM -wJ +PC up Wv -MI -pW -MI +tU +yM +sz Wv up -wJ +PC oy by Ck @@ -3467,7 +3356,7 @@ by pM Wv Wv -vU +FV hQ hQ hQ @@ -3495,13 +3384,13 @@ az JZ In up -sr +sC Nl cP cP cP fz -DN +JI up mJ tY @@ -3524,13 +3413,13 @@ pM Qp Wv up -sx +JP KF rb dJ RI tJ -wR +Kd up Wv Qp @@ -3580,17 +3469,17 @@ EQ EQ QH eS -jq +Ev mT vr Tm -FO +ci Hx -kM +iJ mN xX dn -dx +bG eS LY EQ @@ -3611,13 +3500,13 @@ ef Wv up Wv -zB +Zk OG MU MU MU OG -Yy +Ru Wv up Wv @@ -3640,11 +3529,11 @@ Zx hK hd Kn -MN +se ty -ft +tk lI -Ro +au ty df Kn @@ -3667,17 +3556,17 @@ by by by Is -Vx +Oj wq -DR +NO MU MU -pg +aq MU MU -ii +kE wq -Vw +KM jR by by @@ -3700,9 +3589,9 @@ An wq ym MU -on +ev Yc -vK +LR MU aa wq @@ -3729,9 +3618,9 @@ sn wq qW MU -wX +vW jG -FE +BV MU MG wq @@ -3756,11 +3645,11 @@ by by jI wq -DG +ZX MU -ti +Rp Ga -Rj +Uv MU Ok wq @@ -3785,10 +3674,10 @@ yK pi hH wq -Ye +rx OG OG -jO +hr OG OG Ok @@ -3812,17 +3701,17 @@ MZ by by ef -QD +wA Kn -Vn -jU +ly +Hg OG Ih MU -CW -pJ +Dq +Rn Kn -Jb +ky oy by by @@ -3843,13 +3732,13 @@ GW hi VK wq -bk +Ke OG OG -Sc +ZF OG OG -lR +sD wq VK pj @@ -3873,12 +3762,12 @@ Qp db db Cy -BN +Bk De sZ jt so -eX +Eu wq Am Qp @@ -3897,7 +3786,7 @@ by Xw by by -jk +Zn db db EZ @@ -3933,12 +3822,12 @@ yI Hi Km oR -Ss +VF yJ pm sw -QQ -Gh +Ab +QI pm oy by @@ -3963,9 +3852,9 @@ FQ iM KD bB -gz +Xa pm -bd +pu Qd MJ pm @@ -3984,19 +3873,19 @@ EQ Eg EQ pi -Mt +yW wu Kc -Tx -Kc -Lx +DM +wu +XP jt OK jt BU xz hW -YG +Qt pm mJ aX @@ -4015,17 +3904,17 @@ by ef xy Kc -Pg +nM GA vS wu -RW +EP Rz -dU +uV Am pm pm -xT +rC pm xy oy @@ -4046,15 +3935,15 @@ Kc Kc tF Oz -zo +IH Kz Kz -kS +AY Kz Kz FH LO -KV +BO pm pm TI @@ -4071,21 +3960,21 @@ by by by ef -fE +xk Kc qh yd -ON +zp oJ -XZ +yh YX -aN +xl oJ -BW -lf -ka +Ee +eq +jW pm -WL +GN oy by by @@ -4106,12 +3995,12 @@ Jp EH zp oJ -Wb -Lo -ir +fD +Em +mo oJ -is -pm +Ut +Am LC pm VC @@ -4131,15 +4020,15 @@ by ef Uq Kc -iu +gC dW -HF +Zr Kz Kz -rK +CQ Kz Kz -lV +vE pm qj pm @@ -4170,8 +4059,8 @@ oJ oJ pm pm -pm -pm +Am +Am qp mJ qw @@ -4188,19 +4077,19 @@ by by by qc -MO +aD Kc by Fo by oJ -em +nI oJ by Cv by pm -MO +aD qc by by @@ -4223,7 +4112,7 @@ by KI by oJ -Oy +Ne oJ by KI diff --git a/_maps/shuttles/shiptest/radio_funny.dmm b/_maps/shuttles/shiptest/radio_funny.dmm index c88923564a56..6b27d4fb9d75 100644 --- a/_maps/shuttles/shiptest/radio_funny.dmm +++ b/_maps/shuttles/shiptest/radio_funny.dmm @@ -1,4 +1,9 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aw" = ( +/obj/structure/table/bronze, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "az" = ( /obj/structure/window/bronze{ dir = 4 @@ -12,32 +17,27 @@ }, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"aJ" = ( -/obj/structure/sink{ - dir = 1 - }, -/obj/structure/mirror{ - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/freezer, -/area/ship/bridge) "aW" = ( /obj/structure/frame/computer, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) +"bf" = ( +/obj/structure/table/bronze, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/nanoweave, +/area/ship/bridge) "bD" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced/spawner, /turf/open/floor/plasteel/freezer, /area/ship/bridge) -"bF" = ( -/obj/structure/table/bronze, -/obj/item/storage/firstaid/advanced, -/obj/machinery/light{ - dir = 1 +"cK" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/bronze{ + dir = 4 }, -/turf/open/floor/carpet/nanoweave/blue, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/nanoweave/red, /area/ship/bridge) "cS" = ( /obj/structure/chair/bronze{ @@ -60,6 +60,12 @@ /obj/machinery/light/floor, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) +"ib" = ( +/obj/structure/table/bronze, +/obj/item/storage/firstaid/advanced, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/nanoweave/blue, +/area/ship/bridge) "io" = ( /obj/structure/chair/bronze, /obj/machinery/door/window{ @@ -118,19 +124,38 @@ }, /turf/open/floor/carpet/nanoweave/red, /area/ship/bridge) -"th" = ( -/obj/machinery/light/floor, -/turf/open/floor/carpet/nanoweave/red, +"tj" = ( +/obj/structure/table/bronze, +/obj/machinery/microwave, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/nanoweave/orange, /area/ship/bridge) "tv" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced/spawner, /turf/open/floor/carpet/nanoweave/orange, /area/ship/bridge) +"tL" = ( +/turf/template_noop, +/area/template_noop) +"tZ" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/freezer, +/area/ship/bridge) "up" = ( /obj/structure/window/bronze, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) +"uu" = ( +/obj/structure/table/bronze, +/obj/machinery/light/floor, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/bridge) "uS" = ( /obj/structure/window/bronze{ dir = 4 @@ -144,44 +169,6 @@ /obj/structure/table/bronze, /turf/open/floor/carpet/nanoweave/red, /area/ship/bridge) -"wJ" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/structure/window/bronze{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) -"wV" = ( -/obj/structure/window/bronze{ - dir = 8 - }, -/obj/machinery/jukebox, -/obj/structure/window/bronze{ - dir = 1 - }, -/obj/item/radio/intercom/wideband{ - pixel_y = -32 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/bridge) -"xx" = ( -/obj/structure/table/bronze, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"yX" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/ship/bridge) "Au" = ( /obj/structure/bed, /obj/item/bedsheet/syndie, @@ -194,6 +181,14 @@ }, /turf/open/floor/carpet/nanoweave/red, /area/ship/bridge) +"Bm" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/structure/window/bronze{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/bridge) "BI" = ( /obj/structure/table/bronze, /obj/item/trash/plate, @@ -202,13 +197,6 @@ "EK" = ( /turf/open/floor/carpet/nanoweave, /area/ship/bridge) -"EY" = ( -/obj/structure/table/bronze, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) "GQ" = ( /obj/machinery/door/window/westright{ dir = 2 @@ -226,6 +214,16 @@ }, /turf/open/floor/carpet/nanoweave/red, /area/ship/bridge) +"HL" = ( +/obj/structure/sink{ + dir = 1 + }, +/obj/structure/mirror{ + pixel_y = -30 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/freezer, +/area/ship/bridge) "HZ" = ( /obj/effect/mob_spawn/human/lavaland_syndicate/comms{ dir = 4 @@ -243,12 +241,14 @@ /obj/machinery/computer/helm, /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) +"Ko" = ( +/obj/structure/table/bronze, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/nanoweave/orange, +/area/ship/bridge) "Kr" = ( /turf/open/floor/carpet/nanoweave/blue, /area/ship/bridge) -"Ky" = ( -/turf/open/space, -/area/space) "KK" = ( /turf/open/floor/carpet/nanoweave/beige, /area/ship/bridge) @@ -257,22 +257,6 @@ /obj/item/kitchen/knife, /turf/open/floor/carpet/nanoweave/orange, /area/ship/bridge) -"Mj" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/window/bronze{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) -"Mo" = ( -/obj/structure/table/bronze, -/obj/machinery/microwave, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/bridge) "MW" = ( /obj/structure/curtain/cloth/grey, /obj/structure/table, @@ -284,16 +268,26 @@ }, /turf/open/floor/carpet/nanoweave/orange, /area/ship/bridge) +"Np" = ( +/obj/structure/window/bronze{ + dir = 8 + }, +/obj/machinery/jukebox, +/obj/structure/window/bronze{ + dir = 1 + }, +/obj/item/radio/intercom/wideband/directional/north, +/turf/open/floor/carpet/nanoweave/beige, +/area/ship/bridge) "Ob" = ( /obj/structure/chair/plastic{ dir = 4 }, /turf/open/floor/carpet/nanoweave/orange, /area/ship/bridge) -"Ph" = ( -/obj/structure/table/bronze, +"Pd" = ( /obj/machinery/light/floor, -/obj/item/radio/intercom, +/obj/effect/landmark/observer_start, /turf/open/floor/carpet/nanoweave/red, /area/ship/bridge) "Qw" = ( @@ -325,13 +319,6 @@ /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/ship/bridge) -"Vx" = ( -/obj/structure/table/bronze, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/bridge) "VS" = ( /obj/machinery/telecomms/allinone, /obj/structure/window/bronze, @@ -368,54 +355,54 @@ /area/ship/bridge) (1,1,1) = {" -Ky -Ky -Ky -Ky -Ky -Ky +tL +tL +tL +tL +tL +tL Yx Ve Ve Ve Yx -Ky -Ky +tL +tL "} (2,1,1) = {" -Ky -Ky -Ky -Ky +tL +tL +tL +tL Yx Ve Yx HZ Qw -aJ +HL Yx Yx -Ky +tL "} (3,1,1) = {" -Ky +tL Yx Ve Ve Yx -xx +bf EK EK Rj de -yX +tZ Yx Yx "} (4,1,1) = {" Yx Yx -bF +ib eI rm Au @@ -436,10 +423,10 @@ up Ba Hu Ba -wV +Np QG HJ -wJ +Bm Yx "} (6,1,1) = {" @@ -449,10 +436,10 @@ cS gG GQ Kr -th +Pd KK io -Ph +uu Ya gb sq @@ -469,13 +456,13 @@ uS iX vt az -Mj +cK Yx "} (8,1,1) = {" Yx Yx -EY +aw pO VS pY @@ -488,25 +475,25 @@ tv oK "} (9,1,1) = {" -Ky +tL Yx Ve Ve Yx -Vx +Ko Tq Ob Ob Ob -Mo +tj Yx Yx "} (10,1,1) = {" -Ky -Ky -Ky -Ky +tL +tL +tL +tL Yx Ve Yx @@ -515,20 +502,20 @@ BI Lu Yx Yx -Ky +tL "} (11,1,1) = {" -Ky -Ky -Ky -Ky -Ky -Ky +tL +tL +tL +tL +tL +tL Yx Ve Ve Ve Yx -Ky -Ky +tL +tL "} diff --git a/_maps/shuttles/shiptest/solgov_cricket.dmm b/_maps/shuttles/shiptest/solgov_cricket.dmm deleted file mode 100644 index ecdd5b4db72a..000000000000 --- a/_maps/shuttles/shiptest/solgov_cricket.dmm +++ /dev/null @@ -1,5387 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"an" = ( -/obj/machinery/door/airlock/public/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/aft) -"ar" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"at" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"aw" = ( -/obj/machinery/power/shuttle/engine/fueled/plasma{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ship/engineering/engine) -"aE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"aG" = ( -/obj/effect/decal/cleanable/oil/slippery, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"aI" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"aN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"aR" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"bd" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/starboard) -"be" = ( -/obj/machinery/door/airlock/security{ - name = "Brig" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"bl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/autolathe, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgcargodesk" - }, -/obj/effect/turf_decal/corner/opaque/brown/full, -/turf/open/floor/plasteel, -/area/ship/cargo) -"bn" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/mob/living/simple_animal/pet/fox/Renault, -/obj/structure/bed/dogbed/renault, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"bt" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/orange, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"by" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/firedoor/window, -/obj/structure/curtain/cloth/fancy, -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgwindowshut"; - name = "External Shutters" - }, -/turf/open/floor/plating, -/area/ship/crew/solgov) -"bC" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/machinery/door/window/eastleft, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"bQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central4, -/obj/effect/turf_decal/steeldecal/steel_decals_central6, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"bT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 9 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"bX" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"co" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_y = 2 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgkitchen" - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"cp" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"cu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"cv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"cB" = ( -/obj/effect/decal/cleanable/food/egg_smudge, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"cQ" = ( -/obj/machinery/vending/mining_equipment, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown, -/turf/open/floor/plasteel, -/area/ship/cargo) -"df" = ( -/obj/machinery/door/airlock/mining, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"dn" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating/airless, -/area/ship/engineering/engine) -"dW" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"eh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"ek" = ( -/obj/structure/filingcabinet, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"eq" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/storage) -"eA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"eD" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 6 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"eE" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"eF" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/light/small, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"eG" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"eH" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"eN" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"eT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"eX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"fa" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 8; - network = "tcommsat" - }, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"fn" = ( -/obj/machinery/computer/monitor{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"fp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"fr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"fu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown/half, -/turf/open/floor/plasteel, -/area/ship/cargo) -"fw" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"fy" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/power/port_gen/pacman/super, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"fz" = ( -/obj/structure/catwalk, -/obj/structure/sign/solgov_seal{ - pixel_y = -27 - }, -/turf/template_noop, -/area/ship/external) -"fG" = ( -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"fI" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"fS" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"fV" = ( -/obj/machinery/camera/autoname{ - network = list("cricket") - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"ga" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"gt" = ( -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"gu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"gG" = ( -/obj/machinery/light, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"gM" = ( -/obj/structure/rack, -/obj/item/clothing/head/hardhat{ - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat/weldhat/orange{ - pixel_y = 4 - }, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/item/pipe_dispenser, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"gN" = ( -/obj/structure/fluff/paper, -/obj/effect/spawner/lootdrop/crate_spawner, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"gO" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/corner/opaque/brown/half, -/turf/open/floor/plasteel, -/area/ship/cargo) -"gS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/door/window/westright, -/obj/structure/window/reinforced/spawner, -/obj/machinery/atmospherics/components/binary/pump/layer2, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/aft) -"gW" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/firedoor/window, -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgwindowshut"; - name = "External Shutters" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"gX" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"hb" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgcargostore" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ship/storage) -"hn" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"hq" = ( -/obj/structure/closet/secure_closet/lieutenant, -/obj/item/taperecorder, -/obj/item/clothing/neck/petcollar, -/obj/item/pet_carrier, -/obj/item/radio/headset/solgov/alt, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"hv" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"hx" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"hz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/borderfloor, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"hA" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "sgbridgelock" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/fore) -"hH" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - network = list("cricket") - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"ie" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"iI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/brown/half, -/turf/open/floor/plasteel, -/area/ship/cargo) -"iM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"iN" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/door/window/eastright, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"iS" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"iW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer2, -/obj/effect/turf_decal/steeldecal/steel_decals9, -/obj/effect/turf_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/aft) -"jj" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"jq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"jr" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/clothing/gloves/color/fyellow{ - pixel_x = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"jz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"jA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/mono, -/area/ship/cargo) -"jP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"jR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - network = list("cricket") - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"kg" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/mob/living/simple_animal/bot/cleanbot{ - name = "Janniebot" - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"kj" = ( -/obj/effect/decal/cleanable/robot_debris, -/obj/machinery/atmospherics/pipe/manifold/orange, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"ko" = ( -/obj/structure/lattice, -/obj/machinery/camera/autoname{ - network = list("cricket") - }, -/turf/template_noop, -/area/ship/external) -"kx" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"ky" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/engineering/atmospherics) -"kz" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/atmospherics) -"kG" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = -27 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"kO" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"kY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"lg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4{ - dir = 8 - }, -/obj/item/oar, -/obj/machinery/advanced_airlock_controller{ - pixel_y = -25 - }, -/obj/structure/closet/emcloset/wall{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/aft) -"lh" = ( -/obj/effect/turf_decal/box, -/obj/machinery/suit_storage_unit/solgov, -/obj/effect/turf_decal/corner_techfloor_grid/full{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"ln" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm) -"lC" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"lG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"lJ" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"lL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"lM" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/door/window/eastleft, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"mi" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"mm" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/firedoor/window, -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgwindowshut"; - name = "External Shutters" - }, -/turf/open/floor/plating, -/area/ship/bridge) -"mo" = ( -/obj/machinery/door/airlock/medical{ - name = "Infirmary" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/medical) -"mz" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/window/eastleft, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"mH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/flasher{ - id = "Holding Cell"; - pixel_y = 22 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"mJ" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/three_course_meal, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"mM" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"mO" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"mQ" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/communications) -"mU" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/communications) -"na" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"nb" = ( -/obj/machinery/door/airlock/atmos, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"nc" = ( -/obj/machinery/button/door{ - id = "sgcargodesk"; - name = "Cargo Desk Shutter"; - pixel_x = 10; - pixel_y = 22 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"nd" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"nl" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/engineering/communications) -"nu" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"nz" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/ship/engineering/atmospherics) -"nC" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/ship/engineering/atmospherics) -"nL" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"nM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"nN" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"nO" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/firedoor/window, -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgwindowshut"; - name = "External Shutters" - }, -/turf/open/floor/plating, -/area/ship/crew/canteen) -"nZ" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/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 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"oe" = ( -/obj/structure/catwalk, -/turf/template_noop, -/area/ship/external) -"ok" = ( -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking/circle{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"os" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"ot" = ( -/obj/structure/table, -/obj/item/storage/bag/tray, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/rag, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/kitchen/knife, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"oy" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew/dorm) -"oD" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/crew/dorm) -"oF" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgkitchen" - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"oI" = ( -/obj/machinery/button/door{ - id = "sgcargostore"; - name = "Storeroom Shutter"; - pixel_y = 22 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 34 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"oL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/borderfloor/corner, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"oR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/external) -"pd" = ( -/obj/machinery/atmospherics/pipe/layer_manifold, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"pf" = ( -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"pk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"pt" = ( -/obj/machinery/door/window/brigdoor/security/cell/westleft{ - id = "Holding Cell" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red/border{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"pI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"pK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"qd" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/bridge) -"qr" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/bridge) -"qu" = ( -/obj/structure/window/plasma/reinforced/spawner, -/obj/effect/turf_decal/atmos/oxygen, -/turf/open/floor/engine/o2, -/area/ship/engineering/atmospherics) -"qv" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner, -/turf/open/floor/engine/o2, -/area/ship/engineering/atmospherics) -"qG" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"qL" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"qW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"qY" = ( -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"qZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"rj" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"rv" = ( -/turf/open/floor/plasteel/mono, -/area/ship/cargo) -"rC" = ( -/obj/structure/closet/wall{ - name = "SolGov fatigues closet"; - pixel_y = 32 - }, -/obj/item/clothing/under/solgov/formal, -/obj/item/clothing/under/solgov/elite, -/obj/item/clothing/under/solgov, -/obj/item/clothing/under/solgov, -/obj/item/clothing/under/solgov, -/obj/item/clothing/suit/toggle/solgov, -/obj/item/clothing/suit/armor/solgov_trenchcoat, -/obj/item/clothing/head/beret/solgov, -/obj/item/clothing/head/beret/solgov, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/accessory/waistcoat/solgov, -/obj/item/clothing/accessory/waistcoat/solgov, -/obj/item/radio/headset/solgov, -/obj/item/radio/headset/solgov, -/obj/item/radio/headset/solgov, -/obj/item/radio/headset/solgov, -/obj/item/radio/headset/solgov, -/turf/open/floor/wood, -/area/ship/crew/dorm) -"rN" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"rT" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"rU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"rX" = ( -/obj/structure/curtain, -/obj/machinery/shower{ - pixel_y = 8 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/item/soap, -/turf/open/floor/plasteel/white, -/area/ship/crew/dorm) -"sh" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/docking_port/mobile{ - dir = 2; - launch_status = 0; - port_direction = 8 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/aft) -"sv" = ( -/obj/structure/lattice, -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/template_noop, -/area/ship/external) -"sF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"sT" = ( -/obj/machinery/door/airlock/public/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/starboard) -"sV" = ( -/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 = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"tg" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"tm" = ( -/obj/structure/bookcase/random, -/obj/structure/sign/solgov_flag/right, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"tq" = ( -/obj/machinery/modular_computer/console/preset/command, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"ts" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -6 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/bridge) -"tx" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/ship/engineering/atmospherics) -"tE" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/ship/engineering/atmospherics) -"tG" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"tL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"tR" = ( -/obj/machinery/button/door{ - id = "sgcargodoor"; - name = "Blast Door Control"; - pixel_x = 25 - }, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"ua" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/donut/berry{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/storage/box/flashes{ - pixel_x = -6 - }, -/obj/machinery/recharger, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"uc" = ( -/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/camera/autoname{ - network = list("cricket") - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"uo" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"up" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/ship/hallway/aft) -"us" = ( -/obj/effect/turf_decal/industrial/stand_clear, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"uy" = ( -/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{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"uB" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm) -"uC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm) -"uJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/holopad/emergency/command, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"uM" = ( -/turf/open/floor/wood, -/area/ship/crew/dorm) -"uO" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"uP" = ( -/obj/machinery/door/window/westleft, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/mirror{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/dorm) -"uZ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/paper_bin, -/obj/item/pen/solgov, -/obj/structure/sign/solgov_flag, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"vg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"vi" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/borderfloor, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"vm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"vq" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"vA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/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{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"vV" = ( -/obj/structure/railing, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 25 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"wd" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/medical) -"we" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"wf" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"wm" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"ww" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 10 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"wE" = ( -/obj/machinery/computer/helm{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"wF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/sign/solgov_seal{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm) -"wS" = ( -/obj/structure/window/plasma/reinforced/spawner, -/obj/effect/turf_decal/atmos/nitrogen, -/turf/open/floor/engine/n2, -/area/ship/engineering/atmospherics) -"xa" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner, -/turf/open/floor/engine/n2, -/area/ship/engineering/atmospherics) -"xy" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/camera/autoname{ - dir = 4; - network = list("cricket") - }, -/turf/open/floor/plasteel, -/area/ship/hallway/aft) -"xM" = ( -/obj/item/radio/intercom{ - pixel_x = 32 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"xT" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/machinery/button/door{ - id = "sgkitchen"; - name = "Kitchen Shutters"; - pixel_y = -22 - }, -/obj/machinery/camera/autoname{ - dir = 1; - network = list("cricket") - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"xU" = ( -/obj/structure/curtain/bounty, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"yh" = ( -/obj/structure/curtain/bounty, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"yn" = ( -/obj/machinery/cryopod, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 1 - }, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"yt" = ( -/obj/structure/table, -/obj/item/storage/bag/construction, -/obj/item/storage/box/stockparts/basic{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = -2 - }, -/obj/structure/fireaxecabinet{ - pixel_y = 27 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"yw" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/ship/engineering/communications) -"yC" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/engine) -"yH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/mono, -/area/ship/cargo) -"yP" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium, -/area/ship/engineering/communications) -"yR" = ( -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"yT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"yV" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"yX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"zc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs{ - dir = 4 - }, -/area/ship/bridge) -"zh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "sgengistore" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ship/storage) -"zk" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"zo" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"zx" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"zA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"zD" = ( -/obj/effect/decal/cleanable/oil/streak, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"zI" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"zL" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/ship/hallway/aft) -"zN" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe/charcoal, -/obj/item/storage/box/beakers, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"zR" = ( -/turf/template_noop, -/area/template_noop) -"zT" = ( -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -29 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"zU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"zX" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/camera/autoname{ - dir = 8; - network = list("cricket") - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"zZ" = ( -/obj/machinery/cryopod, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"Af" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/structure/chair/plastic{ - dir = 8 - }, -/obj/item/toy/plush/spider, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Aj" = ( -/obj/structure/sign/warning/coldtemp{ - pixel_x = -29 - }, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/corner_techfloor_grid/full, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"Am" = ( -/obj/machinery/telecomms/server/presets/common/birdstation{ - autolinkers = list("common","Broadcaster A") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"At" = ( -/obj/machinery/vending/tool, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"Au" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"Av" = ( -/obj/machinery/computer/security{ - dir = 1; - network = list("cricket") - }, -/obj/structure/sign/poster/retro/we_watch{ - pixel_y = -32 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"Aw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"AB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - pixel_y = 32 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"AE" = ( -/obj/effect/decal/cleanable/squid_ink, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"AF" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"AJ" = ( -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"AO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"AQ" = ( -/obj/machinery/telecomms/broadcaster/preset_left/birdstation{ - autolinkers = list("broadcasterA","common") - }, -/obj/machinery/camera/autoname{ - dir = 8; - network = list("cricket") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"AR" = ( -/obj/item/radio/intercom{ - pixel_x = -27 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"AT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central2, -/obj/effect/turf_decal/steeldecal/steel_decals_central1, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering/communications) -"AU" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "sgcargodoor"; - name = "Cargo Bay Blast Door" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/ship/cargo) -"AV" = ( -/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{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"AZ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28; - pixel_y = -28 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"Bb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"Be" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"Bl" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"Bo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"Br" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"BA" = ( -/obj/effect/turf_decal/corner/opaque/brown/half, -/turf/open/floor/plasteel, -/area/ship/cargo) -"BD" = ( -/obj/structure/frame/computer{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"BF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"BJ" = ( -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"BL" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"BO" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"BP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgcargodesk" - }, -/obj/machinery/door/firedoor, -/obj/item/paper_bin, -/obj/item/stamp/qm, -/obj/effect/turf_decal/corner/opaque/brown/full, -/turf/open/floor/plasteel, -/area/ship/cargo) -"BR" = ( -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"BT" = ( -/obj/machinery/button/door{ - id = "sgbridgelock"; - name = "Bridge Lockdown"; - pixel_x = 6; - pixel_y = 22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "sgwindowshut"; - name = "External Window Shutters"; - pixel_x = 6; - pixel_y = 30 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"BV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Cc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Cd" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"Co" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/atmospherics) -"Cr" = ( -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"Ct" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/turf_decal/borderfloor/full, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"Cx" = ( -/obj/structure/closet/secure_closet/brig{ - id = "sgbrig" - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"CE" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/camera/autoname{ - dir = 4; - network = list("cricket") - }, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"CJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"CK" = ( -/obj/machinery/computer/cryopod{ - pixel_y = -26 - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25 - }, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"CO" = ( -/obj/machinery/cryopod, -/turf/open/floor/eighties, -/area/ship/crew/dorm) -"CQ" = ( -/obj/machinery/telecomms/bus/preset_one/birdstation{ - autolinkers = list("processor1","common","receiverA") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"CR" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Da" = ( -/obj/machinery/airalarm/server{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"Db" = ( -/obj/machinery/telecomms/processor/preset_one/birdstation, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"Dc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/item/storage/toolbox/mechanical, -/obj/item/supplypod_beacon, -/obj/effect/turf_decal/corner/opaque/brown, -/turf/open/floor/plasteel, -/area/ship/cargo) -"Dd" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/ship/external) -"Df" = ( -/obj/machinery/telecomms/receiver/preset_left/birdstation{ - autolinkers = list("receiverA","Bus 1") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"Dg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"Di" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/hallway/fore) -"Dj" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"Dp" = ( -/obj/machinery/computer/security{ - dir = 1; - network = list("cricket") - }, -/turf/open/floor/carpet/nanoweave, -/area/ship/bridge) -"Dt" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/binary/pump/layer4{ - dir = 4; - name = "External to Filter" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"DB" = ( -/obj/effect/turf_decal/atmos/air, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"DE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/lieutenant, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"DQ" = ( -/obj/effect/decal/cleanable/generic, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"DR" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"Ei" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"Ej" = ( -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"El" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/canteen) -"Et" = ( -/obj/machinery/camera/autoname{ - dir = 8; - network = list("cricket") - }, -/obj/effect/turf_decal/corner/opaque/brown/half, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"Ex" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"EA" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/machinery/door/window/eastleft, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"EE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"EF" = ( -/obj/machinery/computer/telecomms/server{ - dir = 8; - network = "tcommsat" - }, -/obj/effect/turf_decal/corner_techfloor_grid/full{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"EI" = ( -/obj/machinery/light, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/ship/engineering/communications) -"ER" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/structure/rack, -/obj/item/multitool{ - pixel_y = 7 - }, -/obj/item/encryptionkey/wideband{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/circuitboard/machine/telecomms/relay, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/turf_decal/techfloor/hole, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"Fk" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"FE" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/aft) -"FG" = ( -/obj/machinery/door/airlock/external{ - name = "Server Room Airlock" - }, -/obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/effect/turf_decal/industrial/warning, -/obj/structure/fans/tiny, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"FN" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"FP" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew/canteen) -"FQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/chair, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"FU" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Bay" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/yellow/border, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"Gb" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"Gu" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner, -/obj/machinery/door/window/eastright, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"GB" = ( -/obj/item/poster/random_contraband, -/obj/structure/closet/cardboard, -/obj/item/cigbutt/cigarbutt, -/obj/item/toy/plush/snakeplushie, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"GK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"GN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"Hg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Hh" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Hs" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/glowstick, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"Hu" = ( -/obj/machinery/iv_drip, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"Hy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"HA" = ( -/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/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = 30 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"HB" = ( -/obj/machinery/vending/boozeomat/all_access, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"HE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"HF" = ( -/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/item/radio/intercom{ - pixel_y = 32 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"HI" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"HK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/borderfloor{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"HN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/mineral/titanium, -/area/ship/hallway/aft) -"HX" = ( -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine/longrange, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"Ib" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 33 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Ig" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Ii" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Io" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"IH" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"IR" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/hallway/starboard) -"Jr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/effect/turf_decal/steeldecal/steel_decals9, -/obj/effect/turf_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/aft) -"Jy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"JD" = ( -/obj/structure/sign/donk{ - pixel_y = 32 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"JF" = ( -/obj/structure/catwalk, -/obj/machinery/camera/autoname{ - network = list("cricket") - }, -/turf/template_noop, -/area/ship/external) -"JO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"JP" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"JU" = ( -/obj/item/paper_bin/bundlenatural, -/obj/item/pen/fountain/solgov{ - pixel_x = -8 - }, -/obj/structure/table/wood/reinforced, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"JV" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering/atmospherics) -"Kd" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"Kh" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"Kn" = ( -/obj/item/areaeditor/shuttle{ - pixel_y = 8 - }, -/obj/item/desk_flag/solgov, -/obj/structure/table/wood/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"Kp" = ( -/obj/structure/closet/crate/engineering, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"KL" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Lk" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northright, -/obj/item/clipboard, -/obj/item/multitool, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgcargodesk" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/corner/opaque/brown/full, -/turf/open/floor/plasteel, -/area/ship/cargo) -"Ly" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"LA" = ( -/obj/machinery/computer/cargo/express{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown, -/turf/open/floor/plasteel, -/area/ship/cargo) -"LC" = ( -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"LI" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air to Distro"; - target_pressure = 480 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"LL" = ( -/obj/structure/catwalk, -/obj/machinery/camera/autoname{ - dir = 8; - network = list("cricket") - }, -/turf/template_noop, -/area/ship/external) -"LM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair/comfy/teal, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/ship/crew/dorm) -"LN" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/gibber, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"LR" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"LV" = ( -/obj/structure/sign/departments/cargo{ - pixel_y = -32 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"LW" = ( -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"Mg" = ( -/obj/structure/sign/poster/solgov/solgov_enlist, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/hallway/port) -"Mi" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Ml" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"Mq" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Mu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"Mv" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/security) -"Mw" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/security) -"Mz" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/mineral/titanium, -/area/ship/hallway/aft) -"MA" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/security) -"MB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/mono, -/area/ship/cargo) -"ME" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/external) -"MN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"MU" = ( -/obj/structure/catwalk, -/obj/structure/sign/solgov_seal, -/turf/template_noop, -/area/ship/external) -"MZ" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/firedoor/window, -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgwindowshut"; - name = "External Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Nd" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/medical) -"Ne" = ( -/obj/machinery/smartfridge/chemistry, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/ship/medical) -"Nn" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/engineering) -"Nu" = ( -/obj/machinery/door/airlock/solgov{ - name = "SolGov Office" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/solgov) -"NH" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/camera/autoname{ - dir = 8; - network = list("cricket") - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/aft) -"NR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/obj/structure/chair/plastic, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"NW" = ( -/obj/structure/table, -/obj/item/storage/belt/utility/full, -/obj/item/multitool, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/corner/opaque/yellow/border, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"NZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"Ob" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/engineering) -"Od" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/storage) -"Og" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "engine fuel pump" - }, -/obj/effect/decal/cleanable/squid_ink, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Ov" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 = 1 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"Ox" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"OI" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/cargo) -"OJ" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix/inverse, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"OL" = ( -/obj/structure/chair/stool{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"ON" = ( -/obj/machinery/door/airlock/atmos, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"OT" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/reagentgrinder{ - pixel_y = 6 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"OY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/closet/crate/radiation, -/obj/item/stack/sheet/mineral/plasma/fifty, -/obj/item/stack/sheet/mineral/uranium/twenty, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Pd" = ( -/obj/structure/lattice, -/obj/machinery/camera/autoname{ - dir = 1; - network = list("cricket") - }, -/turf/template_noop, -/area/ship/external) -"Pv" = ( -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = -28 - }, -/obj/structure/table/optable, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/borderfloor/full, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"Px" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/cargo) -"PD" = ( -/obj/effect/turf_decal/corner/opaque/yellow/border, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"PE" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet/nanoweave/purple, -/area/ship/hallway/port) -"PI" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/cargo) -"PN" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"PP" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central2, -/obj/effect/turf_decal/steeldecal/steel_decals_central1, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering/communications) -"Qg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/item/radio/intercom/wideband{ - pixel_y = 20 - }, -/obj/effect/turf_decal/corner_techfloor_grid/full{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"Qi" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"Qo" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"QD" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/firedoor/window, -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "sgwindowshut"; - name = "External Shutters" - }, -/turf/open/floor/plating, -/area/ship/cargo) -"QG" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/hallway/aft) -"QK" = ( -/obj/item/chair/plastic, -/obj/item/chair/plastic, -/obj/item/chair/plastic, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/structure/closet/crate, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/tank/internals/generic, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"QU" = ( -/obj/structure/closet/crate/science{ - name = "surplus circuitry crate" - }, -/obj/item/circuitboard/computer/arcade/orion_trail, -/obj/item/circuitboard/computer/rdconsole, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/deep_fryer, -/obj/item/circuitboard/machine/destructive_analyzer, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/rad_collector, -/obj/item/circuitboard/machine/hydroponics, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"QZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"Ri" = ( -/obj/structure/lattice, -/obj/structure/catwalk, -/turf/template_noop, -/area/ship/external) -"RA" = ( -/obj/machinery/holopad/emergency/command, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"RC" = ( -/obj/machinery/camera/autoname{ - dir = 1; - network = list("cricket") - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/hallway/starboard) -"RD" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"RH" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/crew/canteen) -"RI" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"RW" = ( -/obj/structure/table, -/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/rice, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"RZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera/autoname{ - dir = 1; - network = list("cricket") - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 8; - name = "Waste to Filter" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Ss" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/aft) -"SA" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"SC" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew/solgov) -"SE" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/fluff/paper/corner, -/obj/item/clothing/neck/cloak/qm, -/obj/effect/spawner/lootdrop/maintenance/eight, -/obj/item/storage/bag/trash, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"SJ" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/window/eastright, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"SX" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/meat/slab, -/obj/item/storage/box/ingredients/vegetarian, -/obj/item/storage/cans/sixsoda, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"Tg" = ( -/obj/effect/decal/cleanable/oil/streak, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"Ti" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"TD" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/door/window/southright, -/obj/item/reagent_containers/glass/bottle/silicon{ - pixel_x = 8; - pixel_y = 14 - }, -/obj/item/reagent_containers/glass/bottle/sodium{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/sulfur{ - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/sacid{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/storage/bag/chemistry, -/obj/item/healthanalyzer{ - pixel_x = 4 - }, -/obj/item/clothing/glasses/science{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/machinery/camera/autoname{ - network = list("cricket") - }, -/obj/effect/turf_decal/corner/opaque/blue/three_quarters{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"TR" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"TW" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"Um" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"Un" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew/canteen) -"Uy" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/ship/security) -"UG" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/item/clothing/suit/armor/vest/bulletproof/solgov/rep{ - name = "\proper slim SolGov armor vest" - }, -/obj/item/clothing/under/solgov, -/obj/item/clothing/head/beret/solgov, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"UY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Vl" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced/spawner, -/obj/machinery/door/window/eastright, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Vn" = ( -/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 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"Vo" = ( -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/crew/solgov) -"Vp" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Vt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"VB" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"VE" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"VJ" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/clothing/head/hardhat/mining, -/obj/item/clothing/head/hardhat/mining, -/obj/item/clothing/head/hardhat/mining, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light, -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/obj/effect/turf_decal/corner/opaque/brown/half, -/obj/effect/turf_decal/corner/opaque/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"VO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/closed/wall/mineral/titanium, -/area/ship/engineering) -"VX" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband, -/obj/item/newspaper, -/obj/item/megaphone/command, -/obj/item/radio/headset/solgov/alt, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"Wj" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/hallway/aft) -"Wt" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/chem_master, -/obj/effect/turf_decal/corner/opaque/blue/three_quarters{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"Ww" = ( -/obj/structure/sink/kitchen{ - dir = 4; - name = "chemical sink"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/corner/opaque/blue/three_quarters, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"WB" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"WH" = ( -/obj/machinery/door/airlock/public/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "sgbridgelock" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/fore) -"WN" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/crew/solgov) -"WX" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/box/bodybags, -/obj/item/storage/firstaid/o2, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/roller, -/obj/effect/turf_decal/corner/opaque/black{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/black, -/turf/open/floor/plasteel, -/area/ship/storage) -"WY" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/hallway/fore) -"Xj" = ( -/obj/machinery/light, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/stamp/law, -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/obj/item/ammo_box/magazine/co9mm, -/obj/item/desk_flag/solgov{ - pixel_x = 12; - pixel_y = -6 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"XD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1; - network = list("cricket") - }, -/turf/open/floor/wood, -/area/ship/crew/solgov) -"XM" = ( -/obj/structure/table/glass, -/obj/structure/sign/warning/chemdiamond{ - pixel_y = 32 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/southleft, -/obj/item/reagent_containers/glass/bottle/aluminium{ - pixel_x = -8; - pixel_y = 14 - }, -/obj/item/reagent_containers/glass/bottle/bromine{ - pixel_y = 14 - }, -/obj/item/reagent_containers/glass/bottle/carbon{ - pixel_x = 8; - pixel_y = 14 - }, -/obj/item/reagent_containers/glass/bottle/chlorine{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/copper{ - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/fluorine{ - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/hydrogen{ - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/sugar{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/iodine{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/lithium{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/reagent_containers/glass/bottle/nitrogen{ - pixel_y = -4 - }, -/obj/item/reagent_containers/glass/bottle/oxygen{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"XN" = ( -/obj/machinery/door/airlock/grunge{ - name = "Telecommunications" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/communications) -"XR" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"Yg" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Yr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"YF" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering/atmospherics) -"YP" = ( -/obj/item/storage/secure/safe{ - pixel_x = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"YU" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/medical) -"YV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/item/storage/overmap_ship{ - pixel_x = -22 - }, -/obj/effect/turf_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/turf_decal/steeldecal/steel_decals9, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/aft) -"YZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"Zj" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/carpet/nanoweave/orange, -/area/ship/hallway/aft) -"Zq" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/ship/security) -"Zx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/corner/opaque/brown/half{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/cargo) -"ZB" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/corner/opaque/blue{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"ZF" = ( -/obj/machinery/button/door{ - id = "sgengistore"; - name = "Storeroom Shutter"; - pixel_y = 22 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/corner/opaque/yellow/border{ - dir = 5 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"ZL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white, -/obj/effect/turf_decal/corner/transparent/bar/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"ZP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Bridge" - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"ZV" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/engineering/engine) -"ZZ" = ( -/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/camera/autoname{ - network = list("cricket") - }, -/obj/machinery/door_timer{ - id = "Holding Cell"; - pixel_y = 32 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) - -(1,1,1) = {" -zR -aw -aw -dn -dn -oe -oe -oe -zR -zR -zR -zR -zR -zR -zR -LL -oe -oe -dn -dn -aw -aw -zR -zR -"} -(2,1,1) = {" -ZV -lM -Gu -bC -SJ -yC -ME -ky -ky -ky -ky -ky -ky -ky -ky -ky -oR -yC -mz -Vl -EA -iN -ZV -zR -"} -(3,1,1) = {" -ZV -aE -aE -dW -eF -yC -gW -kz -nz -qu -tx -wS -zo -BJ -DB -kz -MZ -yC -Qo -dW -aE -Og -ZV -zR -"} -(4,1,1) = {" -ZV -aG -bt -eh -eT -fS -hv -kz -nC -qv -tE -xa -zx -BL -DR -kz -Dt -WB -rT -UY -AO -kj -ZV -zR -"} -(5,1,1) = {" -ZV -aI -cu -eA -fn -ZV -hx -kG -nL -qL -tG -qL -zA -BO -LI -pd -Yg -yC -aI -Vp -AE -rN -ZV -zR -"} -(6,1,1) = {" -ZV -aR -NR -pk -fw -ZV -hH -aN -nM -Yr -RD -OJ -zD -BR -Ej -gt -RZ -yC -lC -Vt -RI -hn -ZV -zR -"} -(7,1,1) = {" -ZV -yC -mM -ie -fy -ZV -eG -Cc -nN -Cr -YF -ok -zI -VB -Af -yT -JO -Nn -Nn -VO -Ob -Nn -ZV -zR -"} -(8,1,1) = {" -Pd -yC -mM -ie -Ti -yC -rj -Jy -lJ -kz -ky -ky -ky -kz -jj -Vn -JP -FU -bT -na -ww -Nn -zR -zR -"} -(9,1,1) = {" -Dd -yC -OY -GK -yC -yC -kz -nb -kz -kz -up -xy -zL -Co -kz -ON -JV -Nn -gM -Ox -jr -Ob -zR -zR -"} -(10,1,1) = {" -QG -QG -HN -Wj -QG -uo -Zj -lG -nZ -qW -uy -uy -uy -uy -Ex -Gb -Kd -Nn -yt -rU -NW -Nn -Ob -zR -"} -(11,1,1) = {" -sh -iW -YV -Jr -Ss -cv -wm -Bo -os -qY -qY -xM -qY -qY -EE -GN -Kh -Ob -At -tL -PD -eH -Nn -zR -"} -(12,1,1) = {" -Mz -NH -gS -lg -QG -FE -an -QG -oy -oD -oD -oD -oD -oy -oy -sT -bd -Ob -ZF -uO -eD -zX -Ob -zR -"} -(13,1,1) = {" -RH -RH -RH -Un -Un -PE -lL -jq -ln -wF -uB -xU -zT -CE -oy -Hh -KL -Od -zh -Od -Od -Od -Od -zR -"} -(14,1,1) = {" -RH -LN -CR -qG -FP -fV -vg -mi -oD -LM -uC -yh -zU -CK -oD -uc -LC -Od -Tg -Kp -Hu -WX -Od -zR -"} -(15,1,1) = {" -nO -ot -BF -fG -co -Bb -iM -mJ -oD -rC -uM -yn -zZ -CO -oy -Hy -Ly -Od -yV -QU -Aw -QK -Od -zR -"} -(16,1,1) = {" -nO -gX -ZL -fG -oF -pf -vg -mO -oy -rX -uP -oy -oD -oy -oy -HA -LC -Od -Hs -cB -GB -SE -Od -zR -"} -(17,1,1) = {" -nO -Mq -ZL -xT -RH -JD -eX -mQ -mU -nl -mU -mU -Am -Db -mU -HE -LC -Od -Ei -SX -DQ -gN -eq -zR -"} -(18,1,1) = {" -nO -HB -ZL -RW -RH -kg -iS -mU -lh -QZ -Aj -FG -Au -Da -nl -HE -LC -Od -hb -Od -Od -eq -eq -zR -"} -(19,1,1) = {" -RH -TR -VE -LR -El -MN -kY -nl -ER -PP -bX -nl -AF -CQ -nl -HF -LC -OI -oI -HI -Cd -cQ -QD -zR -"} -(20,1,1) = {" -Un -Un -RH -Un -Un -AB -NZ -nl -eN -AT -fp -yw -AJ -EI -nl -BV -Hg -df -qZ -MB -yH -BA -QD -zR -"} -(21,1,1) = {" -YU -Wt -ZB -Ww -Nd -ga -NZ -nl -Qg -fa -EF -yw -AQ -Df -mU -Ib -LV -OI -nc -jA -rv -gO -QD -zR -"} -(22,1,1) = {" -YU -zN -Qi -YZ -mo -MN -at -nl -XN -nl -nl -yP -nl -mU -mU -Ig -LC -BP -gu -Dc -Bl -VJ -OI -oe -"} -(23,1,1) = {" -YU -OT -oL -HK -Ne -ga -NZ -hA -pI -sF -vq -yR -AR -Dg -hA -HE -LC -Lk -Zx -iI -Mu -LW -AU -oe -"} -(24,1,1) = {" -YU -XM -hz -Pv -YU -nd -Ov -WH -pK -sV -vA -yX -AV -Di -WH -Ii -LC -bl -FN -fu -bQ -us -AU -oe -"} -(25,1,1) = {" -YU -TD -vi -Ct -YU -CJ -jz -WY -qd -qr -qr -ZP -qr -qd -qd -Io -Mi -Px -LA -Et -cp -tR -AU -oe -"} -(26,1,1) = {" -YU -YU -YU -YU -wd -Mg -jR -OL -qd -tg -vV -zc -AZ -Dj -qd -FQ -RC -PI -Px -OI -OI -Px -Px -JF -"} -(27,1,1) = {" -zR -WN -bn -vm -fI -Nu -kx -nu -qr -tq -we -uJ -Be -Dp -qr -IH -Ml -be -TW -YP -Av -Mw -oe -oe -"} -(28,1,1) = {" -zR -WN -uZ -RA -XD -SC -SC -WY -qd -ts -BT -zk -Br -qd -qd -IR -Mv -Mw -ZZ -Fk -Xj -MA -oe -zR -"} -(29,1,1) = {" -zR -WN -tm -SA -ar -wf -SC -oe -fz -qd -wE -VX -BD -qd -MU -oe -Mw -PN -Um -UG -ua -MA -oe -zR -"} -(30,1,1) = {" -zR -WN -SC -JU -Kn -Vo -WN -Dd -zR -qr -mm -mm -mm -qr -zR -Dd -MA -pt -Uy -Zq -Mw -MA -oe -zR -"} -(31,1,1) = {" -zR -Dd -WN -eE -DE -gG -WN -Dd -zR -zR -zR -zR -zR -zR -zR -Dd -MA -mH -fr -Cx -Mw -sv -Dd -zR -"} -(32,1,1) = {" -zR -Dd -WN -HX -ek -hq -WN -Dd -Dd -Dd -Dd -Dd -Dd -Dd -Dd -Dd -MA -XR -jP -kO -MA -Ri -zR -zR -"} -(33,1,1) = {" -zR -Dd -WN -by -by -by -WN -ko -zR -zR -zR -zR -zR -zR -zR -Pd -MA -MA -MA -MA -MA -Dd -zR -zR -"} -(34,1,1) = {" -zR -Dd -oe -oe -oe -oe -oe -Dd -zR -zR -zR -zR -zR -zR -zR -Dd -oe -oe -oe -oe -oe -Dd -zR -zR -"} diff --git a/_maps/shuttles/shiptest/solgov_liberty.dmm b/_maps/shuttles/shiptest/solgov_liberty.dmm deleted file mode 100644 index 7f54c0c21d4d..000000000000 --- a/_maps/shuttles/shiptest/solgov_liberty.dmm +++ /dev/null @@ -1,2371 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"au" = ( -/obj/effect/turf_decal/corner/transparent/neutral/full, -/obj/structure/frame/computer, -/obj/effect/turf_decal/box, -/turf/open/floor/pod/light, -/area/ship/bridge) -"az" = ( -/obj/effect/turf_decal/corner/transparent/neutral/full, -/obj/machinery/computer/helm, -/obj/effect/turf_decal/box, -/turf/open/floor/pod/light, -/area/ship/bridge) -"aW" = ( -/obj/machinery/holopad/emergency/command, -/obj/machinery/light/small{ - dir = 8; - pixel_y = -10 - }, -/obj/item/clothing/under/rank/command/captain, -/obj/item/radio/headset/heads/captain/alt, -/obj/item/storage/backpack/captain, -/obj/item/clothing/gloves/color/captain, -/obj/item/stamp/captain, -/obj/item/pen/fountain/captain, -/obj/item/clothing/head/caphat, -/obj/item/clothing/suit/toggle/solgov, -/obj/item/clothing/accessory/medal/gold/captain, -/obj/item/areaeditor/shuttle{ - pixel_y = 10 - }, -/obj/item/megaphone/command{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/shoes/laceup, -/obj/item/gun/energy/e_gun, -/obj/item/storage/belt/sabre, -/obj/item/folder/blue{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/closet/wall{ - dir = 4; - icon_door = "blue_wall"; - name = "captain's closet"; - pixel_x = -28 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"bb" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/structure/railing, -/obj/item/radio/intercom/wideband{ - pixel_x = 28; - pixel_y = 5 - }, -/obj/effect/landmark/start/captain, -/obj/machinery/button/door{ - id = "piratecargo"; - name = "Blast Door Control"; - pixel_x = 37; - pixel_y = -5 - }, -/obj/machinery/button/door{ - id = "pirateshutters"; - name = "Window Lockdown"; - pixel_x = 27; - pixel_y = -5 - }, -/turf/open/floor/carpet/nanoweave/blue, -/area/ship/bridge) -"br" = ( -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"bz" = ( -/turf/open/floor/plasteel/stairs, -/area/ship/bridge) -"bG" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/box, -/turf/open/floor/plating, -/area/ship/bridge) -"cF" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/external) -"dD" = ( -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"eV" = ( -/obj/structure/cable, -/obj/machinery/power/shuttle/engine/electric{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"fd" = ( -/obj/structure/fans/tiny, -/obj/docking_port/mobile{ - launch_status = 0; - port_direction = 2 - }, -/obj/machinery/door/poddoor/shutters{ - id = "piratecargo"; - name = "Cargo Bay" - }, -/turf/open/floor/engine/hull/interior, -/area/ship/cargo) -"fi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/item/radio/headset/solgov/alt, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/solgov/formal, -/obj/item/clothing/head/solgov, -/obj/item/gun/ballistic/revolver/detective{ - current_skin = null; - name = "\improper SolGov Officer's Pistol" - }, -/obj/item/clothing/suit/toggle/solgov, -/obj/item/ammo_box/c38, -/obj/item/storage/box/ids{ - pixel_x = -7 - }, -/obj/item/melee/classic_baton/telescopic, -/obj/item/folder/blue{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/item/pen/solgov{ - pixel_x = 5 - }, -/obj/structure/closet/wall{ - dir = 4; - icon_door = "blue_wall"; - name = "XO's closet"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"fp" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/effect/landmark/start/head_of_personnel, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"fq" = ( -/turf/open/floor/engine/hull, -/area/ship/external) -"fG" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/security) -"fR" = ( -/obj/machinery/door/poddoor{ - id = "pirate_porttube"; - name = "Port Launch Tube" - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine/hull/interior, -/area/ship/security) -"hb" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/security) -"jz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/airlock/solgov{ - name = "Bridge" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"kF" = ( -/obj/machinery/door/poddoor{ - id = "pirate_stbdtube"; - name = "Starboard Launch Tube" - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine/hull/interior, -/area/ship/security) -"kK" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = "pirateshutters"; - name = "Blast Shutters" - }, -/obj/structure/window/reinforced/fulltile/shuttle, -/turf/open/floor/plating, -/area/ship/security) -"mg" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "pirate_porttube" - }, -/obj/effect/turf_decal/box, -/obj/structure/sign/warning/deathsposal{ - name = "\improper LAUNCH TUBE: LEADS TO SPACE sign"; - pixel_y = -32; - sign_change_name = "Warning - Launch Tube: Leads to Space" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"ml" = ( -/obj/effect/turf_decal/industrial/stand_clear{ - dir = 4 - }, -/obj/machinery/door/window/westleft, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - id = "pirate_porttube"; - name = "port launch tube button"; - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"mJ" = ( -/obj/effect/turf_decal/corner/transparent/neutral/full, -/obj/structure/railing, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/landmark/start/depsec, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"mU" = ( -/obj/effect/turf_decal/corner/transparent/neutral/full, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"nt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Engine Access" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"nv" = ( -/obj/effect/turf_decal/corner/transparent/neutral/full, -/obj/structure/railing, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/effect/landmark/start/depsec, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"nB" = ( -/obj/effect/turf_decal/corner/transparent/neutral/full, -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/landmark/start/depsec, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"nC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/stand_clear{ - dir = 8 - }, -/obj/machinery/door/window/eastright, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/button/massdriver{ - id = "pirate_stbdtube"; - name = "starboard launch tube button"; - pixel_x = -15; - pixel_y = 26 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"nQ" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "pirate_stbdtube" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/sign/warning/deathsposal{ - name = "\improper LAUNCH TUBE: LEADS TO SPACE sign"; - pixel_y = -32; - sign_change_name = "Warning - Launch Tube: Leads to Space" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"nW" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = "pirateshutters"; - name = "Blast Shutters" - }, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile/shuttle, -/turf/open/floor/plating, -/area/ship/security) -"oo" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/sign/poster/solgov/solgov_enlist{ - pixel_x = 32 - }, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"oQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/engine/hull, -/area/ship/external) -"pm" = ( -/obj/effect/turf_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 12 - }, -/obj/item/clothing/suit/space/hardsuit/solgov, -/obj/item/clothing/mask/gas/sechailer/swat/spacepol, -/obj/item/tank/jetpack/oxygen, -/obj/structure/closet/wall/red{ - dir = 4; - name = "suit locker"; - pixel_x = -28; - req_one_access_txt = "1" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"pA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/stairs, -/area/ship/security) -"pH" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/vending/security/marine/solgov{ - all_items_free = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"pS" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 12 - }, -/obj/item/clothing/under/solgov/elite, -/obj/item/clothing/under/solgov/elite, -/obj/item/clothing/accessory/armband, -/obj/item/clothing/accessory/armband, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/glasses/hud/security/night, -/obj/item/clothing/glasses/hud/security/night, -/obj/item/clothing/glasses/hud/security/night, -/obj/item/clothing/shoes/combat/swat, -/obj/item/clothing/shoes/combat/swat, -/obj/item/clothing/shoes/combat/swat, -/obj/item/clothing/gloves/tackler/combat, -/obj/item/clothing/gloves/tackler/combat, -/obj/item/clothing/gloves/tackler/combat, -/obj/structure/closet/wall/red{ - dir = 8; - name = "armory locker"; - pixel_x = 28; - req_one_access_txt = "1" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"pW" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/item/clothing/suit/space/hardsuit/solgov, -/obj/item/clothing/mask/gas/sechailer/swat/spacepol, -/obj/item/tank/jetpack/oxygen, -/obj/structure/closet/wall/red{ - dir = 4; - name = "suit locker"; - pixel_x = -28; - req_one_access_txt = "1" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"qP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"rc" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/bridge) -"rd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"rF" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/item/kitchen/knife/combat, -/obj/item/kitchen/knife/combat, -/obj/item/kitchen/knife/combat, -/obj/item/storage/box/zipties{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/storage/box/flashbangs, -/obj/structure/closet/wall/red{ - dir = 8; - name = "armory locker"; - pixel_x = 28; - req_one_access_txt = "1" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"rL" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/stand_clear{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "piratecargo"; - name = "Blast Door Control"; - pixel_x = -25; - pixel_y = -10 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"sc" = ( -/obj/effect/turf_decal/industrial/warning/cee, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/item/clothing/suit/space/hardsuit/solgov, -/obj/item/clothing/mask/gas/sechailer/swat/spacepol, -/obj/item/tank/jetpack/oxygen, -/obj/structure/closet/wall/red{ - dir = 4; - name = "suit locker"; - pixel_x = -28; - req_one_access_txt = "1" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"sv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/security) -"sx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/status_display/shuttle{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - pixel_x = -12 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/screwdriver{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"sI" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/item/clothing/head/helmet/solgov, -/obj/item/clothing/head/helmet/solgov, -/obj/item/clothing/head/helmet/solgov, -/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/mask/gas/sechailer/swat/spacepol, -/obj/item/clothing/mask/gas/sechailer/swat/spacepol, -/obj/item/clothing/mask/gas/sechailer/swat/spacepol, -/obj/item/storage/belt/security/webbing, -/obj/item/storage/belt/security/webbing, -/obj/item/storage/belt/security/webbing, -/obj/item/radio/headset/headset_sec/alt, -/obj/item/radio/headset/headset_sec/alt, -/obj/item/radio/headset/headset_sec/alt, -/obj/item/storage/backpack/ert/security, -/obj/item/storage/backpack/ert/security, -/obj/item/storage/backpack/ert/security, -/obj/structure/closet/wall/red{ - dir = 8; - name = "armory locker"; - pixel_x = 28; - req_one_access_txt = "1" - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/security) -"tD" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/crew) -"tT" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew) -"tY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/terminal, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"tZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/airlock/security{ - name = "Armory" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"ui" = ( -/obj/machinery/door/airlock/hatch{ - name = "External Access Hatch" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"uo" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"ut" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/closet/emcloset/wall{ - pixel_y = 28 - }, -/obj/machinery/advanced_airlock_controller{ - pixel_y = -25 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"vo" = ( -/obj/machinery/door/airlock/hatch{ - name = "External Access Hatch" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"vx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=port"; - location = "forward" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"vW" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/machinery/status_display/shuttle{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"wq" = ( -/obj/structure/toilet, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/door/window/southright, -/obj/structure/curtain/bounty, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew) -"wP" = ( -/obj/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/door/window/southleft, -/obj/structure/curtain/bounty, -/obj/item/soap, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew) -"wZ" = ( -/obj/structure/sign/poster/official/report_crimes, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/crew) -"yi" = ( -/obj/structure/chair/plastic, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew) -"yU" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew) -"za" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = "pirateshutters"; - name = "Blast Shutters" - }, -/obj/structure/window/reinforced/fulltile/shuttle, -/turf/open/floor/plating, -/area/ship/crew) -"zi" = ( -/obj/structure/table/reinforced, -/obj/machinery/vending/wallmed{ - pixel_y = 30 - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/structure/sign/departments/medbay/alt{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/healthanalyzer/advanced, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew) -"zR" = ( -/obj/structure/rack, -/obj/item/storage/firstaid/brute{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew) -"Aq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/landmark/observer_start, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"AL" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew) -"Bb" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/bridge) -"Bi" = ( -/obj/structure/table, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/item/kitchen/knife/plastic{ - pixel_x = -3 - }, -/obj/item/kitchen/fork/plastic{ - pixel_x = 3 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew) -"Bw" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/clothing/under/solgov, -/obj/item/clothing/under/solgov, -/obj/item/clothing/under/solgov, -/obj/item/clothing/under/solgov, -/obj/item/clothing/under/solgov, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/head/beret/solgov/plain, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/item/radio/headset, -/obj/structure/closet/wall{ - dir = 8; - icon_door = "grey_wall"; - pixel_x = 28 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew) -"By" = ( -/obj/structure/table/optable, -/obj/item/radio/headset/headset_medsec/alt, -/obj/item/clothing/accessory/armband/medblue, -/obj/item/clothing/head/beret/solgov, -/obj/item/clothing/suit/armor/vest/bulletproof/solgov/rep{ - name = "\proper slim SolGov armor vest" - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/shoes/sneakers/white, -/obj/item/storage/belt/medical, -/obj/item/storage/backpack/security, -/obj/item/clothing/under/solgov, -/obj/structure/closet/wall/white/med{ - dir = 4; - name = "medical locker"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew) -"Cd" = ( -/obj/structure/cable, -/obj/machinery/power/shuttle/engine/electric{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Ce" = ( -/obj/machinery/door/window/eastright, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew) -"Cg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"Cj" = ( -/obj/structure/chair/plastic{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew) -"Cx" = ( -/obj/structure/chair/plastic{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew) -"CK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/machinery/power/terminal, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"Df" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"DG" = ( -/mob/living/simple_animal/bot/cleanbot{ - desc = "Cleaning up the sector, one ship at a time."; - name = "\improper Mopfficer Sweepsky" - }, -/turf/open/floor/carpet/nanoweave/beige, -/area/ship/crew) -"Ec" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew) -"Ef" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/item/reagent_containers/blood/universal{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/universal, -/obj/item/reagent_containers/blood/universal{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/crew) -"Er" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"Ey" = ( -/obj/structure/mirror{ - pixel_y = -28 - }, -/obj/structure/dresser, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"EG" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/structure/curtain/bounty, -/obj/machinery/computer/cryopod{ - pixel_y = -25 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"EH" = ( -/obj/structure/bed, -/obj/structure/curtain/bounty, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/plasteel/dark, -/area/ship/crew) -"Fx" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/cargo) -"FH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass{ - name = "Crew Quarters" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"FR" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/hallway/port) -"He" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/cargo) -"Hh" = ( -/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/status_display/shuttle{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/cargo) -"Hw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/stairs, -/area/ship/cargo) -"HU" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/cargo) -"HY" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"Id" = ( -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/obj/structure/bed, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/item/bedsheet/grey, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"Ie" = ( -/obj/structure/bed, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/obj/item/bedsheet/grey, -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"IF" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/hallway/starboard) -"IS" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/hallway/port) -"IV" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Ji" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Jr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/storage/belt/security, -/obj/item/storage/backpack/security, -/obj/item/radio/headset/headset_sec/alt, -/obj/item/clothing/glasses/hud/security/sunglasses, -/obj/item/clothing/accessory/armband, -/obj/item/clothing/suit/armor/vest/bulletproof/solgov/rep{ - name = "\proper slim SolGov armor vest" - }, -/obj/item/clothing/head/solgov, -/obj/item/radio/headset/solgov/alt, -/obj/item/clothing/under/solgov/elite, -/obj/item/clothing/shoes/combat, -/obj/item/gun/ballistic/automatic/pistol/solgov, -/obj/item/ammo_box/magazine/pistol556mm, -/obj/item/ammo_box/magazine/pistol556mm, -/obj/item/melee/classic_baton/telescopic, -/obj/structure/closet/wall{ - dir = 4; - icon_door = "red_wall"; - name = "brig officer's closet"; - pixel_x = -28 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/cargo) -"Jx" = ( -/obj/effect/landmark/start/warden, -/obj/structure/chair/office, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/cargo) -"Ko" = ( -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"Ks" = ( -/obj/machinery/door/window/brigdoor/security/cell/eastright{ - dir = 8; - id = "Cell 1"; - req_one_access_txt = "2" - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"KD" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"KS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = 25 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"KV" = ( -/obj/item/reagent_containers/food/snacks/canned/beans{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/canned/beans{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/canned/beans{ - pixel_x = -2 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 1; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/structure/closet/crate{ - name = "food crate" - }, -/obj/item/storage/cans/sixbeer, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/obj/item/reagent_containers/food/snacks/rationpack, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"Le" = ( -/turf/closed/wall/mineral/titanium, -/area/ship/hallway/starboard) -"Ll" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northright{ - name = "Engine Access" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"LD" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2 - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"LU" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"Mh" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/terminal, -/obj/structure/closet/firecloset/wall{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Mp" = ( -/obj/machinery/atmospherics/components/binary/pump/on/layer2, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"MC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen/solgov, -/obj/item/folder/red{ - pixel_x = -5; - pixel_y = -4 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -28 - }, -/obj/item/kitchen/knife/letter_opener, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/cargo) -"Nq" = ( -/obj/structure/table, -/obj/machinery/computer/secure_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/obj/item/stamp/hos{ - name = "warden's rubber stamp"; - pixel_x = -13; - pixel_y = 10 - }, -/obj/item/desk_flag/solgov{ - pixel_x = -14 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/cargo) -"Nz" = ( -/obj/machinery/door_timer{ - id = "Cell 1"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"NN" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/ship/cargo) -"Og" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/cargo) -"Ol" = ( -/obj/machinery/atmospherics/components/binary/pump/on/layer2, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"Oo" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/terminal, -/obj/item/wrench, -/obj/structure/closet/firecloset/wall{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"OA" = ( -/obj/machinery/power/smes/engineering{ - charge = 1e+006 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"OO" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"Pf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Py" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Port Engines" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Qj" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"QO" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Port Engines" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"Rn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Engine Access" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"RX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=starboard"; - location = "port" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"Sc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"Sw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"SA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"SR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=forward"; - location = "starboard" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"Ty" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Starboard Engines" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"TP" = ( -/obj/machinery/door/poddoor/shutters{ - id = "piratecargo"; - name = "Cargo Bay" - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine/hull/interior, -/area/ship/cargo) -"TT" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"Ut" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Starboard Engines" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"Uv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"US" = ( -/obj/machinery/power/smes/engineering{ - charge = 1e+006 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"Vp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/closet/crate/engineering/electrical, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/obj/item/clothing/glasses/welding, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"VC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/ship/hallway/port) -"VO" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/telecomms/allinone, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"Wa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"WC" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/closet/crate{ - name = "fuel crate" - }, -/obj/item/stack/sheet/mineral/plasma/fifty, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"WK" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/closet/crate{ - name = "emergency space suit crate" - }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/oxygen/red, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/item/pickaxe/emergency, -/obj/item/pickaxe/emergency, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"WM" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northright{ - name = "Engine Access" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/shuttle/precharged{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"WZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 5 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) -"Xx" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) -"XB" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters{ - id = "pirateshutters"; - name = "Blast Shutters" - }, -/obj/structure/window/reinforced/fulltile/shuttle, -/turf/open/floor/plating, -/area/ship/bridge) -"XJ" = ( -/turf/template_noop, -/area/template_noop) -"YQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"YS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/ship/hallway/starboard) -"Zc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/power/terminal, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ship/hallway/port) -"Zf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/machinery/power/terminal, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ship/hallway/port) -"ZB" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/stand_clear{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "piratecargo"; - name = "Blast Door Control"; - pixel_x = 25; - pixel_y = -10 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/cargo) - -(1,1,1) = {" -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -IS -IS -IS -IS -IS -IS -IS -XJ -"} -(2,1,1) = {" -XJ -XJ -XJ -XJ -cF -cF -cF -cF -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -IS -FR -IV -Mh -OA -Vp -Zc -nt -Cd -"} -(3,1,1) = {" -XJ -XJ -XJ -XJ -XJ -fq -fq -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -IS -FR -Ji -Mp -Pf -VC -Zf -Ll -Cd -"} -(4,1,1) = {" -XJ -XJ -XJ -XJ -XJ -fq -fq -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -IS -IS -FR -Py -FR -IS -IS -XJ -"} -(5,1,1) = {" -XJ -XJ -XJ -XJ -XJ -fG -kK -fG -XJ -XJ -tD -ui -tD -XJ -XJ -XJ -XJ -XJ -XJ -IS -Qj -IS -XJ -XJ -XJ -"} -(6,1,1) = {" -XJ -XJ -XJ -XJ -XJ -fR -mg -hb -fG -XJ -tT -uo -tT -tD -tT -tT -Fx -Fx -Fx -NN -QO -NN -Fx -Fx -XJ -"} -(7,1,1) = {" -XJ -XJ -XJ -XJ -rc -hb -ml -hb -hb -hb -tT -ut -tT -zi -By -Ec -NN -He -Jr -MC -RX -VO -Df -NN -Fx -"} -(8,1,1) = {" -XB -XB -Bb -XB -Bb -Bb -mJ -pm -pW -sc -tT -vo -wZ -zR -Ce -Ef -NN -Hh -Jx -Nq -Sc -Wa -HY -rL -TP -"} -(9,1,1) = {" -XB -au -aW -bz -fi -jz -mU -pA -qP -sv -tZ -vx -Er -Aq -Cg -Er -FH -Hw -Ko -Nz -Sw -WC -br -dD -fd -"} -(10,1,1) = {" -XB -az -bb -bG -fp -rc -nv -pH -rd -sx -tT -vW -yi -AL -Cj -Ey -NN -HU -Ks -NN -Sw -WK -KV -dD -TP -"} -(11,1,1) = {" -XB -XB -Bb -XB -Bb -Bb -nB -pS -rF -sI -tT -wq -yi -Bi -Cx -EG -NN -Id -KD -Og -SA -WZ -OO -ZB -TP -"} -(12,1,1) = {" -XJ -XJ -XJ -XJ -rc -hb -nC -hb -hb -hb -tT -wP -yU -Bw -DG -EH -NN -Ie -KS -Og -SR -Xx -oo -NN -Fx -"} -(13,1,1) = {" -XJ -XJ -XJ -XJ -XJ -kF -nQ -hb -fG -XJ -tD -tD -za -tD -za -tD -Fx -Fx -Fx -NN -Ty -NN -Fx -Fx -XJ -"} -(14,1,1) = {" -XJ -XJ -XJ -XJ -XJ -fG -nW -fG -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -Le -TT -Le -XJ -XJ -XJ -"} -(15,1,1) = {" -XJ -XJ -XJ -XJ -XJ -fq -oQ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -Le -Le -IF -Ut -IF -Le -Le -XJ -"} -(16,1,1) = {" -XJ -XJ -XJ -XJ -XJ -fq -fq -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -Le -IF -LD -Ol -Uv -YQ -tY -Rn -eV -"} -(17,1,1) = {" -XJ -XJ -XJ -XJ -cF -cF -cF -cF -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -Le -IF -LU -Oo -US -YS -CK -WM -eV -"} -(18,1,1) = {" -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -Le -Le -Le -Le -Le -Le -Le -XJ -"} diff --git a/_maps/shuttles/shiptest/srm_glaive.dmm b/_maps/shuttles/shiptest/srm_glaive.dmm index 6c7b3d990f64..324a5028c29c 100644 --- a/_maps/shuttles/shiptest/srm_glaive.dmm +++ b/_maps/shuttles/shiptest/srm_glaive.dmm @@ -12,10 +12,7 @@ /obj/machinery/cryopod{ dir = 8 }, -/obj/machinery/computer/cryopod{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/computer/cryopod/directional/east, /turf/open/floor/wood/ebony, /area/ship/crew/dorm) "al" = ( @@ -23,9 +20,7 @@ dir = 1 }, /mob/living/simple_animal/chicken, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "ap" = ( /obj/machinery/airalarm/directional/east, @@ -69,9 +64,7 @@ "aM" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "aS" = ( /obj/item/storage/box/masks, @@ -99,9 +92,7 @@ /area/ship/medical) "aY" = ( /obj/structure/destructible/tribal_torch, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/toilet) "bi" = ( /obj/machinery/mineral/ore_redemption, @@ -138,9 +129,7 @@ /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/closet/mob_capture, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "bW" = ( /obj/structure/railing/corner{ @@ -150,9 +139,7 @@ /obj/item/seeds/tower, /obj/item/seeds/tower, /obj/item/hatchet, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "bY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -181,18 +168,13 @@ /mob/living/simple_animal/crab{ name = "Jannet" }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "cj" = ( /obj/structure/railing{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "co" = ( /obj/machinery/power/terminal, @@ -253,7 +235,7 @@ /obj/structure/cable/orange{ icon_state = "0-4" }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood/ebony, /area/ship/crew/dorm) "cW" = ( @@ -262,15 +244,27 @@ "dq" = ( /turf/closed/wall/r_wall, /area/ship/crew/toilet) +"ds" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass/ship/jungle, +/area/ship/roumain) +"dt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + name = "Body Shutters"; + id = "body_shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/crew/dorm) "dV" = ( /obj/structure/chair/pew/right{ dir = 1 }, /obj/structure/flora/ausbushes/brflowers, /mob/living/simple_animal/hostile/retaliate/goat, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "eU" = ( /obj/effect/turf_decal/industrial/warning, @@ -309,10 +303,18 @@ /obj/item/reagent_containers/food/snacks/meat/slab, /obj/item/reagent_containers/food/snacks/meat/slab, /obj/item/reagent_containers/food/snacks/meat/slab/bear, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) +"ff" = ( +/obj/docking_port/mobile{ + callTime = 250; + name = "Glaive-class"; + port_direction = 4; + dir = 8; + dheight = 4 + }, +/turf/closed/wall/r_wall, +/area/ship/engineering) "fi" = ( /turf/closed/wall/r_wall, /area/ship/medical) @@ -402,12 +404,10 @@ dir = 1 }, /obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "go" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable/orange{ icon_state = "0-6" }, @@ -425,6 +425,12 @@ }, /turf/open/floor/engine/hull, /area/ship/external/dark) +"gK" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/open/floor/engine/hull, +/area/ship/external/dark) "gO" = ( /obj/structure/cable/orange{ icon_state = "1-4" @@ -447,7 +453,8 @@ }, /obj/machinery/door/poddoor/shutters{ name = "Body Shutters"; - id = "body_shutters" + id = "body_shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ship/roumain) @@ -464,7 +471,8 @@ }, /obj/machinery/door/poddoor/shutters{ name = "Body Shutters"; - id = "body_shutters" + id = "body_shutters"; + dir = 8 }, /turf/open/floor/plating, /area/ship/roumain) @@ -502,9 +510,7 @@ /obj/item/reagent_containers/food/snacks/egg, /obj/item/seeds/lavaland/puce, /obj/item/seeds/lavaland/puce, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "hT" = ( /obj/structure/cable/orange{ @@ -547,9 +553,7 @@ pixel_x = 6; pixel_y = 7 }, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "ir" = ( /obj/structure/cable/orange{ @@ -571,7 +575,8 @@ dir = 4 }, /obj/machinery/door/airlock/glass{ - name = "Dormitories" + name = "Dormitories"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -599,10 +604,7 @@ dir = 8 }, /obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "iR" = ( /obj/structure/cable/orange{ @@ -627,7 +629,7 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/turf/open/floor/plating/grass/jungle/actuallydark, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "iY" = ( /obj/effect/spawner/structure/window/reinforced, @@ -702,6 +704,10 @@ /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 1 }, +/obj/machinery/door/poddoor/shutters{ + id = "port_shutters"; + name = "Engine Shutters" + }, /turf/open/floor/plating, /area/ship/engineering) "jy" = ( @@ -721,18 +727,14 @@ 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" }, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "ko" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/destructible/tribal_torch, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "kD" = ( /obj/effect/turf_decal/siding/wood{ @@ -768,21 +770,22 @@ /obj/item/flashlight/seclite, /obj/item/borg/upgrade/modkit/indoors, /obj/item/gun/energy/kinetic_accelerator, -/obj/item/t_scanner/adv_mining_scanner, /obj/item/storage/bag/ore, /obj/structure/cable/orange{ icon_state = "4-10" }, /obj/item/shovel, /obj/item/gps/mining, -/obj/item/pickaxe/mini, /obj/structure/closet/secure_closet/miningcloset, /obj/item/stack/marker_beacon/thirty, +/obj/item/pickaxe, +/obj/item/t_scanner/adv_mining_scanner/lesser, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) "li" = ( /obj/machinery/door/airlock/engineering{ - name = "Starboard Wing" + name = "Starboard Wing"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -844,9 +847,7 @@ pixel_y = 9; pixel_x = -4 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "lM" = ( /obj/structure/railing/corner{ @@ -857,9 +858,7 @@ /obj/item/seeds/cotton, /obj/item/storage/bag/plants/portaseeder, /obj/item/storage/bag/plants, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "lO" = ( /obj/structure/cable/orange{ @@ -871,11 +870,11 @@ /turf/open/floor/plasteel/tech, /area/ship/storage) "md" = ( -/obj/docking_port/mobile{ - callTime = 250; - launch_status = 0; - name = "Glaive-class"; - port_direction = 2 +/obj/docking_port{ + dwidth = 15; + dir = 2; + width = 30; + height = 15 }, /turf/open/floor/engine/hull, /area/ship/external/dark) @@ -883,9 +882,7 @@ /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, /obj/item/kirbyplants/random, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "mr" = ( /obj/structure/cable/orange{ @@ -913,6 +910,15 @@ /obj/item/book/manual/srmlore, /turf/open/floor/wood/ebony, /area/ship/crew/dorm) +"mw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + name = "Body Shutters"; + id = "body_shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/roumain) "mD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters{ @@ -929,10 +935,6 @@ dir = 1 }, /obj/structure/cable/pink, -/obj/machinery/door/poddoor/shutters{ - id = "starboard_shutters"; - name = "Starboard Engine Shutters" - }, /turf/open/floor/engine/hull, /area/ship/engineering/engine) "mJ" = ( @@ -943,9 +945,7 @@ dir = 8; pixel_x = 32 }, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/toilet) "mS" = ( /obj/structure/cable/orange{ @@ -965,9 +965,7 @@ dir = 1 }, /mob/living/simple_animal/cow, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "nk" = ( /obj/item/storage/box/emptysandbags, @@ -976,14 +974,14 @@ /obj/item/flashlight/seclite, /obj/item/borg/upgrade/modkit/indoors, /obj/item/gun/energy/kinetic_accelerator, -/obj/item/t_scanner/adv_mining_scanner, /obj/item/storage/bag/ore, /obj/item/gun/ballistic/shotgun/winchester/mk1/lethal, /obj/item/shovel, /obj/item/gps/mining, -/obj/item/pickaxe/mini, /obj/structure/closet/secure_closet/miningcloset, /obj/item/stack/marker_beacon/thirty, +/obj/item/pickaxe, +/obj/item/t_scanner/adv_mining_scanner/lesser, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) "nt" = ( @@ -1009,15 +1007,22 @@ /obj/item/clothing/head/welding, /turf/open/floor/plating, /area/ship/engineering/electrical) -"nZ" = ( -/obj/structure/fence{ - dir = 4 +"nY" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/plating{ + icon_state = "greenerdirt" }, +/area/ship/roumain) +"nZ" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/siding/wood{ dir = 4 }, /obj/machinery/door/firedoor/border_only, +/obj/structure/railing, /turf/open/floor/wood/maple, /area/ship/construction) "oC" = ( @@ -1046,10 +1051,7 @@ /area/ship/engineering/engine) "pd" = ( /obj/structure/flora/rock/jungle, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "pH" = ( /obj/structure/cable/orange{ @@ -1110,40 +1112,43 @@ /area/ship/storage) "qJ" = ( /obj/structure/destructible/tribal_torch, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "qN" = ( /obj/structure/railing/corner{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "qQ" = ( -/obj/item/clothing/suit/space/hardsuit/mining/heavy, -/obj/item/clothing/mask/gas/hunter, /obj/machinery/suit_storage_unit/inherit, /obj/effect/turf_decal/siding/wood/end, +/obj/item/clothing/suit/space/hardsuit/mining/independent, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/oxygen, /turf/open/floor/wood/mahogany, /area/ship/roumain) +"qZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + name = "Body Shutters"; + id = "body_shutters" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ship/roumain) "re" = ( /obj/structure/railing/corner{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "rj" = ( /obj/structure/table/wood, /obj/item/slimepotion/slime/sentience, -/obj/item/slimepotion/slime/sentience, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "rD" = ( /obj/effect/turf_decal/siding/wood/end, @@ -1153,15 +1158,11 @@ /turf/open/floor/wood/yew, /area/ship/roumain) "rE" = ( -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/toilet) "rK" = ( /obj/machinery/airalarm/directional/east, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/toilet) "sb" = ( /obj/effect/turf_decal/industrial/warning, @@ -1173,9 +1174,7 @@ /obj/structure/railing{ dir = 10 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "sr" = ( /obj/machinery/door/airlock/mining{ @@ -1195,6 +1194,10 @@ /obj/structure/cable/pink{ icon_state = "0-2" }, +/obj/machinery/door/poddoor/shutters{ + id = "port_shutters"; + name = "Engine Shutters" + }, /turf/open/floor/plating, /area/ship/engineering) "sv" = ( @@ -1206,10 +1209,14 @@ /obj/effect/turf_decal/stoneborder{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/toilet) +"sA" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/open/floor/engine/hull, +/area/ship/external/dark) "sD" = ( /obj/structure/cable/orange{ icon_state = "1-2" @@ -1241,13 +1248,15 @@ }, /obj/machinery/door/poddoor/shutters{ name = "Body Shutters"; - id = "body_shutters" + id = "body_shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ship/roumain) "ts" = ( /obj/machinery/door/airlock/glass{ - name = "Port Wing" + name = "Port Wing"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -1267,11 +1276,15 @@ /obj/structure/cable/pink{ icon_state = "0-2" }, +/obj/machinery/door/poddoor/shutters{ + id = "starboard_shutters"; + name = "Starboard Engine Shutters" + }, /turf/open/floor/plating, /area/ship/engineering/engine) "tC" = ( /obj/machinery/airalarm/directional/east, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable/orange{ icon_state = "0-2" }, @@ -1304,18 +1317,14 @@ /area/ship/storage) "uI" = ( /obj/structure/railing, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "uM" = ( /obj/structure/railing/corner{ dir = 1 }, /obj/item/lighter, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "uP" = ( /obj/effect/turf_decal/industrial/warning, @@ -1333,10 +1342,6 @@ /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 1 }, -/obj/machinery/door/poddoor/shutters{ - id = "starboard_shutters"; - name = "Starboard Engine Shutters" - }, /turf/open/floor/engine/hull, /area/ship/engineering/engine) "vn" = ( @@ -1355,7 +1360,7 @@ /turf/open/floor/plasteel/dark, /area/ship/crew/toilet) "vz" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable/orange{ icon_state = "0-8" }, @@ -1389,28 +1394,32 @@ /area/ship/roumain) "ww" = ( /obj/structure/sink/puddle, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/toilet) "wA" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/railing, -/turf/open/floor/grass{ - icon_state = "junglegrass" +/turf/open/floor/grass/ship/jungle, +/area/ship/roumain) +"wC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + name = "Body Shutters"; + id = "body_shutters"; + dir = 4 }, +/turf/open/floor/plating, /area/ship/roumain) "wD" = ( /obj/vehicle/ridden/wheelchair, /obj/item/melee/transforming/cleaving_saw/old, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "wE" = ( /obj/machinery/door/airlock/glass{ - name = "Port Wing" + name = "Port Wing"; + dir = 4 }, /obj/structure/cable/orange{ icon_state = "4-8" @@ -1462,25 +1471,18 @@ /obj/structure/railing{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "xC" = ( /obj/structure/chair/pew/right{ dir = 1 }, /obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "xD" = ( /obj/structure/sink/puddle, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/medical) "yn" = ( /obj/structure/cable/orange{ @@ -1541,9 +1543,7 @@ "yN" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "yV" = ( /obj/item/soap/deluxe, @@ -1558,9 +1558,7 @@ /obj/effect/turf_decal/stoneborder{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/crew/toilet) "yZ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -1580,7 +1578,7 @@ "zc" = ( /obj/structure/destructible/tribal_torch, /obj/effect/turf_decal/corner/opaque/blue/diagonal, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable/orange, /turf/open/floor/plasteel/white, /area/ship/medical) @@ -1609,7 +1607,8 @@ }, /obj/machinery/door/poddoor/shutters{ name = "Body Shutters"; - id = "body_shutters" + id = "body_shutters"; + dir = 4 }, /turf/open/floor/plating, /area/ship/roumain) @@ -1638,15 +1637,20 @@ }, /obj/machinery/suit_storage_unit/inherit, /obj/item/clothing/suit/space/hardsuit/mining/independent, -/obj/item/clothing/mask/gas/hunter, +/obj/item/clothing/mask/breath, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) +"Ac" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/kitchenspike, +/turf/open/floor/ship/dirt/dark, +/area/ship/roumain) "Ao" = ( /obj/structure/railing/corner, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "Ar" = ( /obj/structure/closet/crate/freezer, @@ -1689,6 +1693,10 @@ /obj/structure/cable/pink{ icon_state = "0-2" }, +/obj/machinery/door/poddoor/shutters{ + id = "port_shutters"; + name = "Engine Shutters" + }, /turf/open/floor/plating, /area/ship/engineering) "AN" = ( @@ -1723,9 +1731,7 @@ dir = 1 }, /mob/living/simple_animal/chicken, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "Bu" = ( /obj/effect/spawner/structure/window/reinforced, @@ -1749,17 +1755,13 @@ /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, /obj/machinery/smartfridge/drying_rack, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "Bz" = ( /obj/structure/railing{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "BB" = ( /obj/structure/table/wood, @@ -1792,9 +1794,7 @@ dir = 1 }, /mob/living/simple_animal/cow, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "Cr" = ( /obj/structure/cable/orange{ @@ -1824,9 +1824,7 @@ /obj/structure/chair/pew{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "CF" = ( /obj/effect/turf_decal/siding/wood{ @@ -1851,6 +1849,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/dark, /area/ship/roumain) "Dg" = ( @@ -1865,7 +1866,7 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/turf/open/floor/plating/grass/jungle/actuallydark, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "Du" = ( /obj/structure/cable/orange{ @@ -1880,12 +1881,12 @@ /turf/open/floor/wood/ebony, /area/ship/crew/dorm) "Dz" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/fermenting_barrel, -/turf/open/floor/grass{ - icon_state = "junglegrass" +/obj/machinery/door/poddoor{ + id = "glaive_body_blasts"; + name = "Body Blast Door"; + dir = 4 }, +/turf/open/floor/plasteel/dark, /area/ship/roumain) "DG" = ( /turf/closed/wall/r_wall, @@ -1910,16 +1911,12 @@ "DS" = ( /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "DX" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "Et" = ( /obj/structure/cable/orange{ @@ -2000,9 +1997,7 @@ "EN" = ( /obj/item/reagent_containers/glass/bottle/diethylamine, /obj/item/reagent_containers/glass/bottle/diethylamine, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/construction) "EO" = ( /obj/structure/cable/orange{ @@ -2017,9 +2012,7 @@ /area/ship/medical) "Fa" = ( /obj/structure/railing/corner, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "Fd" = ( /obj/effect/turf_decal/siding/wood{ @@ -2065,10 +2058,8 @@ /obj/structure/railing{ dir = 5 }, -/obj/item/kirbyplants/random, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/obj/structure/kitchenspike, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "Fr" = ( /obj/structure/table/wood, @@ -2080,10 +2071,21 @@ /obj/structure/railing/corner, /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/kitchenspike, -/turf/open/floor/grass{ - icon_state = "junglegrass" +/obj/machinery/button/door{ + dir = 1; + pixel_x = -5; + pixel_y = -26; + name = "Body Blast Door Control"; + id = "glaive_body_blasts" }, +/obj/machinery/button/shieldwallgen{ + dir = 1; + pixel_y = -25; + pixel_x = 6; + name = "Body Holofield Switch"; + id = "glaive_body_holo" + }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "FA" = ( /turf/open/floor/engine/hull, @@ -2135,43 +2137,52 @@ "GP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/toy/plush/snakeplushie, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) +"Ho" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/open/floor/engine/hull, +/area/ship/external/dark) "Hw" = ( /obj/effect/turf_decal/spline/fancy{ dir = 1 }, /obj/machinery/suit_storage_unit/inherit, /obj/item/clothing/suit/space/hardsuit/mining/independent, -/obj/item/clothing/mask/gas/hunter, /obj/structure/cable/orange{ icon_state = "6-9" }, +/obj/item/clothing/mask/breath, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) "HA" = ( -/obj/structure/fence{ - dir = 4 - }, /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/siding/wood{ dir = 8 }, /obj/machinery/door/firedoor/border_only, +/obj/structure/railing, /turf/open/floor/wood/maple, /area/ship/construction) "HB" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/kitchenspike, -/turf/open/floor/grass{ - icon_state = "junglegrass" +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + dir = 1; + id = "glaive_body_holo" + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + id = "glaive_body_blasts"; + name = "Body Blast Door"; + dir = 4 }, +/turf/open/floor/plasteel/dark, /area/ship/roumain) "HS" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable/orange{ icon_state = "0-4" }, @@ -2181,6 +2192,20 @@ /obj/machinery/portable_atmospherics/pump, /turf/open/floor/plating, /area/ship/engineering) +"Ii" = ( +/obj/machinery/power/shieldwallgen/atmos/roundstart{ + id = "glaive_body_holo" + }, +/obj/machinery/door/poddoor{ + id = "glaive_body_blasts"; + name = "Body Blast Door"; + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/roumain) "Il" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -2246,6 +2271,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/stairs, /area/ship/storage) +"Jx" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/open/floor/engine/hull, +/area/ship/external/dark) "Jy" = ( /obj/machinery/power/terminal, /obj/structure/cable/orange{ @@ -2290,10 +2324,7 @@ /obj/structure/railing{ dir = 5 }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "KX" = ( /obj/structure/flora/ausbushes/reedbush, @@ -2303,32 +2334,23 @@ /mob/living/simple_animal/crab{ name = "Tracie" }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "Lj" = ( /obj/structure/destructible/tribal_torch, /obj/structure/railing{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "Lk" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "LG" = ( /obj/structure/flora/rock/jungle, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "LL" = ( /obj/structure/cable/orange{ @@ -2347,7 +2369,8 @@ /area/ship/storage) "LS" = ( /obj/machinery/door/airlock{ - name = "Restroom" + name = "Restroom"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -2355,18 +2378,12 @@ /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/crew/toilet) "Ma" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 1 }, -/obj/machinery/door/poddoor/shutters{ - id = "port_shutters"; - name = "Engine Shutters" - }, /turf/open/floor/engine/hull, /area/ship/engineering) "Mh" = ( @@ -2476,11 +2493,9 @@ /turf/open/floor/wood/mahogany, /area/ship/roumain) "MG" = ( -/obj/structure/fence{ - dir = 4 - }, /obj/effect/turf_decal/industrial/warning, /obj/machinery/door/firedoor/border_only, +/obj/structure/railing, /turf/open/floor/wood/maple, /area/ship/construction) "MR" = ( @@ -2490,9 +2505,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Bay" - }, /obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2500,6 +2512,10 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Bay"; + dir = 4 + }, /turf/open/floor/plasteel/white, /area/ship/medical) "MU" = ( @@ -2510,13 +2526,13 @@ /obj/item/flashlight/seclite, /obj/item/borg/upgrade/modkit/indoors, /obj/item/gun/energy/kinetic_accelerator, -/obj/item/t_scanner/adv_mining_scanner, /obj/item/storage/bag/ore, /obj/item/shovel, /obj/item/gps/mining, -/obj/item/pickaxe/mini, /obj/structure/closet/secure_closet/miningcloset, /obj/item/stack/marker_beacon/thirty, +/obj/item/pickaxe, +/obj/item/t_scanner/adv_mining_scanner/lesser, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) "MV" = ( @@ -2553,13 +2569,12 @@ dir = 9 }, /obj/item/kirbyplants/random, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "Nd" = ( /obj/machinery/door/airlock/glass{ - name = "Dormitories" + name = "Dormitories"; + dir = 4 }, /obj/structure/cable/orange{ icon_state = "4-8" @@ -2573,7 +2588,7 @@ /turf/open/floor/wood/ebony, /area/ship/construction) "Ng" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable/orange{ icon_state = "0-8" }, @@ -2605,9 +2620,7 @@ /obj/item/seeds/lavaland/porcini, /obj/item/seeds/lavaland/cactus, /obj/item/cultivator/rake, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "NE" = ( /obj/structure/toilet{ @@ -2620,24 +2633,18 @@ /turf/open/floor/wood/ebony, /area/ship/crew/toilet) "NL" = ( -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "NT" = ( /obj/structure/railing/corner{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "NV" = ( /obj/item/reagent_containers/glass/bottle/mutagen, /obj/item/reagent_containers/glass/bottle/mutagen, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/construction) "NX" = ( /obj/machinery/atmospherics/components/binary/pump, @@ -2706,19 +2713,13 @@ /obj/structure/railing{ dir = 9 }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "Qm" = ( /obj/structure/railing{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "QA" = ( /obj/structure/cable/orange{ @@ -2731,7 +2732,8 @@ dir = 4 }, /obj/machinery/door/airlock/medical/glass{ - name = "Medical Bay" + name = "Medical Bay"; + dir = 4 }, /obj/effect/turf_decal/corner/opaque/blue/diagonal, /obj/machinery/door/firedoor/border_only{ @@ -2749,6 +2751,10 @@ /obj/structure/cable/pink{ icon_state = "0-2" }, +/obj/machinery/door/poddoor/shutters{ + id = "starboard_shutters"; + name = "Starboard Engine Shutters" + }, /turf/open/floor/plating, /area/ship/engineering/engine) "QJ" = ( @@ -2762,7 +2768,7 @@ /turf/open/floor/plating, /area/ship/engineering/electrical) "QQ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -2779,9 +2785,7 @@ /area/ship/construction) "QX" = ( /obj/structure/bonfire/dense, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "Ra" = ( /obj/structure/cable/orange{ @@ -2797,10 +2801,7 @@ /obj/structure/railing{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "Rn" = ( /obj/structure/table/wood, @@ -2828,9 +2829,7 @@ /area/ship/roumain) "RJ" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "RT" = ( /obj/structure/cable/orange{ @@ -2863,6 +2862,10 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Sl" = ( +/obj/structure/fermenting_barrel, +/turf/open/floor/ship/dirt/dark, +/area/ship/roumain) "Sx" = ( /obj/structure/window/reinforced/spawner{ dir = 4 @@ -2870,6 +2873,10 @@ /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 1 }, +/obj/machinery/door/poddoor/shutters{ + id = "starboard_shutters"; + name = "Starboard Engine Shutters" + }, /turf/open/floor/plating, /area/ship/engineering/engine) "Sz" = ( @@ -2877,9 +2884,7 @@ /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/loom, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "SK" = ( /obj/structure/railing/corner{ @@ -2898,10 +2903,6 @@ dir = 1 }, /obj/structure/cable/pink, -/obj/machinery/door/poddoor/shutters{ - id = "port_shutters"; - name = "Engine Shutters" - }, /turf/open/floor/engine/hull, /area/ship/engineering) "Tc" = ( @@ -2924,7 +2925,8 @@ dir = 4 }, /obj/machinery/door/airlock/engineering{ - name = "Starboard Wing" + name = "Starboard Wing"; + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -2950,19 +2952,23 @@ /obj/structure/railing{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) +"TS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + name = "Body Shutters"; + id = "body_shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/medical) "Ue" = ( /obj/structure/flora/ausbushes/reedbush, /obj/structure/railing{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "Ul" = ( /obj/effect/turf_decal/siding/wood{ @@ -2990,9 +2996,7 @@ /obj/structure/railing{ dir = 6 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "US" = ( /obj/structure/cable/orange{ @@ -3011,9 +3015,7 @@ /mob/living/simple_animal/pet/gondola{ name = "Grand Hunter Montagnes" }, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/construction) "Vn" = ( /obj/machinery/power/terminal, @@ -3038,9 +3040,7 @@ dir = 1 }, /obj/structure/flora/junglebush/large, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "VL" = ( /obj/effect/spawner/structure/window/reinforced, @@ -3061,9 +3061,7 @@ /area/ship/roumain) "VQ" = ( /obj/structure/flora/junglebush/c, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "VX" = ( /turf/open/floor/plasteel/tech, @@ -3082,7 +3080,7 @@ "Wr" = ( /obj/machinery/suit_storage_unit/inherit, /obj/item/clothing/suit/space/hardsuit/mining/independent, -/obj/item/clothing/mask/gas/hunter, +/obj/item/clothing/mask/breath, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) "Wy" = ( @@ -3109,9 +3107,7 @@ /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/railing, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "Xp" = ( /obj/structure/table/optable, @@ -3126,24 +3122,17 @@ /area/ship/medical) "Xq" = ( /obj/item/seeds/cotton/durathread, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/construction) "Xt" = ( -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "XB" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/flora/junglebush/b, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "XK" = ( /obj/structure/cable/green, @@ -3164,7 +3153,6 @@ /turf/open/floor/plating, /area/ship/engineering/electrical) "XY" = ( -/obj/item/radio/intercom/wideband, /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood/end{ dir = 1 @@ -3176,6 +3164,9 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/item/radio/intercom/wideband/table{ + dir = 1 + }, /turf/open/floor/wood/mahogany, /area/ship/roumain) "XZ" = ( @@ -3202,12 +3193,10 @@ /obj/structure/railing{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "greenerdirt" - }, +/turf/open/floor/ship/dirt/dark, /area/ship/roumain) "YE" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/chair/wood/wings{ dir = 1 }, @@ -3224,37 +3213,34 @@ /turf/open/floor/wood/mahogany, /area/ship/roumain) "YM" = ( -/obj/structure/fence{ - dir = 4 - }, /obj/effect/turf_decal/industrial/warning, /obj/structure/cable/orange{ icon_state = "6-9" }, /obj/machinery/door/firedoor/border_only, +/obj/structure/railing, /turf/open/floor/wood/maple, /area/ship/construction) "YP" = ( /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, -/obj/item/kirbyplants/random, -/turf/open/floor/grass{ - icon_state = "junglegrass" +/obj/structure/destructible/tribal_torch, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -6; + pixel_x = -31 }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "YT" = ( /obj/item/kirbyplants/random, /obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass{ - icon_state = "junglegrass" - }, +/turf/open/floor/grass/ship/jungle, /area/ship/roumain) "Zh" = ( /obj/effect/turf_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/fence/door, /obj/machinery/door/firedoor/border_only, /turf/open/floor/wood/maple, /area/ship/construction) @@ -3273,10 +3259,7 @@ /obj/structure/railing/corner{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "ZK" = ( /obj/structure/cable/orange{ @@ -3303,10 +3286,7 @@ /area/ship/crew/dorm) "ZV" = ( /obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/plating{ - icon_state = "riverwater_motion"; - name = "wet plating" - }, +/turf/open/floor/plating/ship/water, /area/ship/roumain) "ZW" = ( /obj/structure/railing/corner{ @@ -3491,7 +3471,7 @@ Vu Vu Vu Vu -Vu +ff sH sH sH @@ -3790,8 +3770,8 @@ sH cR yZ CH -AN -FA +qZ +sA sH sH sH @@ -3829,8 +3809,8 @@ Cr AN uY AN -FA -FA +gK +sA sH sH sH @@ -3841,10 +3821,10 @@ sH sH sH fm -hh -hh -hh -hh +dt +dt +dt +dt fm sH sH @@ -3868,10 +3848,10 @@ wp ts wp wp -FA -FA -FA -FA +Jx +Ho +Ho +sA FA FA sH @@ -3906,10 +3886,10 @@ lM aM Nq wp -AN -AN -AN -AN +Ii +Dz +Dz +HB wp FA FA @@ -3944,9 +3924,9 @@ ko Lk aM YP -qJ -Dz -HB +ds +aM +aM Fu wp wp @@ -3974,11 +3954,11 @@ FA sH FA Cx -AN -AN -AN +wp +wC +wp cg -XB +Ac NL LG NL @@ -3990,7 +3970,7 @@ ZV Xt wp wp -AN +wC fm IF iu @@ -4094,7 +4074,7 @@ GP NL NL NL -NT +nY Lj uM CC @@ -4171,7 +4151,7 @@ ZE MZ qN NL -NL +Sl NL NL NL @@ -4202,9 +4182,9 @@ FA sH FA Cx -AN -AN -AN +wp +wC +wp Xt XB RJ @@ -4218,7 +4198,7 @@ Xt ZV wp wp -AN +mw fi XZ MR @@ -4286,10 +4266,10 @@ bW Lk hz wp -AN -AN -AN -AN +wC +wC +wC +wC wp cR xf @@ -4373,10 +4353,10 @@ sH sH sH fi -mD -mD -mD -mD +TS +TS +TS +TS fi sH sH diff --git a/_maps/shuttles/shiptest/syndicate_aegis.dmm b/_maps/shuttles/shiptest/syndicate_aegis.dmm index 037c9b7675c9..c5bdfc5c30ef 100644 --- a/_maps/shuttles/shiptest/syndicate_aegis.dmm +++ b/_maps/shuttles/shiptest/syndicate_aegis.dmm @@ -8,19 +8,24 @@ /obj/effect/turf_decal/spline/plain/opaque/black, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"ad" = ( -/obj/structure/chair/sofa/right{ - dir = 1 +"ag" = ( +/obj/structure/table/wood/reinforced, +/obj/item/toy/plush/knight{ + pixel_x = 7; + pixel_y = 13 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 1 }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/yellow{ - icon_state = "0-4" +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/turf/open/floor/carpet/red, -/area/ship/crew/canteen) +/obj/machinery/light/small/directional/west, +/turf/open/floor/mineral/plastitanium/red{ + icon_state = "plastitanium" + }, +/area/ship/bridge) "ah" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -47,39 +52,18 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/dorm) -"av" = ( -/obj/structure/table/wood, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -8; - pixel_y = -24 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/item/toy/plush/slimeplushie{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/toy/cards/deck/cas, -/obj/item/toy/cards/deck/cas/black{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 4; - pixel_y = -24 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/dorm) "az" = ( /obj/structure/sign/syndicate, /turf/closed/wall/mineral/plastitanium, /area/ship/crew/dorm) +"aB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm) "aG" = ( /obj/structure/table/reinforced{ color = "#50C878" @@ -125,26 +109,6 @@ "aL" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew/office) -"aO" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/grass, -/area/ship/hallway/central) "aP" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) @@ -198,6 +162,32 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/dorm) +"bp" = ( +/obj/structure/table/wood/reinforced, +/obj/item/areaeditor/shuttle{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "exterior"; + name = "Exterior lockdown"; + pixel_x = -7; + pixel_y = -2 + }, +/obj/machinery/button/door{ + id = "shipbridge"; + name = "Bridge lockdown"; + pixel_x = 7; + pixel_y = -2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/mineral/plastitanium/red{ + icon_state = "plastitanium" + }, +/area/ship/bridge) "bs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -264,6 +254,21 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/dorm) +"bC" = ( +/obj/item/clothing/under/syndicate, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/obj/structure/closet/syndicate{ + desc = "It's a basic storage unit."; + name = "uniform closet" + }, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/shoes/combat, +/obj/item/kitchen/knife/combat/survival, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/warning/full, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "bD" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/border_only{ @@ -277,35 +282,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/walnut, /area/ship/crew/dorm) -"bN" = ( +"bX" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 + icon_state = "0-2" }, -/obj/effect/turf_decal/spline/plain/opaque/black{ - dir = 1 +/obj/item/clothing/under/syndicate, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/obj/structure/closet/syndicate{ + desc = "It's a basic storage unit."; + name = "uniform closet" }, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/shoes/combat, +/obj/effect/turf_decal/industrial/warning/full, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"bV" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/walnut, -/area/ship/crew/dorm) "cc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 6 @@ -318,16 +311,11 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/dorm) -"cf" = ( -/obj/structure/chair/sofa, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/ship/crew/canteen) +"cd" = ( +/obj/structure/catwalk/over, +/obj/effect/turf_decal/hardline_small/left, +/turf/open/floor/plating, +/area/ship/engineering) "cp" = ( /obj/structure/bed, /obj/item/bedsheet/syndie, @@ -371,6 +359,13 @@ /obj/item/soap/syndie, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) +"cE" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "cF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable/yellow{ @@ -389,6 +384,27 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/office) +"cO" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/spline/plain/opaque/black{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "cQ" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -439,24 +455,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/science) -"dc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Medbay" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/techfloor/hole, -/obj/effect/turf_decal/techfloor/hole/right, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/tech, -/area/ship/medical) "dg" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -473,24 +471,6 @@ /obj/effect/turf_decal/box/white, /turf/open/floor/plasteel/tech, /area/ship/crew/janitor) -"dj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/spline/plain/opaque/black{ - dir = 9 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) "dq" = ( /obj/structure/catwalk/over, /obj/machinery/atmospherics/pipe/simple/orange/hidden, @@ -499,26 +479,13 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"dy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/office) "dH" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 }, /obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/tech, /area/ship/crew/hydroponics) "dI" = ( @@ -526,29 +493,15 @@ /obj/structure/sign/departments/restroom, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) -"dK" = ( -/obj/effect/turf_decal/trimline/opaque/purple/filled/line, -/obj/structure/spider/stickyweb, -/obj/machinery/light/small{ - dir = 4 +"dL" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "exterior"; + name = "Exterior Shutters" }, /turf/open/floor/plating, -/area/ship/science) -"dS" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) +/area/ship/medical) "dT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -639,14 +592,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/walnut, /area/ship/crew/office) -"eF" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "eN" = ( /obj/machinery/door/airlock/hatch{ name = "Tech Lab" @@ -661,13 +606,12 @@ }, /turf/open/floor/plasteel/tech, /area/ship/science) -"eV" = ( +"eQ" = ( +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/tech, -/area/ship/crew/janitor) +/area/ship/crew/hydroponics) "eW" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 4 @@ -687,10 +631,25 @@ /obj/item/clothing/gloves/color/black, /turf/open/floor/wood/walnut, /area/ship/crew/canteen/kitchen) -"ff" = ( -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ - dir = 8 - }, +"fb" = ( +/obj/item/clothing/under/syndicate, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/obj/structure/closet/syndicate{ + desc = "It's a basic storage unit."; + name = "uniform closet" + }, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/shoes/combat, +/obj/machinery/airalarm/directional/north, +/obj/item/kitchen/knife/combat/survival, +/obj/effect/turf_decal/industrial/warning/full, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) +"ff" = ( +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -717,24 +676,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) -"fw" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"fB" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/walnut, -/area/ship/crew/office) "fD" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 1 @@ -766,6 +707,25 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"fH" = ( +/obj/structure/table/wood/reinforced, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/radio/intercom/wideband/directional/north, +/obj/machinery/photocopier/faxmachine/longrange, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red{ + icon_state = "plastitanium" + }, +/area/ship/bridge) "fJ" = ( /obj/structure/closet/wall/orange{ name = "fuel locker"; @@ -795,6 +755,34 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"fL" = ( +/obj/structure/table, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 6 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = -6 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = -6 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 6 + }, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen/penacid{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/item/reagent_containers/hypospray/medipen/penacid{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/effect/turf_decal/techfloor, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/medical) "fY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/hatch{ @@ -804,23 +792,6 @@ /obj/effect/turf_decal/techfloor/hole, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) -"ga" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/dorm) "go" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -830,9 +801,37 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/dorm) +"gp" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/turf/open/floor/wood/walnut, +/area/ship/medical) "gq" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) +"gt" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "cargo_ageis"; + name = "Cargo Bay" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 1; + id = "aegis_holo" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "gx" = ( /obj/effect/turf_decal/corner_techfloor_grid{ dir = 5 @@ -854,6 +853,21 @@ /obj/structure/sign/syndicate, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/office) +"gB" = ( +/obj/machinery/light/small/directional/west{ + brightness = 3 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/turf_decal/trimline/opaque/brown/filled/line, +/turf/open/floor/plasteel/tech, +/area/ship/crew/canteen/kitchen) "gK" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -889,18 +903,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/crew/hydroponics) -"gO" = ( -/obj/machinery/light/small, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1; - layer = 2.35 - }, -/obj/effect/turf_decal/atmos/air, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "gR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner_techfloor_grid/diagonal{ @@ -1005,6 +1007,20 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"hx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod/directional/west, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm) "hz" = ( /obj/structure/table/reinforced, /obj/machinery/chem_dispenser/drinks{ @@ -1017,6 +1033,25 @@ /obj/structure/sign/poster/official/moth/piping, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) +"hC" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Cargo Bay" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/techfloor/hole, +/obj/effect/turf_decal/techfloor/hole/right, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "hM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1070,6 +1105,13 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"if" = ( +/obj/effect/turf_decal/trimline/opaque/purple/filled/line, +/obj/structure/spider/stickyweb, +/obj/machinery/light/small/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plating, +/area/ship/science) "ij" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -1084,14 +1126,14 @@ /obj/effect/turf_decal/spline/plain/opaque/black, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"iq" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "exterior"; - name = "Exterior Shutters" +"io" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/crew/canteen) +/turf/open/floor/plasteel/tech, +/area/ship/crew/dorm) "it" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/drinkingglass{ @@ -1128,8 +1170,17 @@ dir = 4 }, /obj/effect/turf_decal/industrial/hatch/blue, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/medical) +"iJ" = ( +/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/loading/white, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "iO" = ( /obj/structure/table, /obj/item/storage/fancy/cigarettes/cigpack_syndicate{ @@ -1146,36 +1197,6 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/canteen) -"iW" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/shieldwallgen/atmos{ - id = "aegis_holo"; - anchored = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "cargo_ageis"; - name = "Cargo Bay" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) -"iZ" = ( -/obj/machinery/biogenerator, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) "jf" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -1195,6 +1216,15 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"jh" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/brown/filled/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/crew/canteen/kitchen) "jp" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -1279,6 +1309,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/effect/landmark/observer_start, /turf/open/floor/carpet/red, /area/ship/bridge) "kz" = ( @@ -1297,30 +1328,15 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/janitor) -"kW" = ( -/obj/structure/catwalk/over, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"kU" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "exterior"; + name = "Exterior Shutters" }, /turf/open/floor/plating, -/area/ship/engineering) -"kY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner_techfloor_grid/diagonal, -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) +/area/ship/crew/canteen) "lo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1329,6 +1345,24 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen) +"ls" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "cargo_ageis"; + name = "Cargo Bay" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + id = "aegis_holo" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "lw" = ( /obj/effect/turf_decal/corner_techfloor_grid/diagonal{ dir = 4 @@ -1383,24 +1417,33 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) -"mj" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cargo Bay" - }, +"mh" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/light/small/directional/east, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/ship/hallway/central) +"mm" = ( +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/techfloor/hole, -/obj/effect/turf_decal/techfloor/hole/right, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) +/obj/effect/turf_decal/hardline_small, +/turf/open/floor/plating, +/area/ship/engineering) "mp" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1475,21 +1518,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plasteel/dark, /area/ship/science) -"mJ" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/light/small, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/janitor) "mK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1511,16 +1539,24 @@ /obj/machinery/holopad/emergency/kitchen, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen/kitchen) -"mN" = ( -/obj/effect/turf_decal/corner_techfloor_grid/diagonal, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/head/helmet/space/syndicate/black/med, -/obj/item/clothing/suit/space/syndicate/black/med, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 +"mM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/north, +/obj/item/trash/can/food{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 4; + layer = 2.35 }, /turf/open/floor/plasteel/tech, -/area/ship/cargo) +/area/ship/engineering) "mQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1536,6 +1572,18 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"mS" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1; + layer = 2.35 + }, +/obj/effect/turf_decal/atmos/air, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "mT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -1572,6 +1620,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/medical) +"ny" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "nz" = ( /obj/structure/sign/poster/official/moth, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -1594,22 +1651,6 @@ }, /turf/open/floor/carpet/red, /area/ship/bridge) -"nS" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 8 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/wood/walnut, -/area/ship/medical) -"nV" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/light/small, -/obj/effect/turf_decal/trimline/opaque/brown/filled/line, -/turf/open/floor/plasteel/tech, -/area/ship/crew/canteen/kitchen) "nY" = ( /obj/machinery/door/airlock/hatch{ name = "Cusodial Closet" @@ -1652,14 +1693,6 @@ /obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, /turf/open/floor/plasteel/tech, /area/ship/crew/hydroponics) -"oz" = ( -/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "oB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood/reinforced, @@ -1670,13 +1703,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/carpet/red, /area/ship/bridge) -"oE" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) "oJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -1696,34 +1722,21 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"oU" = ( -/obj/structure/table, -/obj/item/reagent_containers/hypospray/medipen, -/obj/item/reagent_containers/hypospray/medipen{ - pixel_y = 6 - }, -/obj/item/reagent_containers/hypospray/medipen{ - pixel_y = -6 - }, -/obj/item/reagent_containers/hypospray/medipen{ - pixel_y = -6 - }, -/obj/item/reagent_containers/hypospray/medipen{ - pixel_y = 6 - }, -/obj/item/reagent_containers/hypospray/medipen, -/obj/item/reagent_containers/hypospray/medipen/penacid{ - pixel_x = 9; - pixel_y = 10 +"oM" = ( +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ + dir = 1 }, -/obj/item/reagent_containers/hypospray/medipen/penacid{ - pixel_x = 9; - pixel_y = 7 +/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/turf_decal/techfloor, -/obj/machinery/light, +/obj/item/seeds/poppy, +/obj/item/seeds/poppy/lily, +/obj/item/seeds/sunflower, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/random, /turf/open/floor/plasteel/tech, -/area/ship/medical) +/area/ship/crew/hydroponics) "pb" = ( /obj/machinery/door/airlock/hatch{ name = "Dormitories" @@ -1738,28 +1751,16 @@ /obj/effect/turf_decal/techfloor/hole, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) -"pe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/catwalk/over, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, +"pl" = ( /obj/structure/cable/yellow{ - icon_state = "2-4" + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/hallway/central) "pm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1770,6 +1771,12 @@ /obj/effect/decal/cleanable/plasma, /turf/open/floor/plating, /area/ship/engineering) +"pn" = ( +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/food/egg_smudge, +/turf/open/floor/plasteel/tech, +/area/ship/crew/hydroponics) "pu" = ( /turf/open/floor/wood/walnut, /area/ship/bridge) @@ -1807,6 +1814,36 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/walnut, /area/ship/crew/janitor) +"qe" = ( +/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/structure/table/reinforced{ + color = "#994000" + }, +/obj/item/phone{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/machinery/airalarm/directional/north, +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/toy/figure/engineer{ + pixel_x = 14; + pixel_y = 14 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/trash/can/food{ + pixel_x = 9 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "qf" = ( /obj/machinery/door/airlock/hatch{ name = "Psychology Office" @@ -1832,16 +1869,6 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) -"qn" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters{ - id = "enginestorage"; - name = "Engineering Storage" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "qt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/bar, @@ -1861,7 +1888,7 @@ icon_state = "plastitanium" }, /area/ship/bridge) -"qx" = ( +"qy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -1872,7 +1899,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/door/airlock/external, +/obj/machinery/door/airlock/external{ + dir = 4 + }, /turf/open/floor/plasteel/tech, /area/ship/engineering) "qA" = ( @@ -1884,6 +1913,17 @@ /obj/item/circuitboard/machine/techfab/department/service, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"qD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm) "qM" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -1893,6 +1933,26 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/dorm) +"qX" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box{ + pixel_x = -4; + pixel_y = -8 + }, +/obj/item/reagent_containers/food/snacks/store/cake/bsvc{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/snacks/store/cake/bscc{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/office) "re" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 9 @@ -1921,6 +1981,25 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"rg" = ( +/obj/structure/table, +/obj/item/roller{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/breath/medical, +/obj/item/tank/internals/anesthetic, +/obj/effect/turf_decal/trimline/opaque/blue/filled/line, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/tech, +/area/ship/medical) "rk" = ( /mob/living/simple_animal/butterfly, /obj/structure/flora/ausbushes/ppflowers, @@ -1960,23 +2039,6 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/office) -"rE" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/corner_techfloor_grid/diagonal, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"rM" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/light, -/obj/structure/bed/dogbed, -/mob/living/simple_animal/pet/cat/kitten{ - desc = "One of Cheri's offspring, it purrs with glee as you pet it."; - name = "Panko" - }, -/obj/item/toy/cattoy, -/turf/open/floor/carpet/red, -/area/ship/crew/dorm) "rO" = ( /obj/structure/sink{ dir = 8; @@ -1990,26 +2052,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"rS" = ( -/obj/structure/table/wood/reinforced, -/obj/item/toy/plush/knight{ - pixel_x = 7; - pixel_y = 13 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/mineral/plastitanium/red{ - icon_state = "plastitanium" - }, -/area/ship/bridge) "rT" = ( /obj/structure/frame/computer, /obj/effect/turf_decal/siding/wood, @@ -2028,15 +2070,16 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering) -"sg" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 +"sk" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Bathroom" }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, +/obj/effect/turf_decal/techfloor/hole/right, +/obj/effect/turf_decal/techfloor/hole, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light, /turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) +/area/ship/hallway/central) "sm" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/ppflowers, @@ -2067,6 +2110,33 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/canteen/kitchen) +"ss" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/catwalk/over, +/obj/effect/decal/cleanable/plasma, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "engine"; + name = "Engine shutter control"; + pixel_y = 22; + pixel_x = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/ship/engineering) "sv" = ( /obj/machinery/computer/helm, /obj/effect/turf_decal/siding/wood, @@ -2074,10 +2144,28 @@ icon_state = "plastitanium" }, /area/ship/bridge) +"sE" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/crew/hydroponics) "sI" = ( /obj/structure/sign/syndicate, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) +"sN" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "enginestorage"; + name = "Engineering Storage" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "sU" = ( /obj/structure/table/optable, /obj/effect/turf_decal/trimline/opaque/blue/filled/shrink_cw{ @@ -2085,15 +2173,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) -"ta" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) "te" = ( /obj/item/clothing/under/syndicate/combat, /obj/item/clothing/under/syndicate/sniper, @@ -2108,16 +2187,6 @@ /obj/effect/turf_decal/industrial/warning/full, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"tg" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood/walnut, -/area/ship/bridge) "tn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2129,26 +2198,12 @@ /obj/effect/turf_decal/atmos/plasma, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"tq" = ( -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/decal/cleanable/food/egg_smudge, -/turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) -"tr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/walnut, -/area/ship/bridge) +"tG" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/decal/cleanable/plasma, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "tJ" = ( /obj/structure/chair/comfy/shuttle{ dir = 8; @@ -2186,18 +2241,6 @@ /obj/structure/sign/poster/official/moth/hardhats, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) -"uz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/hallway/central) "uA" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -2235,75 +2278,9 @@ /obj/effect/turf_decal/spline/plain/opaque/black, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"uH" = ( -/obj/structure/table/wood/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/areaeditor/shuttle{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "exterior"; - name = "Exterior lockdown"; - pixel_x = -7; - pixel_y = -2 - }, -/obj/machinery/button/door{ - id = "shipbridge"; - name = "Bridge lockdown"; - pixel_x = 7; - pixel_y = -2 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/mineral/plastitanium/red{ - icon_state = "plastitanium" - }, -/area/ship/bridge) "uM" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/bridge) -"uQ" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/ship/hallway/central) -"uW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/hatch{ - name = "Mess Hall Prep" - }, -/obj/effect/turf_decal/techfloor/hole/right, -/obj/effect/turf_decal/techfloor/hole, -/turf/open/floor/plasteel/tech, -/area/ship/crew/canteen/kitchen) "vh" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 8 @@ -2328,16 +2305,20 @@ /obj/item/circuitboard/machine/deep_fryer, /turf/open/floor/wood/walnut, /area/ship/crew/canteen/kitchen) -"vv" = ( -/obj/effect/turf_decal/industrial/warning{ +"vj" = ( +/obj/effect/turf_decal/number/five, +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/obj/machinery/door/poddoor{ - id = "cargo_ageis"; - name = "Cargo Bay" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/engineering) "vw" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 6 @@ -2348,6 +2329,7 @@ /obj/structure/cable/yellow{ icon_state = "2-4" }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating, /area/ship/engineering) "vG" = ( @@ -2388,48 +2370,17 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"wh" = ( +/obj/machinery/vending/snack, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm) "wk" = ( /turf/template_noop, /area/template_noop) -"wl" = ( -/obj/structure/chair/sofa/right, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/ship/crew/canteen) -"ws" = ( -/obj/structure/table/reinforced{ - color = "#50C878" - }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez{ - pixel_x = 8 - }, -/obj/item/seeds/apple{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/seeds/tomato, -/obj/item/reagent_containers/glass/bottle/nutrient/l4z{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) "wu" = ( /obj/structure/closet/wall/orange{ name = "Engineering locker"; @@ -2478,64 +2429,61 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"wM" = ( -/obj/structure/frame/machine, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"wO" = ( -/obj/structure/table/wood/reinforced, -/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ - pixel_x = 8; - pixel_y = 8 +"wC" = ( +/obj/structure/table/wood, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -24 }, -/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ - pixel_x = 11; +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/toy/plush/slimeplushie{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/toy/cards/deck/cas, +/obj/item/toy/cards/deck/cas/black{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 4; pixel_y = 9 }, -/obj/item/radio/intercom/wideband{ - pixel_x = -3; - pixel_y = 26 +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/walnut, +/area/ship/crew/dorm) +"wF" = ( +/obj/effect/turf_decal/number/three, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 }, -/obj/machinery/photocopier/faxmachine/longrange, -/obj/effect/turf_decal/siding/wood{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/mineral/plastitanium/red{ - icon_state = "plastitanium" +/obj/structure/closet/emcloset/wall{ + pixel_y = 31 }, -/area/ship/bridge) +/obj/structure/catwalk/over, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"wM" = ( +/obj/structure/frame/machine, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "wQ" = ( /obj/effect/turf_decal/trimline/opaque/blue/filled/line{ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/tech, /area/ship/medical) -"wU" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) -"xe" = ( -/obj/structure/chair/sofa/left, -/obj/item/radio/intercom{ - pixel_x = 4; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/ship/crew/canteen) "xf" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -2572,19 +2520,6 @@ /obj/item/clothing/mask/surgical, /turf/open/floor/plasteel/dark, /area/ship/medical) -"xk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/ship/crew/canteen) "xq" = ( /obj/machinery/power/terminal, /obj/effect/turf_decal/techfloor/orange{ @@ -2619,6 +2554,26 @@ /obj/effect/turf_decal/spline/plain/opaque/black, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"xN" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/opaque/blue/filled/shrink_ccw, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 6 + }, +/obj/item/stack/medical/ointment, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/clothing/glasses/hud/health/prescription{ + pixel_y = 13 + }, +/obj/item/storage/bag/medical{ + pixel_x = -6 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "xO" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) @@ -2677,32 +2632,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"yi" = ( -/obj/machinery/computer/cargo/express{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -3; - pixel_y = 24 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/mineral/plastitanium/red{ - icon_state = "plastitanium" - }, -/area/ship/bridge) -"yl" = ( -/obj/machinery/vending/snack, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/dorm) "yu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2740,15 +2669,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) -"yM" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "yV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 @@ -2769,74 +2689,9 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/canteen) -"ze" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/shieldwallgen/atmos{ - dir = 1; - id = "aegis_holo"; - anchored = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor{ - id = "cargo_ageis"; - name = "Cargo Bay" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) -"zs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/trash/can/food{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 4; - layer = 2.35 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "zv" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) -"zA" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/box/gum/happiness{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/pill_bottle/psicodine{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/plasteel/tech, -/area/ship/medical) "zF" = ( /obj/item/clothing/head/maidheadband/syndicate, /obj/item/clothing/under/syndicate/skirt/maid, @@ -2883,10 +2738,23 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"Ae" = ( +/obj/machinery/computer/cargo/express{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/mineral/plastitanium/red{ + icon_state = "plastitanium" + }, +/area/ship/bridge) "Am" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/techfloor/hole/right, /obj/effect/turf_decal/techfloor/hole, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/tech, /area/ship/medical) "Aq" = ( @@ -2943,40 +2811,21 @@ }, /turf/open/floor/plasteel/tech, /area/ship/medical) -"AJ" = ( -/obj/item/clothing/under/syndicate, -/obj/item/clothing/under/syndicate/skirt, -/obj/item/storage/fancy/cigarettes/cigpack_syndicate, -/obj/structure/closet/syndicate{ - desc = "It's a basic storage unit."; - name = "uniform closet" +"Bf" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/number/zero, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 }, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/shoes/combat, -/obj/item/kitchen/knife/combat/survival, -/obj/machinery/light{ +/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning/full, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"Bc" = ( -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/item/clothing/under/syndicate, -/obj/item/clothing/under/syndicate/skirt, -/obj/item/storage/fancy/cigarettes/cigpack_syndicate, -/obj/structure/closet/syndicate{ - desc = "It's a basic storage unit."; - name = "uniform closet" + icon_state = "4-8" }, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/shoes/combat, -/obj/effect/turf_decal/industrial/warning/full, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) +/turf/open/floor/plating, +/area/ship/engineering) "Bh" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/medical) @@ -2991,27 +2840,19 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen) -"BM" = ( -/obj/structure/table, -/obj/item/roller{ - pixel_x = -6; - pixel_y = 12 +"Bq" = ( +/obj/structure/chair/sofa/right{ + dir = 1 }, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/breath/medical, -/obj/item/tank/internals/anesthetic, -/obj/effect/turf_decal/trimline/opaque/blue/filled/line, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/turf/open/floor/plasteel/tech, -/area/ship/medical) +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) "BN" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -3025,6 +2866,17 @@ /obj/item/toy/plush/snakeplushie, /turf/open/floor/carpet/red, /area/ship/crew/office) +"Cc" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "cargo_ageis"; + name = "Cargo Bay" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "Cd" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -3054,25 +2906,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/medical) -"Cp" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/turf_decal/trimline/opaque/brown/filled/line, -/turf/open/floor/plasteel/tech, -/area/ship/crew/canteen/kitchen) "Cq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -3123,6 +2956,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/medical) +"CX" = ( +/obj/structure/catwalk/over, +/obj/item/trash/popcorn, +/obj/effect/turf_decal/hardline_small/right, +/turf/open/floor/plating, +/area/ship/engineering) +"Df" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, +/area/ship/crew/hydroponics) "Dj" = ( /obj/machinery/door/airlock/hatch{ name = "Produce Production" @@ -3209,21 +3054,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Dy" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/docking_port/mobile{ - can_move_docking_ports = 1; - launch_status = 0; - port_direction = 2 - }, -/obj/machinery/door/poddoor{ - id = "cargo_ageis"; - name = "Cargo Bay" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) "DC" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/science) @@ -3240,19 +3070,6 @@ /obj/item/circuitboard/computer/powermonitor, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"DI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/walnut, -/area/ship/crew/dorm) "DS" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -3316,6 +3133,35 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/canteen) +"Ew" = ( +/obj/docking_port/stationary{ + dwidth = 7; + width = 15; + height = 15; + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"Ez" = ( +/obj/structure/chair/sofa, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) +"EA" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ship/crew/canteen/kitchen) "EJ" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 1 @@ -3332,6 +3178,14 @@ /obj/effect/turf_decal/spline/plain/opaque/black, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"Ff" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) "Fh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -3399,6 +3253,17 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Fk" = ( +/obj/machinery/biogenerator, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/hydroponics) "Fo" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/science) @@ -3418,6 +3283,23 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, /area/ship/hallway/central) +"Fv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/spline/plain/opaque/black{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "FB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3429,18 +3311,15 @@ }, /turf/open/floor/plasteel/tech, /area/ship/medical) -"FN" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/obj/structure/cable/yellow{ - icon_state = "0-2" +"FJ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "shipbridge"; + name = "Ship Bridge" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/walnut, -/area/ship/crew/canteen/kitchen) +/turf/open/floor/plating, +/area/ship/bridge) "FS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3449,6 +3328,22 @@ /obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"FU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/spline/plain/opaque/black{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "FY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/decal/cleanable/dirt, @@ -3494,29 +3389,25 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Gr" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/opaque/blue/filled/shrink_ccw, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 6 - }, -/obj/item/stack/medical/ointment, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 9 +"Ge" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/item/clothing/glasses/hud/health/prescription{ - pixel_y = 13 +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/item/storage/bag/medical{ - pixel_x = -6 +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 }, -/obj/machinery/airalarm/all_access{ +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + launch_status = 0; + port_direction = 4; dir = 8; - pixel_x = 24 + dheight = 2 }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "Gv" = ( /obj/structure/table/reinforced, /obj/item/storage/box/drinkingglasses, @@ -3572,23 +3463,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/walnut, /area/ship/crew/office) -"GU" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/opaque/brown/filled/line, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/canteen/kitchen) "GZ" = ( /obj/effect/turf_decal/syndicateemblem/top/right, /turf/open/floor/mineral/plastitanium/red, @@ -3611,47 +3485,34 @@ /obj/effect/turf_decal/corner_techfloor_grid/diagonal, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Hq" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/effect/turf_decal/corner_techfloor_grid/diagonal, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"HL" = ( +"Hp" = ( /obj/effect/turf_decal/corner_techfloor_grid/diagonal{ dir = 4 }, -/obj/effect/decal/cleanable/glass, -/obj/structure/table/reinforced{ - color = "#994000" - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/item/paper_bin{ - pixel_x = -6 - }, -/obj/item/toy/figure/engineer{ - pixel_x = 14; - pixel_y = 14 +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"HP" = ( +/obj/structure/bed/dogbed, +/obj/machinery/light/directional/south, +/mob/living/simple_animal/pet/cat/Runtime{ + desc = "The captains prized cat, it seems very friendly!"; + name = "Cheri" }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 4; - pixel_y = 9 +/obj/item/toy/cattoy, +/turf/open/floor/wood/walnut, +/area/ship/bridge) +"HV" = ( +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/light/directional/west, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/item/trash/can/food{ - pixel_x = 9 +/obj/effect/turf_decal/techfloor{ + dir = 5 }, +/obj/structure/frame/machine, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "Im" = ( @@ -3660,6 +3521,54 @@ "It" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) +"Iw" = ( +/obj/structure/table/reinforced{ + color = "#50C878" + }, +/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ + dir = 1 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/ez{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/ez{ + pixel_x = 8 + }, +/obj/item/seeds/apple{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/seeds/tomato, +/obj/item/reagent_containers/glass/bottle/nutrient/l4z{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/hydroponics) +"Iy" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Mess Hall Prep" + }, +/obj/effect/turf_decal/techfloor/hole/right, +/obj/effect/turf_decal/techfloor/hole, +/turf/open/floor/plasteel/tech, +/area/ship/crew/canteen/kitchen) "IA" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -3677,14 +3586,6 @@ /obj/machinery/holopad/emergency/medical, /turf/open/floor/plasteel/dark, /area/ship/medical) -"IC" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "enginestorage"; - name = "Engineering Storage" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "IH" = ( /obj/structure/catwalk/over, /obj/structure/cable/yellow{ @@ -3699,60 +3600,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"IJ" = ( -/obj/effect/turf_decal/trimline/opaque/blue/filled/shrink_cw{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/stamp/cmo{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/donut/jelly/berry{ - pixel_x = -5; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) -"IL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/spline/plain/opaque/black{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"IQ" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/dark, -/area/ship/medical) "IS" = ( /mob/living/simple_animal/butterfly, /obj/structure/flora/ausbushes/ppflowers, @@ -3770,33 +3617,24 @@ /obj/structure/flora/bush, /turf/open/floor/grass, /area/ship/hallway/central) -"IU" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/closet/emcloset/wall{ - pixel_y = 31 - }, -/obj/structure/catwalk/over, +"Jg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plating, -/area/ship/engineering) -"Jr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 +/obj/machinery/light/directional/north, +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/spline/plain/opaque/black{ + dir = 1 }, -/turf/open/floor/wood/walnut, -/area/ship/crew/janitor) +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "Ju" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -3823,30 +3661,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/medical) -"JH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) "JI" = ( /obj/structure/closet/wall/white/med{ name = "medical locker"; @@ -3900,6 +3714,21 @@ "JZ" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/hallway/central) +"Ko" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/corner_techfloor_grid/diagonal, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"Kt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner_techfloor_grid/diagonal, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "Ku" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -3918,10 +3747,46 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen/kitchen) +"Kv" = ( +/obj/effect/turf_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "enginestorage"; + name = "Engineering Storage" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "KC" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"KG" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/box/gum/happiness{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/light/small/directional/north, +/obj/item/storage/pill_bottle/psicodine{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/plasteel/tech, +/area/ship/medical) "KM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -3938,6 +3803,15 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/office) +"KP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood/walnut, +/area/ship/crew/janitor) "KR" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/three, @@ -3950,17 +3824,6 @@ /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/wood/walnut, /area/ship/crew/hydroponics) -"KV" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/carpet/red, -/area/ship/crew/office) "KX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -4092,6 +3955,17 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Lu" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/cat/kitten{ + desc = "One of Cheri's offspring, it purrs with glee as you pet it."; + name = "Panko" + }, +/obj/item/toy/cattoy, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm) "Ly" = ( /obj/effect/turf_decal/syndicateemblem/middle/left, /obj/effect/decal/cleanable/dirt, @@ -4111,15 +3985,25 @@ }, /turf/open/floor/carpet/red, /area/ship/crew/office) -"Mt" = ( -/obj/machinery/door/airlock/hatch{ - name = "Bathroom" +"Mb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ + dir = 4 }, -/obj/effect/turf_decal/techfloor/hole/right, -/obj/effect/turf_decal/techfloor/hole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) +/obj/effect/decal/cleanable/generic, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"Mc" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "Mv" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) @@ -4133,39 +4017,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"ME" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/decal/cleanable/plasma, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"MF" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/spline/plain/opaque/black{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) "MH" = ( /obj/effect/turf_decal/syndicateemblem/middle/right, /obj/effect/decal/cleanable/dirt, @@ -4184,18 +4035,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"MR" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/opaque/brown/filled/line, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/canteen/kitchen) "MS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -4222,19 +4061,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plasteel/dark, /area/ship/medical) -"MX" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 5 - }, -/obj/structure/frame/machine, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "Nd" = ( /obj/machinery/seed_extractor, /obj/machinery/light_switch{ @@ -4245,27 +4071,11 @@ dir = 1 }, /obj/item/toy/figure/botanist{ - pixel_x = -8; - pixel_y = 13 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) -"Nl" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/opaque/blue/filled/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 + pixel_x = -8; + pixel_y = 13 }, -/turf/open/floor/plasteel/dark, -/area/ship/medical) +/turf/open/floor/plasteel/tech, +/area/ship/crew/hydroponics) "Nn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 @@ -4299,6 +4109,14 @@ /obj/effect/turf_decal/trimline/opaque/blue/filled/line, /turf/open/floor/plasteel/tech, /area/ship/medical) +"NB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ship/bridge) "NI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -4330,6 +4148,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ship/medical) +"NN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/red, +/area/ship/crew/office) "NR" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ @@ -4345,6 +4174,18 @@ }, /turf/open/floor/wood/walnut, /area/ship/crew/canteen/kitchen) +"NS" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/table/reinforced, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/opaque/brown/filled/line, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/tech, +/area/ship/crew/canteen/kitchen) "Od" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -4361,6 +4202,14 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"Os" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/walnut, +/area/ship/crew/office) "Oz" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/wood/walnut, @@ -4415,6 +4264,18 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"Pe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/walnut, +/area/ship/crew/office) "Pf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/hatch{ @@ -4422,6 +4283,18 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/janitor) +"Pq" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/crew/janitor) "PM" = ( /obj/structure/chair/comfy/shuttle{ dir = 4; @@ -4430,22 +4303,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/walnut, /area/ship/bridge) -"PO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/catwalk/over, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ship/engineering) "PU" = ( /obj/machinery/space_heater, /turf/open/floor/plasteel/tech/techmaint, @@ -4464,6 +4321,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"PX" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Qd" = ( /obj/effect/turf_decal/syndicateemblem/bottom/middle, /obj/structure/cable/yellow{ @@ -4506,11 +4371,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Qr" = ( -/obj/structure/catwalk/over, -/obj/item/trash/popcorn, -/turf/open/floor/plating, -/area/ship/engineering) "Qt" = ( /obj/effect/turf_decal/corner_techfloor_grid/diagonal, /obj/effect/turf_decal/techfloor/orange/corner{ @@ -4569,23 +4429,21 @@ /obj/machinery/smartfridge/chemistry/preloaded, /turf/closed/wall/r_wall/syndicate, /area/ship/medical) -"Rm" = ( -/obj/item/clothing/under/syndicate, -/obj/item/clothing/under/syndicate/skirt, -/obj/item/storage/fancy/cigarettes/cigpack_syndicate, -/obj/structure/closet/syndicate{ - desc = "It's a basic storage unit."; - name = "uniform closet" +"Rg" = ( +/obj/machinery/light/directional/north, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/shoes/combat, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 +/obj/structure/catwalk/over, +/obj/item/trash/boritos, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/item/kitchen/knife/combat/survival, -/obj/effect/turf_decal/industrial/warning/full, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "RF" = ( /obj/structure/table/reinforced, /obj/machinery/microwave, @@ -4639,28 +4497,27 @@ "SF" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/cargo) -"SN" = ( -/obj/machinery/power/apc/auto_name/west, +"SW" = ( /obj/structure/cable/yellow{ - icon_state = "0-4" + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 + dir = 10 }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -8; - pixel_y = -24 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/tech, -/area/ship/science) +/area/ship/cargo) "Tf" = ( /obj/structure/sign/departments/restroom, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -4670,6 +4527,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/dark, /area/ship/medical) "To" = ( @@ -4757,34 +4615,25 @@ /obj/effect/turf_decal/industrial/warning/full, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"TI" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, +"TE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/catwalk/over, -/obj/effect/decal/cleanable/plasma, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 + dir = 4 }, -/obj/machinery/button/door{ - id = "engine"; - name = "Engine shutter control"; - pixel_y = 26 +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Produce Production" }, +/obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor/hole/right, +/obj/effect/turf_decal/techfloor/hole, +/turf/open/floor/plasteel/tech, +/area/ship/crew/hydroponics) "TL" = ( /obj/effect/turf_decal/techfloor/orange{ dir = 1 @@ -4818,6 +4667,30 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Ul" = ( +/obj/effect/turf_decal/trimline/opaque/blue/filled/shrink_cw{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/stamp/cmo{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/donut/jelly/berry{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "Um" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -4837,6 +4710,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/crew/hydroponics) +"Us" = ( +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/walnut, +/area/ship/bridge) +"Uu" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/trimline/opaque/brown/filled/line, +/turf/open/floor/plasteel/tech, +/area/ship/crew/canteen/kitchen) "UC" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line, @@ -4845,6 +4729,35 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/hydroponics) +"UH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Medbay" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/techfloor/hole, +/obj/effect/turf_decal/techfloor/hole/right, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/medical) +"UI" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood/walnut, +/area/ship/bridge) "UN" = ( /obj/effect/turf_decal/corner_techfloor_grid/diagonal, /obj/effect/turf_decal/techfloor/orange/corner{ @@ -4946,13 +4859,61 @@ /obj/effect/turf_decal/spline/plain/opaque/black, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"VG" = ( -/obj/structure/sign/syndicate, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/cargo) -"VT" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/crew/canteen/kitchen) +"VG" = ( +/obj/structure/sign/syndicate, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/cargo) +"VT" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/crew/canteen/kitchen) +"VU" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/tech, +/area/ship/science) +"Wb" = ( +/obj/effect/turf_decal/corner_techfloor_grid/diagonal, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/head/helmet/space/syndicate/black/med, +/obj/item/clothing/suit/space/syndicate/black/med, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"Wc" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/light/small/directional/north, +/turf/open/floor/grass, +/area/ship/hallway/central) "Wd" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/ppflowers, @@ -4970,16 +4931,6 @@ /obj/structure/flora/bush, /turf/open/floor/grass, /area/ship/crew/canteen) -"Wf" = ( -/obj/structure/bed/dogbed, -/obj/machinery/light, -/mob/living/simple_animal/pet/cat/Runtime{ - desc = "The captains prized cat, it seems very friendly!"; - name = "Cheri" - }, -/obj/item/toy/cattoy, -/turf/open/floor/wood/walnut, -/area/ship/bridge) "Ws" = ( /obj/effect/turf_decal/trimline/opaque/blue/filled/line, /obj/effect/decal/cleanable/dirt, @@ -5009,6 +4960,21 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"WC" = ( +/obj/structure/chair/sofa/left, +/obj/item/radio/intercom/directional/north{ + pixel_x = 4; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) "WE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -5027,21 +4993,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech, /area/ship/crew/hydroponics) -"WF" = ( -/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/tomato_smudge, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/seeds/poppy, -/obj/item/seeds/poppy/lily, -/obj/item/seeds/sunflower, -/obj/structure/closet/crate/hydroponics, -/obj/item/seeds/random, -/turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) "WG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 @@ -5081,11 +5032,6 @@ /obj/item/reagent_containers/food/condiment/saltshaker, /turf/open/floor/wood/walnut, /area/ship/crew/canteen/kitchen) -"Xa" = ( -/obj/machinery/light, -/obj/item/kirbyplants/random, -/turf/open/floor/wood/walnut, -/area/ship/bridge) "Xb" = ( /obj/structure/table, /obj/item/storage/firstaid/brute{ @@ -5147,43 +5093,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/walnut, /area/ship/crew/canteen/kitchen) -"XH" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box{ - pixel_x = -4; - pixel_y = -8 +"Xs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/item/reagent_containers/food/snacks/store/cake/bsvc{ - pixel_x = 5; - pixel_y = 6 +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 }, -/obj/item/reagent_containers/food/snacks/store/cake/bscc{ - pixel_x = -4; - pixel_y = 7 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/wood/walnut, -/area/ship/crew/office) -"XV" = ( -/obj/machinery/light{ +/obj/structure/catwalk/over, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, /obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, -/obj/item/trash/boritos, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + icon_state = "2-4" }, /turf/open/floor/plating, /area/ship/engineering) @@ -5211,24 +5137,17 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen/kitchen) -"Ya" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"XZ" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/door/airlock/hatch{ - name = "Produce Production" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + dir = 4 }, -/obj/effect/turf_decal/techfloor/hole/right, -/obj/effect/turf_decal/techfloor/hole, -/turf/open/floor/plasteel/tech, -/area/ship/crew/hydroponics) +/turf/open/floor/carpet/red, +/area/ship/crew/canteen) "Yd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -5257,6 +5176,11 @@ }, /turf/open/floor/engine/hull, /area/ship/engineering) +"Yt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/crew/janitor) "YA" = ( /obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{ dir = 1 @@ -5287,14 +5211,6 @@ /obj/effect/turf_decal/trimline/opaque/brown/filled/line, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen/kitchen) -"YK" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "exterior"; - name = "Exterior Shutters" - }, -/turf/open/floor/plating, -/area/ship/medical) "YL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -5356,16 +5272,21 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Zm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 +"Zk" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/structure/toilet{ - dir = 8 +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ + dir = 4 }, /turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) +/area/ship/cargo) "Zu" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood{ @@ -5391,6 +5312,15 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen/kitchen) +"ZD" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/corner_techfloor_grid/diagonal, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "ZJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -5399,27 +5329,6 @@ /obj/effect/decal/cleanable/plasma, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"ZK" = ( -/obj/effect/turf_decal/corner_techfloor_grid/diagonal{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/loading/white, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"ZS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) "ZU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -5450,6 +5359,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/walnut, /area/ship/bridge) +"ZX" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/dark, +/area/ship/medical) "ZY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -5474,17 +5391,51 @@ wk wk wk wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +Ew +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +"} +(2,1,1) = {" +wk +wk +wk +wk +wk +wk +wk xO xO hl -iq -iq -iq +kU +kU +kU VG -iW -Dy -vv -ze +ls +Cc +Cc +gt aP aP aP @@ -5500,7 +5451,7 @@ wk wk wk "} -(2,1,1) = {" +(3,1,1) = {" wk wk wk @@ -5511,7 +5462,7 @@ Ss xO Oz hl -wl +Ff it og aP @@ -5519,9 +5470,9 @@ Zj Aq lY WG -kY +Kt lw -mN +Wb aP Xk Xk @@ -5534,7 +5485,7 @@ wk wk wk "} -(3,1,1) = {" +(4,1,1) = {" wk wk wk @@ -5545,17 +5496,17 @@ xO go qM DV -cf +Ez iO Ee aP -ZK +iJ GL gR pS Um Nn -oz +Hp aP Nd Uo @@ -5568,32 +5519,32 @@ wk wk wk "} -(4,1,1) = {" +(5,1,1) = {" wk wk Ss Ss -Zm +io fk md gU -rM +Lu hl -xe +WC jF -ad +Bq hl aP -dS +Zk Ho bc Vy -JH +SW St aP -ws +Iw gN -ta +sE Xk zW It @@ -5602,7 +5553,7 @@ wk wk wk "} -(5,1,1) = {" +(6,1,1) = {" wk Ss xO @@ -5613,7 +5564,7 @@ dI cr XX hl -xk +XZ yZ jq Wd @@ -5623,25 +5574,25 @@ aP aP aP aP -mj +hC aP aG dT UC Xk -ME +tG qA It Mv wk wk "} -(6,1,1) = {" +(7,1,1) = {" Ss xO xO xO -ga +hx bx cc yV @@ -5651,15 +5602,15 @@ Bn hS jB lo -ZS +ny jJ jJ jJ jJ -dj +FU Ga Xk -iZ +Fk WE dH Xk @@ -5670,20 +5621,20 @@ It wk wk "} -(7,1,1) = {" +(8,1,1) = {" Ss bf Zu QC aW bE -DI +qD Xd -av +wC xO -iq -iq -iq +kU +kU +kU zv rk AA @@ -5695,22 +5646,22 @@ ij Dj Sa OD -tq +pn Xk It -IC -qn +sN +Kv It sI wk "} -(8,1,1) = {" +(9,1,1) = {" Ss -bV +aB ah xO kz -yl +wh xO xO xO @@ -5722,23 +5673,23 @@ JZ JZ zv zv -uQ +mh Ll Od uF KS -WF +oM YX -wU +Df Xk -MX +HV DH pT fD sb wk "} -(9,1,1) = {" +(10,1,1) = {" Ss cp xO @@ -5763,7 +5714,7 @@ VF KS YA Ju -sg +eQ Xk vw dq @@ -5772,7 +5723,7 @@ VA EJ wk "} -(10,1,1) = {" +(11,1,1) = {" Ss az Ss @@ -5792,7 +5743,7 @@ wk wk JZ zv -IL +Jg VF KS CP @@ -5806,7 +5757,7 @@ fD sb wk "} -(11,1,1) = {" +(12,1,1) = {" wk wk wk @@ -5826,11 +5777,11 @@ wk wk wk zv -bN +Fv VF Xk Xk -Ya +TE Ch It Ld @@ -5840,7 +5791,7 @@ It It wk "} -(12,1,1) = {" +(13,1,1) = {" wk wk wk @@ -5851,9 +5802,9 @@ wk wk wk gq -gW -gW -gW +FJ +FJ +FJ gq wk wk @@ -5865,16 +5816,16 @@ qt WX vh ZU -Cp +gB It wu yb mt -yM +Mb It wk "} -(13,1,1) = {" +(14,1,1) = {" wk wk wk @@ -5885,7 +5836,7 @@ wk wk gq uM -wO +fH jW oh uM @@ -5901,14 +5852,14 @@ UY Yd YI It -kW +vj It It It It Mv "} -(14,1,1) = {" +(15,1,1) = {" wk wk wk @@ -5918,16 +5869,16 @@ wk wk wk gW -rS +ag hR tJ hR -Wf +HP uM JZ zv -Rm -AJ +fb +bC ZY qt jp @@ -5935,14 +5886,14 @@ Xr ZB Gv It -PO +Bf vW Lb hw -eF +PX It "} -(15,1,1) = {" +(16,1,1) = {" wk wk wk @@ -5956,7 +5907,7 @@ rT hR FY nK -tg +UI uM te te @@ -5969,14 +5920,14 @@ Xr Ku RF It -IU +wF iv mp ya ic It "} -(16,1,1) = {" +(17,1,1) = {" wk wk wk @@ -5999,18 +5950,18 @@ Mz Qd xL VT -FN +EA mK -nV +Uu It -TI +ss IH Lt bt Zg Yo "} -(17,1,1) = {" +(18,1,1) = {" wk wk wk @@ -6024,7 +5975,7 @@ uc hR Lc aJ -tr +NB uM te te @@ -6044,7 +5995,7 @@ gx tn It "} -(18,1,1) = {" +(19,1,1) = {" wk wk wk @@ -6054,31 +6005,31 @@ wk wk wk gW -uH +bp pu PM hR -Xa +Us uM JZ zv -Bc +bX Tw xf qt bD Xr mA -MR +jh hA MS lx wM we -gO +mS It "} -(19,1,1) = {" +(20,1,1) = {" wk wk wk @@ -6089,7 +6040,7 @@ wk wk gq uM -yi +Ae mE qv uM @@ -6112,7 +6063,7 @@ It It Mv "} -(20,1,1) = {" +(21,1,1) = {" wk wk wk @@ -6123,9 +6074,9 @@ wk wk wk gq -gW -gW -gW +FJ +FJ +FJ gq wk wk @@ -6137,16 +6088,16 @@ qt NR eW cS -GU +NS It Fh ue -Hq -rE +ZD +Ko It wk "} -(21,1,1) = {" +(22,1,1) = {" wk wk wk @@ -6170,17 +6121,17 @@ Gc VF VT VT -uW +Iy It It -pe +Xs fE oJ It It wk "} -(22,1,1) = {" +(23,1,1) = {" dZ aR dZ @@ -6200,21 +6151,21 @@ wk wk JZ zv -MF +cO WL RS -uz +pl KX QI pm gK -Vh +cd vG gV sb wk "} -(23,1,1) = {" +(24,1,1) = {" kj di kj @@ -6242,19 +6193,19 @@ WQ WQ It Fj -dq +mm TL VA EJ wk "} -(24,1,1) = {" +(25,1,1) = {" kj -eV +Yt Wu Pf CG -mJ +Pq Fo Fo Fo @@ -6266,44 +6217,44 @@ Bh TS TS TS -aO +Wc MP jf YL qf GN -dy -XH +Pe +qX It -XV -Qr +Rg +CX xq fD sb wk "} -(25,1,1) = {" +(26,1,1) = {" kj fg hr kj -Jr +KP qa nY cF -SN +VU Fo -YK -YK -YK +dL +dL +dL TS -zA +KG CC TS MP Dk Tf -Mt +sk zv WQ cL @@ -6316,7 +6267,7 @@ It sI wk "} -(26,1,1) = {" +(27,1,1) = {" dZ kj kj @@ -6334,23 +6285,23 @@ tW kf xh TS -dc +UH TS zv rO -oE +cE WQ hf BN WQ -qx +qy QG -HL +qe It wk wk "} -(27,1,1) = {" +(28,1,1) = {" wk dZ kj @@ -6359,11 +6310,11 @@ kj kj Fo mG -dK +if Fo AH mT -oU +fL Bh ej CW @@ -6384,13 +6335,13 @@ Mv wk wk "} -(28,1,1) = {" +(29,1,1) = {" wk wk Bh Bh dY -nS +gp Fo Fo ei @@ -6404,21 +6355,21 @@ Dn UP IA MV -IQ +ZX La Ww ey eC -KV +NN WQ -zs +mM It Mv wk wk wk "} -(29,1,1) = {" +(30,1,1) = {" wk wk wk @@ -6442,17 +6393,17 @@ Ti TS bw Lz -fB +Os LN WQ -fw +Ge It wk wk wk wk "} -(30,1,1) = {" +(31,1,1) = {" wk wk wk @@ -6462,16 +6413,16 @@ TS TS TS Tt -BM +rg Dw Nv FB rn yA -IJ -Gr +Ul +xN JB -Nl +Mc sU TS WQ @@ -6486,7 +6437,7 @@ wk wk wk "} -(31,1,1) = {" +(32,1,1) = {" wk wk wk @@ -6497,9 +6448,9 @@ wk TS TS TS -YK -YK -YK +dL +dL +dL Yf QV TS diff --git a/_maps/shuttles/shiptest/syndicate_cybersun_kansatsu.dmm b/_maps/shuttles/shiptest/syndicate_cybersun_kansatsu.dmm index d98e50159475..845e6e9f8e11 100644 --- a/_maps/shuttles/shiptest/syndicate_cybersun_kansatsu.dmm +++ b/_maps/shuttles/shiptest/syndicate_cybersun_kansatsu.dmm @@ -62,10 +62,7 @@ /obj/item/reagent_containers/food/snacks/canned/beans, /obj/item/reagent_containers/food/snacks/canned/beans, /obj/effect/turf_decal/box, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -30 - }, +/obj/machinery/firealarm/directional/west, /obj/item/reagent_containers/food/snacks/canned/peaches, /obj/item/reagent_containers/food/snacks/canned/peaches, /obj/item/reagent_containers/food/snacks/canned/peaches, @@ -84,10 +81,7 @@ dir = 1 }, /obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -30 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) "bO" = ( @@ -102,8 +96,8 @@ /obj/item/storage/firstaid/regular, /obj/structure/closet/wall/white{ dir = 1; - pixel_y = -32; - name = "Medical Supplies" + name = "Medical Supplies"; + pixel_y = -32 }, /turf/open/floor/plasteel/dark, /area/ship/crew) @@ -164,9 +158,7 @@ /area/ship/hallway/central) "dj" = ( /obj/item/toy/cards/deck, -/obj/machinery/light/small/broken{ - dir = 1 - }, +/obj/machinery/light/small/broken/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, @@ -204,9 +196,11 @@ /area/ship/crew) "dA" = ( /obj/machinery/door/airlock/command{ + dir = 4; name = "Bridge" }, /obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; id = "intelfucky" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -245,10 +239,7 @@ /obj/effect/turf_decal/trimline/opaque/bar/filled/corner{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/spline/fancy/transparent/grey{ dir = 4 }, @@ -279,12 +270,13 @@ }, /obj/machinery/button/door{ dir = 1; - pixel_y = -23; - pixel_x = -7; id = "intelfucky"; - name = "Privacy Lock" + name = "Privacy Lock"; + pixel_x = -7; + pixel_y = -23 }, /obj/effect/turf_decal/industrial/outline/red, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) "gj" = ( @@ -302,8 +294,8 @@ }, /obj/structure/cable, /obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "scholo"; - dir = 4 + dir = 4; + id = "scholo" }, /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ @@ -330,7 +322,7 @@ /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) "ii" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "1-8" }, @@ -341,9 +333,7 @@ /obj/effect/turf_decal/spline/fancy/transparent/grey{ dir = 6 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plating, /area/ship/engineering) "im" = ( @@ -357,7 +347,7 @@ /turf/open/floor/plating, /area/ship/engineering) "in" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -407,7 +397,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/turf_decal/spline/fancy/transparent/grey, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -419,14 +409,13 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, /obj/item/storage/secure/safe/intel/stechkin{ - pixel_x = -22 + pixel_x = -30; + dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) @@ -460,9 +449,7 @@ /turf/open/floor/carpet/red, /area/ship/crew) "km" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/structure/table, /obj/item/chair/plastic, /obj/item/chair/plastic{ @@ -506,17 +493,12 @@ /obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew) "lP" = ( /obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/atmospherics/components/unary/tank/air{ dir = 8; piping_layer = 2 @@ -624,8 +606,8 @@ /obj/machinery/photocopier/faxmachine/longrange, /obj/item/toy/figure/detective{ name = "Intel Buddy"; - pixel_y = 10; pixel_x = 5; + pixel_y = 10; toysay = "Let's see what Command thinks of this..." }, /obj/structure/table/glass, @@ -654,8 +636,8 @@ }, /obj/structure/cable, /obj/machinery/power/shieldwallgen/atmos/roundstart{ - id = "scholo"; - dir = 8 + dir = 8; + id = "scholo" }, /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ @@ -680,7 +662,7 @@ dir = 1 }, /obj/effect/turf_decal/spline/fancy/opaque/syndiered, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/white, /area/ship/hallway/central) "qo" = ( @@ -691,6 +673,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 }, +/obj/structure/sign/poster/official/here_for_your_safety{ + pixel_x = 28 + }, /turf/open/floor/plasteel/white, /area/ship/crew/office) "qv" = ( @@ -707,10 +692,11 @@ /obj/structure/cable{ icon_state = "0-8" }, +/obj/item/clothing/mask/fakemoustache, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "scengine" }, -/obj/item/clothing/mask/fakemoustache, /turf/open/floor/plating, /area/ship/engineering) "qz" = ( @@ -721,9 +707,7 @@ /obj/item/clothing/suit/space/syndicate/black/red, /obj/item/clothing/head/helmet/space/syndicate/black/red, /obj/item/tank/jetpack/oxygen/harness, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/item/clothing/mask/gas/syndicate, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/tech/techmaint, @@ -735,16 +719,10 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 4 }, -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_x = -3; - pixel_y = 31 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, @@ -758,6 +736,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ship/hallway/central) +"re" = ( +/obj/docking_port/stationary{ + dwidth = 3; + width = 7; + height = 15; + dir = 2 + }, +/turf/template_noop, +/area/template_noop) "rh" = ( /obj/structure/cable{ icon_state = "1-2" @@ -789,9 +776,9 @@ /area/ship/engineering) "rF" = ( /obj/machinery/button/door{ + dir = 8; id = "scengine"; name = "Engine Blast Shutters"; - dir = 8; pixel_x = -8 }, /turf/closed/wall/mineral/plastitanium, @@ -805,8 +792,8 @@ dir = 9 }, /obj/item/stack/sheet/mineral/plasma/twenty{ - pixel_y = 6; - pixel_x = 5 + pixel_x = 5; + pixel_y = 6 }, /obj/item/wrench, /turf/open/floor/plating, @@ -830,23 +817,18 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 30 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/sign/poster/contraband/stechkin{ pixel_y = -32 }, /turf/open/floor/plasteel/white, /area/ship/crew/office) "tk" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/trimline/opaque/bar/filled/corner{ dir = 8 }, @@ -898,9 +880,8 @@ /obj/effect/turf_decal/trimline/opaque/bar/filled/corner{ dir = 1 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/landmark/observer_start, /turf/open/floor/plasteel/white, /area/ship/hallway/central) "uq" = ( @@ -923,9 +904,7 @@ dir = 1 }, /obj/effect/turf_decal/spline/fancy/opaque/syndiered, -/obj/machinery/firealarm{ - pixel_y = 30 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plasteel/white, /area/ship/hallway/central) "vL" = ( @@ -946,7 +925,7 @@ "vN" = ( /obj/structure/table/reinforced, /obj/item/binoculars, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/structure/cable{ icon_state = "0-2" @@ -959,38 +938,36 @@ pixel_y = 9 }, /obj/machinery/button/door{ - pixel_y = 9; - pixel_x = 5; + id = "scbridge"; name = "Bridge Blast Shutters"; - id = "scbridge" + pixel_x = 5; + pixel_y = 9 }, /obj/machinery/button/shieldwallgen{ + id = "scholo"; name = "Holofield Controls"; - pixel_y = -3; pixel_x = -9; - id = "scholo" + pixel_y = -3 }, /turf/open/floor/plasteel/mono/dark, /area/ship/bridge) "xf" = ( -/obj/machinery/power/apc/auto_name/south{ - pixel_y = -25 - }, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/industrial/warning/corner, /obj/machinery/button/shieldwallgen{ - name = "Holofield Controls"; dir = 1; - pixel_y = -33; + id = "scholo"; + name = "Holofield Controls"; pixel_x = -6; - id = "scholo" + pixel_y = -33 }, /obj/machinery/button/door{ desc = "A remote control switch."; + dir = 1; id = "scbay"; name = "Cargo Bay Doors"; pixel_x = 3; - pixel_y = -35; - dir = 1 + pixel_y = -35 }, /obj/structure/cable{ icon_state = "1-4" @@ -1027,9 +1004,7 @@ /obj/item/clothing/shoes/sneakers/black, /obj/item/clothing/head/beanie/black, /obj/item/clothing/head/beanie/black, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/item/clothing/mask/fakemoustache/italian, /obj/item/clothing/mask/fakemoustache/italian, /turf/open/floor/plasteel/tech/grid, @@ -1054,6 +1029,7 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ + dir = 4; name = "Engineering" }, /obj/effect/turf_decal/trimline/opaque/syndiered/filled/warning{ @@ -1110,7 +1086,7 @@ /obj/machinery/camera/autoname{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/engineering) @@ -1143,12 +1119,6 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) -"Av" = ( -/obj/item/radio/intercom{ - pixel_y = -9 - }, -/turf/closed/wall/mineral/plastitanium, -/area/ship/crew/dorm) "AM" = ( /obj/effect/turf_decal/trimline/opaque/syndiered/filled/warning, /obj/effect/turf_decal/trimline/opaque/syndiered/filled/warning{ @@ -1167,7 +1137,7 @@ /turf/open/floor/plating, /area/ship/engineering) "BS" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel/dark, /area/ship/crew) "Cr" = ( @@ -1188,10 +1158,11 @@ dir = 8 }, /obj/effect/turf_decal/industrial/hatch/red, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/dorm) "CR" = ( @@ -1214,6 +1185,7 @@ icon_state = "0-8" }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "scengine" }, /turf/open/floor/plating, @@ -1235,13 +1207,10 @@ dir = 4; name = "Intel Officer's Chair" }, -/obj/item/radio/intercom/wideband{ - reach = 2; - pixel_y = -28; - dir = 1 +/obj/item/radio/intercom/wideband/directional/south{ + reach = 2 }, /obj/effect/turf_decal/trimline/opaque/bar, -/obj/machinery/light, /turf/open/floor/plasteel/dark, /area/ship/bridge) "EX" = ( @@ -1263,9 +1232,7 @@ /obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{ dir = 1 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/dark, /area/ship/crew) "Fw" = ( @@ -1276,6 +1243,14 @@ /obj/structure/table/wood, /turf/open/floor/carpet/red, /area/ship/crew) +"FH" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + dir = 4; + id = "scbridge" + }, +/turf/open/floor/plating, +/area/ship/bridge) "FJ" = ( /obj/structure/chair{ dir = 4 @@ -1301,13 +1276,6 @@ }, /turf/open/floor/plating, /area/ship/engineering) -"Gb" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall/mineral/plastitanium, -/area/ship/bridge) "GG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/computer/security{ @@ -1329,6 +1297,7 @@ /obj/item/bedsheet/blue, /obj/structure/bed/pod, /obj/structure/curtain, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/dorm) "Hz" = ( @@ -1349,9 +1318,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/spline/fancy/transparent/grey{ dir = 4 }, @@ -1387,10 +1354,7 @@ /obj/structure/closet/wall{ pixel_y = 28 }, -/obj/machinery/computer/cryopod{ - pixel_x = -24; - dir = 4 - }, +/obj/machinery/computer/cryopod/directional/west, /obj/machinery/camera/autoname{ dir = 4 }, @@ -1428,8 +1392,8 @@ /area/ship/bridge) "KP" = ( /obj/structure/closet/wall{ - pixel_y = 28; - name = "emergency rum cabinet" + name = "emergency rum cabinet"; + pixel_y = 28 }, /obj/item/reagent_containers/food/drinks/bottle/rum, /obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{ @@ -1455,10 +1419,7 @@ dir = 8; pixel_x = 12 }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/crew/dorm) "Mb" = ( @@ -1470,21 +1431,14 @@ pixel_y = 28 }, /obj/effect/turf_decal/trimline/opaque/bar, -/obj/machinery/light{ - dir = 1 - }, /turf/open/floor/plasteel/dark, /area/ship/bridge) "MH" = ( /obj/effect/turf_decal/corner/opaque/syndiered/bordercorner, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - pixel_y = 30 - }, +/obj/machinery/firealarm/directional/north, /obj/item/kirbyplants/fullysynthetic, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/plasteel/dark, /area/ship/crew) "Nu" = ( @@ -1494,9 +1448,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/machinery/suit_storage_unit/inherit, /obj/item/clothing/head/helmet/space/syndicate/black/red, /obj/item/clothing/suit/space/syndicate/black/red, @@ -1520,23 +1472,19 @@ icon_state = "0-8" }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "scengine" }, /turf/open/floor/plating, /area/ship/engineering) "NW" = ( /obj/structure/table, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/item/storage/toolbox/mechanical{ pixel_y = 8 }, /obj/item/storage/toolbox/electrical, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 }, @@ -1567,10 +1515,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{ dir = 1 @@ -1590,7 +1535,7 @@ /turf/open/floor/plasteel/white, /area/ship/hallway/central) "OD" = ( -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, @@ -1622,14 +1567,11 @@ "Pk" = ( /obj/machinery/mineral/ore_redemption{ dir = 8; - output_dir = null; - input_dir = 8 + input_dir = 8; + output_dir = null }, /obj/effect/turf_decal/box, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) "Qa" = ( @@ -1666,16 +1608,10 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light/small{ - dir = 8 - }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/white, /area/ship/crew/dorm) "QO" = ( @@ -1683,19 +1619,17 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/item/paper_bin{ pixel_x = -4 }, /obj/item/pen/fountain, /obj/item/folder/syndicate{ + icon_state = "folder_sred"; pixel_x = 8; - pixel_y = -2; - icon_state = "folder_sred" + pixel_y = -2 }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/plasteel/mono/dark, /area/ship/bridge) "Ri" = ( @@ -1708,9 +1642,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech/techmaint, /area/ship/cargo) "Rr" = ( @@ -1760,7 +1692,7 @@ /turf/open/floor/plasteel/dark, /area/ship/crew) "RY" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/chair/office{ dir = 4 @@ -1769,16 +1701,16 @@ dir = 1 }, /obj/item/stack/tile/plasteel/dark{ - pixel_y = -16; - pixel_x = -11 + pixel_x = -11; + pixel_y = -16 }, /obj/item/clothing/neck/stethoscope{ - pixel_y = -15; - pixel_x = 9 + pixel_x = 9; + pixel_y = -15 }, /obj/item/crowbar{ - pixel_y = -11; - pixel_x = -8 + pixel_x = -8; + pixel_y = -11 }, /turf/open/floor/plasteel/dark, /area/ship/crew/office) @@ -1798,7 +1730,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/machinery/space_heater, /turf/open/floor/plating, /area/ship/engineering) @@ -1810,8 +1742,8 @@ /obj/item/clipboard, /obj/item/pen, /obj/item/clothing/glasses/night{ - pixel_y = 9; - pixel_x = -3 + pixel_x = -3; + pixel_y = 9 }, /obj/item/camera{ pixel_x = -1; @@ -1835,9 +1767,7 @@ /obj/item/storage/belt/utility/full, /obj/item/clothing/glasses/welding, /obj/item/clothing/glasses/welding, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating, /area/ship/engineering) "UZ" = ( @@ -1858,27 +1788,23 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = 30 - }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/plating, /area/ship/engineering) "Vo" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/button/door{ dir = 4; - pixel_y = 9; + id = "thefunny"; pixel_x = -23; - id = "thefunny" + pixel_y = 9 }, /obj/machinery/button/door{ dir = 4; - pixel_y = -6; - pixel_x = -23; id = "intelwindow"; - name = "Window Shutters" + name = "Window Shutters"; + pixel_x = -23; + pixel_y = -6 }, /obj/structure/safe/floor{ number_of_tumblers = 3 @@ -1905,9 +1831,7 @@ /area/ship/crew/office) "Vw" = ( /obj/structure/chair/comfy/black, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/structure/sign/poster/contraband/red_rum{ pixel_y = 32 }, @@ -1941,6 +1865,7 @@ /area/ship/engineering) "Xc" = ( /obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; id = "intelfucky" }, /turf/open/floor/plasteel/stairs{ @@ -2013,9 +1938,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/turf_decal/spline/fancy/transparent/grey{ dir = 1 }, @@ -2026,9 +1949,8 @@ dir = 8 }, /obj/effect/turf_decal/industrial/outline/red, -/obj/machinery/firealarm{ - pixel_y = 30 - }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) "ZQ" = ( @@ -2221,7 +2143,7 @@ dq Ld iN Cr -YQ +re YQ "} (12,1,1) = {" @@ -2279,7 +2201,7 @@ YQ YQ YQ YQ -Av +qA CP Hd qA @@ -2371,7 +2293,7 @@ vN aa GG QO -Gb +bO YQ YQ YQ @@ -2470,8 +2392,8 @@ YQ YQ YQ Rz -Rz -Rz +FH +FH Rz YQ YQ diff --git a/_maps/shuttles/shiptest/syndicate_gec_lugol.dmm b/_maps/shuttles/shiptest/syndicate_gec_lugol.dmm index aa1bdf39ec20..ca80c0b15f51 100644 --- a/_maps/shuttles/shiptest/syndicate_gec_lugol.dmm +++ b/_maps/shuttles/shiptest/syndicate_gec_lugol.dmm @@ -1,52 +1,28 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/railing{ - dir = 8; - pixel_x = -7 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) +"ah" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/airless, +/area/ship/construction) "ak" = ( /obj/effect/turf_decal/industrial/warning{ dir = 9 }, /turf/open/floor/plating/airless, /area/ship/construction) -"al" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2 - }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/cryopod{ - dir = 8 +"aA" = ( +/obj/structure/cable{ + icon_state = "1-2" }, /obj/structure/railing{ dir = 4; - pixel_x = 7 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 + pixel_x = 8 }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/turf/open/floor/plasteel/stairs{ + dir = 2; + icon = 'icons/obj/stairs.dmi' }, -/area/ship/crew/dorm) +/area/ship/engineering) "aE" = ( /obj/effect/turf_decal/steeldecal/steel_decals_central2, /obj/effect/turf_decal/steeldecal/steel_decals_central2{ @@ -57,46 +33,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) -"aH" = ( -/obj/structure/railing{ - dir = 1; - pixel_y = 7 - }, -/obj/effect/turf_decal/trimline/transparent/bar/filled/warning, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light/small/broken, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) -"aK" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) -"aL" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Waste to Filtering"; - desc = "A pump that moves gas by pressure. This one pumps gas from the ship's waste loop into the filtering section" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ - dir = 6 - }, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "aP" = ( /obj/machinery/power/floodlight{ anchored = 1 @@ -155,44 +91,19 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"bj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Construction Zone" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ +"bm" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/pill_bottle/potassiodide, +/obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) -"bk" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/effect/turf_decal/arrows, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"bs" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - pixel_y = 8; - pixel_x = -4 - }, -/obj/effect/turf_decal/trimline/transparent/bar/filled/line{ - dir = 9 +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "by" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 10 @@ -241,16 +152,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"bU" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/canteen) "bZ" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -264,6 +165,33 @@ }, /turf/open/floor/engine/hull/reinforced/interior, /area/ship/engineering/atmospherics) +"ca" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bridge_shutters" + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/bridge) +"ce" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -5; + pixel_y = -27 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "cf" = ( /obj/effect/turf_decal/atmos/mix, /turf/open/floor/engine/airless, @@ -303,24 +231,11 @@ /turf/open/floor/plasteel/tech, /area/ship/hallway/central) "cq" = ( -/obj/structure/railing{ - dir = 5 - }, /obj/structure/filingcabinet/chestdrawer{ pixel_x = -3 }, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"cz" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband{ - pixel_x = 2 - }, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) "cA" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -336,37 +251,16 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) -"cB" = ( -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/computer/cryopod{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) -"cK" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped/layer2{ - dir = 8; - name = "air mixer"; - node1_concentration = 0.21; - node2_concentration = 0.79; - on = 1; - desc = "Very useful for mixing gasses. This one mixes Nitrogen and Oxygen at the proper proportions for breathing air"; - target_pressure = 2500 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ +"cN" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer4{ - dir = 4 +/obj/machinery/door/poddoor{ + dir = 4; + id = "gec_secure" }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) +/turf/open/floor/plasteel/tech/grid/airless, +/area/ship/construction) "cP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -394,6 +288,36 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ship/cargo) +"cT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"cX" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/cleanable/plastic{ + color = "#808080" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/crew/dorm) "cZ" = ( /obj/machinery/computer/helm{ dir = 8 @@ -407,16 +331,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"de" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) "dg" = ( /obj/machinery/door/airlock/hatch{ name = "Atmospherics" @@ -431,14 +345,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"dj" = ( -/obj/structure/closet/crate/secure/engineering{ - name = "Supermatter Crystal Crate"; - desc = "A dangerous supermatter crate with a lock on it. The GEC insignia has been painted over a faded Nanotrasen logo" - }, -/obj/machinery/power/supermatter_crystal/shard, -/turf/open/floor/plating/airless, -/area/ship/construction) "dn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output, /turf/open/floor/engine/o2, @@ -449,91 +355,54 @@ }, /turf/open/floor/plating, /area/ship/bridge) +"dx" = ( +/obj/structure/railing/corner{ + color = "#808080"; + dir = 1; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/kirbyplants{ + icon_state = "plant-14"; + pixel_y = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "dA" = ( /obj/structure/chair/office{ dir = 1 }, /turf/open/floor/carpet/red, /area/ship/bridge) -"dT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 +"dC" = ( +/obj/effect/decal/cleanable/glass{ + color = "#808080" }, -/obj/machinery/portable_atmospherics/pump, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/obj/effect/decal/fakelattice, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"ef" = ( -/obj/effect/decal/cleanable/dirt/dust, +/area/ship/crew/canteen) +"dQ" = ( +/obj/structure/railing, /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) -"eh" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/atmospherics/pipe/simple/brown/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "N2 Air Mix Outlet Pump"; - piping_layer = 2; - icon_state = "pump_on_map-2" - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "N2 Outlet Pump"; - icon_state = "pump_map-3"; - on = 0 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"el" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Mix Tank to Mix"; icon_state = "pump_map-2"; + name = "Mix Tank Outlet"; piping_layer = 2 }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) -"em" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -27; - pixel_x = -5 - }, -/turf/open/floor/plasteel/tech/grid, +/turf/open/floor/plating, /area/ship/engineering/atmospherics) +"dS" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) "eB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -543,18 +412,6 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"eH" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Air to Distro"; - target_pressure = 2500; - icon_state = "pump_on_map-2"; - piping_layer = 2 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) "eK" = ( /obj/structure/table, /obj/structure/sign/poster/contraband/space_cola{ @@ -565,51 +422,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) -"eM" = ( -/obj/structure/railing{ - dir = 4; - pixel_x = 7 - }, -/obj/structure/railing{ - dir = 8; - pixel_x = -7 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 1 - }, -/area/ship/crew/canteen) -"eO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"eP" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/item/storage/secure/safe/intel{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/carpet/red, -/area/ship/bridge) "eU" = ( /obj/structure/chair/stool/bar{ dir = 4 @@ -624,31 +436,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"eW" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 4 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/window{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) "eY" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible/layer4{ dir = 4 @@ -681,6 +468,26 @@ /obj/effect/turf_decal/siding/thinplating/dark, /turf/open/floor/carpet/red, /area/ship/bridge) +"fx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -5; + pixel_y = -27 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "fy" = ( /obj/machinery/suit_storage_unit/inherit/industrial, /obj/item/clothing/mask/breath, @@ -688,6 +495,13 @@ /obj/item/clothing/shoes/magboots/advance, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) +"fD" = ( +/obj/structure/tank_dispenser, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "fG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -705,59 +519,54 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"fI" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ +"fN" = ( +/turf/open/floor/engine/airless, +/area/ship/engineering/atmospherics) +"fQ" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 }, -/obj/effect/turf_decal/industrial/traffic{ - dir = 1 +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, -/obj/machinery/atmospherics/components/binary/pump/layer2{ +/area/ship/engineering) +"fU" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ dir = 4; - name = "Atmosphere to Filtering"; - desc = "A pump that moves gas by pressure. This one sucks up gasses from the atmosphere and sends them to be filtered out into the tanks" + pixel_y = 2 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"fM" = ( +/obj/item/reagent_containers/glass/rag{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) +"fV" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; id = "ce_office" }, /turf/open/floor/plating, /area/ship/bridge) -"fN" = ( -/turf/open/floor/engine/airless, -/area/ship/engineering/atmospherics) -"fW" = ( -/obj/item/holosign_creator/engineering, -/obj/item/clothing/under/syndicate/gec, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/storage/belt/utility/full/engi, -/obj/item/clothing/glasses/welding, -/obj/item/storage/toolbox/syndicate, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/analyzer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/bag/construction, -/obj/item/clothing/glasses/meson/prescription, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/mask/gas, -/obj/structure/closet/secure_closet/engineering_personal{ - populate = 0; - name = "GEC Engineer's Locker" - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/turf_decal/techfloor, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "gi" = ( /obj/effect/turf_decal/industrial/caution{ pixel_y = -15 @@ -804,24 +613,24 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"gI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/light/small, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 9 +"gD" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + dir = 1; + id = "gec_cargo"; + name = "Cargo Blast Doors"; + pixel_x = -6; + pixel_y = 2 }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/machinery/button/shieldwallgen{ + dir = 1; + id = "gec_cargo_shield"; + name = "Cargo Holoshield"; + pixel_x = 7; + pixel_y = 3 }, -/area/ship/engineering) +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "gN" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -857,6 +666,13 @@ }, /turf/open/floor/carpet/red, /area/ship/bridge) +"hj" = ( +/obj/effect/decal/fakelattice, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/crew/canteen) "hm" = ( /obj/machinery/computer/cargo/express, /obj/structure/sign/syndicate{ @@ -864,6 +680,16 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) +"hq" = ( +/obj/effect/decal/cleanable/vomit/old{ + color = "#808080" + }, +/obj/effect/decal/fakelattice, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/crew/canteen) "hr" = ( /obj/effect/turf_decal/industrial/caution{ dir = 4 @@ -939,25 +765,9 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) -"hJ" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) -"hQ" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 5 +"hQ" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 5 }, /obj/effect/turf_decal/industrial/traffic{ dir = 1 @@ -971,6 +781,33 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) +"hU" = ( +/obj/structure/railing{ + dir = 1; + pixel_y = 7 + }, +/obj/effect/turf_decal/trimline/transparent/bar/filled/warning, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) +"hV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + desc = "A pump that moves gas by pressure. Make sure your Mix isn't too hot when you open this or you'll clog your filter!"; + dir = 8; + icon_state = "pump_map-2"; + name = "Mix Tank to Filtering"; + piping_layer = 2 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "hW" = ( /obj/structure/cable{ icon_state = "4-8" @@ -990,30 +827,60 @@ "ia" = ( /turf/open/floor/plasteel/tech/airless, /area/ship/construction) -"is" = ( -/obj/effect/decal/cleanable/dirt/dust, +"ig" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/machinery/atmospherics/pipe/simple/brown/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + icon_state = "pump_on_map-2"; + name = "O2 Air Mix Outlet Pump"; + piping_layer = 2; + target_pressure = 2500 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + icon_state = "pump_map-3"; + name = "O2 Outlet Pump"; + on = 0 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"iq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + icon_state = "pump_on_map-2"; + name = "Air to Distro"; + piping_layer = 2; + target_pressure = 2500 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"iw" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + pixel_y = 2 + }, /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, /obj/effect/decal/fakelattice{ color = "#8D8B8B"; layer = 2.1 }, -/obj/machinery/atmospherics/pipe/manifold/purple/hidden{ - dir = 1 - }, /turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) -"iv" = ( -/obj/structure/particle_accelerator/particle_emitter/right, -/obj/machinery/light/small{ - dir = 8 + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, -/turf/open/floor/plating/airless, -/area/ship/construction) +/area/ship/crew/dorm) "iG" = ( /obj/effect/turf_decal/corner/transparent/bar/diagonal, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -1021,19 +888,34 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"iM" = ( -/obj/structure/railing, +"iK" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Tank Outlet"; - icon_state = "pump_map-2"; - piping_layer = 2 +/obj/structure/closet/wall{ + dir = 1; + name = "Radio Closet"; + pixel_y = -30 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) +/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/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/crew/dorm) "iQ" = ( /obj/machinery/advanced_airlock_controller{ pixel_y = -30 @@ -1077,53 +959,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"jc" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4; - bulb_power = 0.5 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) -"jg" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 9 - }, -/obj/effect/turf_decal/industrial/traffic{ - dir = 8 - }, -/obj/item/storage/toolbox/syndicate, -/obj/item/storage/belt/utility/full/engi, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/under/syndicate/gec/atmos_tech, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/holosign_creator/atmos, -/obj/item/extinguisher/advanced, -/obj/item/clothing/glasses/meson/engine, -/obj/item/pipe_dispenser, -/obj/item/analyzer, -/obj/item/clothing/mask/gas/atmos, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/suit/fire/atmos, -/obj/item/clothing/head/hardhat/atmos, -/obj/structure/closet/secure_closet/atmospherics{ - populate = 0; - name = "Atmospheric Technician's Locker" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) "jh" = ( /obj/machinery/door/airlock/hatch{ name = "Bridge" @@ -1189,29 +1024,36 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"jN" = ( -/obj/effect/decal/cleanable/dirt/dust, +"jE" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) +/turf/open/floor/plating, +/area/ship/hallway/central) "jP" = ( /obj/effect/turf_decal/industrial/caution{ dir = 4 }, /turf/open/floor/plasteel/tech/airless, /area/ship/construction) +"jU" = ( +/obj/effect/turf_decal/trimline/transparent/bar/filled/warning, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) "jW" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -1243,12 +1085,67 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ship/cargo) +"jY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/canvas/nineteenXnineteen{ + desc = "The heart and soul of every good project leader. Plan your engineering projects with this canvas."; + name = "Concept Board" + }, +/obj/structure/easel{ + anchored = 1 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) "jZ" = ( /obj/machinery/modular_computer/console/preset/id{ dir = 1 }, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) +"kd" = ( +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 9 + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) +"kf" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 6 + }, +/obj/effect/turf_decal/industrial/traffic{ + dir = 4 + }, +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/under/syndicate/gec/atmos_tech, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/holosign_creator/atmos, +/obj/item/extinguisher/advanced, +/obj/item/clothing/glasses/meson/engine, +/obj/item/pipe_dispenser, +/obj/item/analyzer, +/obj/item/clothing/mask/gas/atmos, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/suit/fire/atmos, +/obj/item/clothing/head/hardhat/atmos, +/obj/structure/closet/secure_closet/atmospherics{ + name = "Atmospheric Technician's Locker"; + populate = 0 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "kl" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1263,31 +1160,22 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"ku" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 +"kr" = ( +/obj/structure/railing{ + dir = 8; + pixel_x = -7 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 + dir = 1 }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/tech, +/area/ship/crew/dorm) "kD" = ( /turf/template_noop, /area/template_noop) @@ -1298,26 +1186,23 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"kW" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2 - }, +"kY" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 9 - }, /obj/effect/decal/fakelattice{ color = "#8D8B8B"; layer = 2.1 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, /turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, /area/ship/crew/dorm) "lc" = ( @@ -1329,19 +1214,35 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) -"lx" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - piping_layer = 2; - name = "Air Mix Cooler" +"ld" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "ly" = ( /obj/structure/railing, /obj/machinery/the_singularitygen/tesla, /turf/open/floor/plating/airless, /area/ship/construction) +"lH" = ( +/obj/effect/turf_decal/number/four, +/turf/open/floor/plating/airless, +/area/ship/construction) "lJ" = ( /obj/machinery/atmospherics/pipe/simple/purple/hidden{ dir = 2 @@ -1380,23 +1281,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"lY" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Plasma to Engines"; - icon_state = "pump_map-4"; - piping_layer = 4 - }, -/obj/machinery/atmospherics/pipe/simple/brown/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Plasma Outlet Pump" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "me" = ( /obj/effect/turf_decal/corner/transparent/solgovgold/three_quarters{ dir = 1 @@ -1427,14 +1311,19 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/crew/canteen) -"mr" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/small, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +"ms" = ( +/obj/structure/railing{ + dir = 1; + pixel_y = 7 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) +/obj/effect/turf_decal/trimline/transparent/bar/filled/warning, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) "mt" = ( /obj/machinery/door/poddoor{ id = "airmixchamber" @@ -1445,41 +1334,6 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/engine/hull/reinforced, /area/ship/engineering/atmospherics) -"mu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "gec_secure" - }, -/turf/open/floor/plasteel/tech/grid/airless, -/area/ship/construction) -"mx" = ( -/obj/effect/decal/fakelattice, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) -"mA" = ( -/obj/machinery/firealarm{ - pixel_y = 30 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 27; - pixel_y = -5 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03"; - pixel_y = 5 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "mF" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1519,85 +1373,31 @@ /obj/machinery/holopad, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"nb" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "gec_secure" - }, -/turf/open/floor/plasteel/tech/grid/airless, -/area/ship/construction) -"ng" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" +"nt" = ( +/obj/effect/decal/cleanable/blood/old{ + color = "#808080" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light/dim, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"nk" = ( -/obj/effect/decal/fakelattice, -/obj/machinery/light/small{ - name = "blue-violet light"; - desc = "These lights are conventionally banned from most ships due to the harmful radiation emitted from them. The GEC contractor who designed this ship did not care."; - bulb_power = 1; - bulb_colour = "#84A9FF"; - bulb_vacuum_colour = "#FF3232" - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/crew/dorm) -"nn" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/decal/fakelattice{ color = "#8D8B8B"; layer = 2.1 }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 10 - }, /turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, -/area/ship/engineering) +/area/ship/crew/dorm) "nz" = ( /obj/machinery/atmospherics/components/unary/passive_vent/layer2{ dir = 4 }, /turf/open/floor/engine/hull/reinforced, /area/ship/engineering/atmospherics) -"nG" = ( -/obj/structure/railing{ - dir = 4; - pixel_x = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8; - layer = 4.1; - pixel_x = -8 - }, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 1 - }, -/area/ship/engineering) "nJ" = ( /obj/structure/table/reinforced, /obj/machinery/chem_dispenser/drinks{ @@ -1605,35 +1405,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/canteen) -"nK" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/pizzabox/pineapple, -/obj/item/pizzabox/pineapple{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"nN" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/structure/railing{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) "nT" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -1666,12 +1437,43 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"ol" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/computer/cryopod/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "oq" = ( /obj/structure/chair/sofa/right{ dir = 8 }, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen) +"or" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 10 + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "ow" = ( /obj/item/kirbyplants/random{ pixel_y = 3 @@ -1706,21 +1508,6 @@ /obj/item/kitchen/knife/shiv, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen) -"oH" = ( -/obj/structure/rack, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/pill_bottle/potassiodide, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) "oP" = ( /obj/machinery/advanced_airlock_controller{ pixel_y = -30 @@ -1756,25 +1543,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"ph" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/manifold/purple/hidden{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) "pl" = ( /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) @@ -1791,49 +1559,24 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/construction) -"pr" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/power/terminal{ - dir = 8 +"pq" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 10 }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" +/obj/effect/turf_decal/industrial/traffic, +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 }, -/area/ship/engineering) -"ps" = ( +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"ps" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input, /turf/open/floor/engine/co2, /area/ship/engineering/atmospherics) -"pv" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/cleanable/glass{ - color = "#808080" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/crew/dorm) "pz" = ( /obj/machinery/particle_accelerator/control_box, /obj/effect/turf_decal/industrial/warning{ @@ -1859,6 +1602,13 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) +"pD" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "pF" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -1878,81 +1628,31 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"pT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Construction Zone" - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) "pU" = ( /obj/effect/turf_decal/industrial/warning{ dir = 10 }, /turf/open/floor/plating/airless, /area/ship/construction) -"pZ" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-2" +"pY" = ( +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/obj/structure/curtain/cloth/grey, +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 8; + pixel_y = 2 }, -/turf/open/floor/plasteel/tech/airless, -/area/ship/construction) +/obj/structure/sign/poster/contraband/gec{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "qa" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 }, /turf/open/floor/carpet/red, /area/ship/bridge) -"qe" = ( -/obj/machinery/chem_master/condimaster{ - name = "BoozeMaster 3000"; - desc = "Used to mix drinks and other reagents." - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/crew/canteen) -"qg" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/item/storage/toolbox/syndicate, -/obj/item/storage/belt/utility/full/engi, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/under/syndicate/gec/atmos_tech, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/holosign_creator/atmos, -/obj/item/extinguisher/advanced, -/obj/item/clothing/glasses/meson/engine, -/obj/item/pipe_dispenser, -/obj/item/analyzer, -/obj/item/clothing/mask/gas/atmos, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/suit/fire/atmos, -/obj/item/clothing/head/hardhat/atmos, -/obj/machinery/camera/autoname{ - dir = 2; - network = list("GEC") - }, -/obj/structure/closet/secure_closet/atmospherics{ - populate = 0; - name = "Atmospheric Technician's Locker" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "qj" = ( /obj/structure/tank_dispenser, /turf/open/floor/plasteel/tech/grid, @@ -1998,6 +1698,21 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"qu" = ( +/obj/structure/closet/crate/secure/engineering{ + desc = "A dangerous supermatter crate with a lock on it. The GEC insignia has been painted over a faded Nanotrasen logo"; + name = "Supermatter Crystal Crate" + }, +/obj/machinery/power/supermatter_crystal/shard, +/turf/open/floor/plating/airless, +/area/ship/construction) +"qz" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Used to mix drinks and other reagents."; + name = "BoozeMaster 3000" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/canteen) "qD" = ( /obj/effect/turf_decal/industrial/hatch/yellow, /obj/machinery/suit_storage_unit/standard_unit, @@ -2025,28 +1740,10 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"qM" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engine_shutters" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering) "qR" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/obj/structure/railing{ - dir = 8 - }, /obj/machinery/airalarm/directional/north, /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -2087,41 +1784,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"rm" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - pixel_x = -6; - pixel_y = 2; - id = "gec_cargo"; - name = "Cargo Blast Doors"; - dir = 1 - }, -/obj/machinery/button/shieldwallgen{ - pixel_x = 7; - pixel_y = 3; - id = "gec_cargo_shield"; - name = "Cargo Holoshield"; - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) -"rp" = ( -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/turf_decal/steeldecal/steel_decals_central2, -/obj/structure/bed, -/obj/structure/curtain/cloth/grey, -/obj/item/bedsheet/syndie, -/obj/machinery/firealarm{ - pixel_y = -30; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) "ru" = ( /obj/machinery/atmospherics/pipe/simple/purple/hidden{ dir = 5 @@ -2169,6 +1831,9 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, +/obj/structure/railing{ + dir = 6 + }, /turf/open/floor/plasteel/tech, /area/ship/bridge) "rL" = ( @@ -2185,6 +1850,25 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"rS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "rU" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2214,6 +1898,24 @@ }, /turf/open/floor/engine/hull/reinforced/interior, /area/ship/engineering/atmospherics) +"sd" = ( +/obj/structure/railing{ + dir = 4; + pixel_x = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8; + layer = 4.1; + pixel_x = -8 + }, +/turf/open/floor/plasteel/stairs{ + dir = 1; + icon = 'icons/obj/stairs.dmi' + }, +/area/ship/engineering) "sf" = ( /obj/effect/turf_decal/corner/transparent/bar/diagonal, /turf/open/floor/plasteel, @@ -2221,22 +1923,6 @@ "sl" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) -"sm" = ( -/obj/structure/railing{ - dir = 1; - pixel_y = 7 - }, -/obj/effect/turf_decal/trimline/transparent/bar/filled/warning, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) "st" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -2253,27 +1939,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"su" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Construction Zone" - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) "sQ" = ( /obj/structure/chair/stool/bar{ dir = 4 @@ -2357,16 +2022,24 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"ts" = ( -/obj/effect/decal/cleanable/glass{ - color = "#808080" +"tt" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_x = -2; + pixel_y = 2 }, -/obj/effect/decal/fakelattice, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 }, -/area/ship/crew/canteen) +/obj/structure/table, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/machinery/recharger, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "tx" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) @@ -2405,6 +2078,28 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) +"tS" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Crew Quarters" + }, +/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/tech, +/area/ship/crew/dorm) "tT" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -2435,9 +2130,21 @@ /obj/structure/railing, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"uc" = ( -/obj/machinery/suit_storage_unit/atmos{ - layer = 2.8 +"tV" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "atmoswindow" + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"uc" = ( +/obj/machinery/suit_storage_unit/atmos{ + layer = 2.8 }, /obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 5 @@ -2453,26 +2160,24 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"ue" = ( +"ud" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/machinery/atmospherics/pipe/simple/brown/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "O2 Air Mix Outlet Pump"; - icon_state = "pump_on_map-2"; - piping_layer = 2; - target_pressure = 2500 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "O2 Outlet Pump"; - on = 0; - icon_state = "pump_map-3" - }, +/obj/machinery/light/dim/directional/south, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"ug" = ( +/obj/machinery/rnd/production/protolathe/department/engineering{ + layer = 3 + }, +/obj/machinery/light/small/directional/east{ + bulb_power = 0.5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "uj" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -2482,15 +2187,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"up" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) "ut" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -2506,6 +2202,37 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) +"uw" = ( +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central2, +/obj/structure/bed, +/obj/structure/curtain/cloth/grey, +/obj/item/bedsheet/syndie, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) +"uA" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/item/storage/secure/safe/intel{ + dir = 8; + pixel_x = -32 + }, +/turf/open/floor/carpet/red, +/area/ship/bridge) +"uB" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 5 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "uD" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -2521,26 +2248,13 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"uF" = ( -/obj/effect/turf_decal/corner/transparent/bar/diagonal, -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 4; - pixel_x = -2 - }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 1 - }, -/obj/machinery/recharger, -/obj/machinery/light/small{ - dir = 8 +"uG" = ( +/obj/item/kirbyplants/random{ + pixel_x = 2; + pixel_y = 5 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) "uH" = ( /obj/machinery/camera/autoname{ dir = 5; @@ -2549,6 +2263,33 @@ /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/plating/airless, /area/ship/construction) +"uI" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) +"uJ" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "uL" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 10 @@ -2583,18 +2324,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output, /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) -"uS" = ( -/obj/effect/turf_decal/corner/transparent/bar/diagonal, -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/snacks/pizzaslice/pineapple{ - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) "uW" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -2602,6 +2331,26 @@ /obj/structure/railing, /turf/open/floor/plating, /area/ship/cargo) +"uX" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 4 + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "vf" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2614,16 +2363,28 @@ }, /turf/open/floor/plating, /area/ship/cargo) -"vg" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/ship/construction) "vk" = ( /turf/open/floor/engine/plasma, /area/ship/engineering/atmospherics) +"vp" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/east{ + bulb_power = 0.5 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "vv" = ( /obj/effect/turf_decal/techfloor, /obj/effect/turf_decal/steeldecal/steel_decals10{ @@ -2655,6 +2416,28 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) +"vQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + dir = 4; + name = "Construction Zone" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "vU" = ( /obj/machinery/atmospherics/components/binary/valve/layer2{ dir = 4 @@ -2673,6 +2456,66 @@ }, /turf/open/floor/engine/hull/reinforced, /area/ship/construction) +"vW" = ( +/obj/structure/railing{ + dir = 4; + pixel_x = 7 + }, +/obj/structure/railing{ + dir = 8; + pixel_x = -7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/stairs{ + dir = 1; + icon = 'icons/obj/stairs.dmi' + }, +/area/ship/crew/canteen) +"wc" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/item/storage/belt/utility/chief/full, +/obj/item/clothing/under/syndicate/gec/chief_engineer, +/obj/item/clothing/glasses/meson/engine, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/engineering, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/pipe_dispenser, +/obj/item/construction/rcd/arcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo/large, +/obj/item/gun/energy/tesla_cannon{ + desc = "Tuned to perfection by GEC's finest eccentrics. Shoots balls of tesla."; + name = "GEC Tesla Cannon" + }, +/obj/item/cartridge/ce, +/obj/item/stack/tape/industrial/pro, +/obj/item/megaphone/command, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/head/hardhat/weldhat/white, +/obj/item/areaeditor/shuttle, +/obj/item/binoculars, +/obj/item/clothing/head/hardhat/white, +/obj/structure/closet/secure_closet/engineering_chief{ + name = "Project Overseer's Closet"; + populate = 0 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "wk" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -2707,27 +2550,26 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"wz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, +"wt" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/arrows, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"wD" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/machinery/light/small{ - dir = 8; - bulb_power = 0.5 - }, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "2-4" }, /obj/effect/decal/fakelattice{ color = "#8D8B8B"; layer = 2.1 }, /turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, /area/ship/engineering) "wE" = ( @@ -2763,17 +2605,13 @@ /obj/structure/cable, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"wY" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 4 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 5; - pixel_x = -3 +"wV" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tech/grid, /area/ship/crew/canteen) "xc" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -2867,17 +2705,6 @@ }, /turf/open/floor/engine/hull/reinforced/interior, /area/ship/engineering/atmospherics) -"xB" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ - dir = 2 - }, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) "xI" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2888,27 +2715,19 @@ "xJ" = ( /turf/open/floor/engine/hull/reinforced, /area/ship/engineering/atmospherics) +"xK" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/machinery/atmospherics/pipe/simple/brown/hidden{ + dir = 8 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "xP" = ( /turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) -"xQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4; - pixel_x = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden, -/obj/structure/railing{ - dir = 8; - pixel_x = -7 - }, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 1 - }, -/area/ship/engineering) "xZ" = ( /obj/machinery/camera/autoname{ dir = 5; @@ -2917,52 +2736,62 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"ya" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 +"yf" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/filingcabinet{ + pixel_x = 7 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"yn" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 5 }, -/area/ship/crew/dorm) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "yp" = ( /obj/machinery/computer/crew/syndie{ dir = 1 }, /turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"yH" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating/airless, -/area/ship/construction) -"yI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible/layer4{ - dir = 4 +"yt" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 9 }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -27; - pixel_x = -5 +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"yu" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + icon_state = "pump_map-2"; + name = "Mix Tank to Mix"; + piping_layer = 2 }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) +"yH" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating/airless, +/area/ship/construction) +"yL" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bridge_shutters"; + dir = 4 + }, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/bridge) "yT" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 9 @@ -2972,23 +2801,23 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"yX" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) "zb" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"zf" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar/diagonal, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) "zh" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -3024,11 +2853,69 @@ "zC" = ( /turf/open/floor/engine/co2, /area/ship/engineering/atmospherics) +"zE" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) +"zI" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + pixel_y = 2 + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4; + pixel_x = 7 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/crew/dorm) "zP" = ( /obj/structure/table, /obj/item/trash/plate, /turf/open/floor/plasteel/tech, /area/ship/crew/canteen) +"zU" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"zV" = ( +/obj/effect/decal/fakelattice, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "Ab" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 @@ -3044,65 +2931,51 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) -"Ag" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 9 +"Ad" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/effect/turf_decal/industrial/traffic{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer2{ - dir = 6 +/obj/machinery/door/airlock/external/glass{ + dir = 4; + name = "Construction Zone" }, -/obj/machinery/light/dim{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"Aq" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plating/airless, -/area/ship/construction) -"Ar" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 6 - }, -/obj/effect/turf_decal/industrial/traffic{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/item/storage/toolbox/syndicate, -/obj/item/storage/belt/utility/full/engi, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/under/syndicate/gec/atmos_tech, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/holosign_creator/atmos, -/obj/item/extinguisher/advanced, -/obj/item/clothing/glasses/meson/engine, -/obj/item/pipe_dispenser, -/obj/item/analyzer, -/obj/item/clothing/mask/gas/atmos, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/suit/fire/atmos, -/obj/item/clothing/head/hardhat/atmos, -/obj/structure/closet/secure_closet/atmospherics{ - populate = 0; - name = "Atmospheric Technician's Locker" +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Ak" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"Au" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/light/small, -/obj/structure/toilet{ - dir = 1 +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) +/obj/machinery/atmospherics/pipe/manifold/purple/hidden, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) +"Aq" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/ship/construction) "Az" = ( /obj/effect/turf_decal/steeldecal/steel_decals10{ dir = 4 @@ -3155,6 +3028,27 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) +"AH" = ( +/obj/structure/table/reinforced, +/obj/item/documents{ + desc = "Upon closer inspection, this is just an egg salad recipe."; + icon_state = "docs_part"; + layer = 3; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder{ + pixel_y = 2 + }, +/obj/item/folder/red{ + pixel_y = 4 + }, +/obj/item/stamp/syndicate{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "AI" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 9 @@ -3178,36 +3072,26 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"Bh" = ( -/obj/structure/tank_dispenser, -/obj/machinery/button/door{ - pixel_y = 27; - pixel_x = 5; - name = "Window Shutters"; - id = "atmoswindow" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"Bl" = ( -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 9 - }, +"Bj" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, +/obj/effect/decal/cleanable/glass{ + color = "#808080" + }, /obj/effect/decal/fakelattice{ color = "#8D8B8B"; layer = 2.1 }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/area/ship/engineering) -"Bn" = ( -/obj/machinery/power/terminal{ - dir = 8 +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, +/area/ship/crew/dorm) +"Bp" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, @@ -3215,13 +3099,23 @@ color = "#8D8B8B"; layer = 2.1 }, -/obj/structure/railing, -/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 2 + }, /turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, /area/ship/engineering) +"Bs" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/item/phone, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "Bw" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 10 @@ -3247,22 +3141,34 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"BG" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 9 +"BN" = ( +/obj/structure/particle_accelerator/particle_emitter/right, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/airless, +/area/ship/construction) +"BO" = ( +/turf/open/floor/plasteel/stairs{ + dir = 4; + icon = 'icons/obj/stairs.dmi' }, -/obj/effect/turf_decal/industrial/traffic{ - dir = 8 +/area/ship/engineering/atmospherics) +"BP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 }, -/obj/machinery/meter/atmos{ - name = "Mix to Mix Tank meter"; - desc = "It measures Mix to Mix Tank." +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "BR" = ( /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -3320,50 +3226,43 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"Cd" = ( +"Cc" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/hallway/central) -"Cn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" +/obj/structure/cable{ + icon_state = "4-8" }, /obj/effect/decal/fakelattice{ color = "#8D8B8B"; layer = 2.1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, /turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, /area/ship/engineering) -"Cu" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 8 +"Cd" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/obj/machinery/light/dim{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/hallway/central) "CA" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ dir = 4 @@ -3376,18 +3275,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"CF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/button/door{ - id = "gec_secure"; - name = "Secure Storage"; - pixel_y = -30; - dir = 1 - }, -/turf/open/floor/plasteel/tech/airless, -/area/ship/construction) "CI" = ( /obj/item/kirbyplants{ icon_state = "plant-14"; @@ -3395,6 +3282,22 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"CL" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/crew/dorm) "CN" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/vending/snack, @@ -3407,6 +3310,38 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) +"CY" = ( +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "engine_shutters" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Da" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 2; + network = list("GEC") + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) "Dh" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 10 @@ -3417,6 +3352,28 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"Du" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "Dx" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -3432,23 +3389,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"DE" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 10 - }, -/obj/effect/turf_decal/industrial/traffic, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) "DI" = ( /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, @@ -3457,20 +3397,6 @@ }, /turf/open/floor/plating/airless, /area/ship/engineering/atmospherics) -"DK" = ( -/obj/effect/turf_decal/trimline/transparent/bar/filled/warning, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) "DN" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -3484,6 +3410,42 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) +"DX" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 9 + }, +/obj/effect/turf_decal/industrial/traffic{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/machinery/meter/atmos{ + desc = "It measures Mix to Mix Tank."; + name = "Mix to Mix Tank meter" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"Eg" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech/airless, +/area/ship/construction) +"Ej" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/machinery/button/door{ + dir = 8; + id = "airmixchamber"; + name = "Air Mix Drain"; + pixel_x = 27; + pixel_y = -5 + }, +/turf/open/floor/plating/airless, +/area/ship/construction) "El" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -3547,86 +3509,29 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Ex" = ( -/obj/structure/railing{ - dir = 8 +"EE" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input, +/turf/open/floor/engine/plasma, +/area/ship/engineering/atmospherics) +"EG" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/turf/open/floor/plating, -/area/ship/bridge) -"Ez" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/purple/hidden{ + dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Construction Zone" - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) -"EA" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/crew/dorm) -"EE" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input, -/turf/open/floor/engine/plasma, -/area/ship/engineering/atmospherics) -"EF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 10 - }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, /area/ship/engineering) -"EV" = ( -/obj/effect/decal/fakelattice, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/crew/canteen) "EX" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible/layer4{ dir = 4 @@ -3644,6 +3549,7 @@ dir = 8 }, /obj/machinery/holopad/emergency/command, +/obj/structure/railing/corner, /turf/open/floor/plasteel/tech, /area/ship/bridge) "Fe" = ( @@ -3651,17 +3557,28 @@ /obj/structure/curtain/cloth/grey, /turf/open/floor/plating, /area/ship/bridge) -"Fn" = ( -/obj/machinery/the_singularitygen, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +"Fr" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/paper{ - name = "Warning"; - info = "Engineers are advised against constructing singularities and teslas aboard the GEC Engineering Project. Field generators are liable to fail when the vessel docks and undocks - the results of such an event being catastrophic, should a singularity or tesla be kept inside.

In the event of a singuloose, or a tesloose, crew should fling themselves out of the nearest airlock, in the hopes that their corpse is discovered in the future.

Have a safe day, GEC management." +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/turf/open/floor/plating/airless, -/area/ship/construction) +/obj/machinery/light/small/directional/west{ + bulb_power = 0.5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "FA" = ( /obj/machinery/door/airlock/hatch{ name = "Bathroom" @@ -3705,9 +3622,6 @@ /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/obj/structure/railing/corner{ - dir = 1 - }, /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, @@ -3743,28 +3657,20 @@ }, /turf/open/floor/plating, /area/ship/cargo) -"FS" = ( -/obj/machinery/button/door{ - pixel_x = -27; - id = "gec_secure"; - name = "Secure Storage"; - dir = 4 - }, -/turf/open/floor/plasteel/tech/airless, -/area/ship/construction) -"FY" = ( -/obj/structure/cable{ - icon_state = "1-2" +"FU" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_x = -4; + pixel_y = 8 }, -/obj/structure/railing{ - dir = 4; +/obj/item/stamp/syndicate{ pixel_x = 8 }, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 2 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 }, -/area/ship/engineering) +/turf/open/floor/carpet/red, +/area/ship/bridge) "Gd" = ( /obj/structure/table, /obj/item/tank/internals/emergency_oxygen/engi{ @@ -3806,18 +3712,62 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) +"Gs" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/structure/table, +/obj/machinery/light/directional/west, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/snacks/pizzaslice/pineapple{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"GC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "GF" = ( /obj/effect/turf_decal/industrial/warning{ dir = 5 }, /turf/open/floor/engine/hull/reinforced, /area/ship/construction) +"GH" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 6 + }, +/obj/effect/turf_decal/industrial/traffic{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "GN" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel/tech/airless, /area/ship/construction) +"GO" = ( +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/obj/structure/curtain/cloth/grey, +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "GS" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 10 @@ -3829,6 +3779,45 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) +"Hc" = ( +/obj/item/kirbyplants{ + icon_state = "plant-03"; + pixel_y = 5 + }, +/obj/machinery/button/door{ + dir = 8; + id = "ce_office"; + name = "Window Shutters"; + pixel_x = 27; + pixel_y = 7 + }, +/obj/machinery/button/door{ + dir = 8; + id = "ce_bolts"; + name = "Door Bolts"; + normaldoorcontrol = 1; + pixel_x = 27; + pixel_y = -7; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"He" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "engine_shutters" + }, +/turf/open/floor/plating, +/area/ship/engineering) "Hj" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -3853,16 +3842,6 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/central) -"Hn" = ( -/obj/machinery/rnd/production/protolathe/department/engineering{ - layer = 3 - }, -/obj/machinery/light/small{ - dir = 4; - bulb_power = 0.5 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) "Hx" = ( /obj/structure/cable{ icon_state = "0-8" @@ -3882,6 +3861,56 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"Hz" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/machinery/atmospherics/components/binary/pump{ + icon_state = "pump_map-4"; + name = "Plasma to Engines"; + piping_layer = 4 + }, +/obj/machinery/atmospherics/pipe/simple/brown/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Plasma Outlet Pump" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"HE" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 9 + }, +/obj/effect/turf_decal/industrial/traffic{ + dir = 8 + }, +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/under/syndicate/gec/atmos_tech, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/holosign_creator/atmos, +/obj/item/extinguisher/advanced, +/obj/item/clothing/glasses/meson/engine, +/obj/item/pipe_dispenser, +/obj/item/analyzer, +/obj/item/clothing/mask/gas/atmos, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/suit/fire/atmos, +/obj/item/clothing/head/hardhat/atmos, +/obj/structure/closet/secure_closet/atmospherics{ + name = "Atmospheric Technician's Locker"; + populate = 0 + }, +/obj/machinery/button/door{ + id = "atmoswindow"; + name = "Window Shutters"; + pixel_x = 24; + pixel_y = 22 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "HK" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 6 @@ -3897,6 +3926,42 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"HL" = ( +/obj/effect/decal/fakelattice, +/obj/machinery/light/small/directional/south{ + bulb_colour = "#84A9FF"; + bulb_power = 1; + bulb_vacuum_colour = "#FF3232"; + desc = "These lights are conventionally banned from most ships due to the harmful radiation emitted from them. The GEC contractor who designed this ship did not care."; + name = "blue-violet light" + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/crew/dorm) +"HN" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Engine Room" + }, +/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 = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "HW" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -3912,17 +3977,6 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) -"HX" = ( -/obj/structure/window/plasma/reinforced/plastitanium, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "atmoswindow" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "Ie" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 1 @@ -3934,16 +3988,6 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible/layer2, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"Ig" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) "Ij" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -3953,28 +3997,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Il" = ( -/obj/machinery/door/airlock/hatch{ - id_tag = "ce_bolts"; - name = "Project Overseer's Office" - }, -/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/tech/grid, -/area/ship/bridge) "Io" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -3984,23 +4006,25 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) -"Ip" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) "Iv" = ( /obj/machinery/atmospherics/pipe/simple/brown/hidden{ dir = 8 }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/atmospherics) +"Iz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "gec_secure" + }, +/turf/open/floor/plasteel/tech/grid/airless, +/area/ship/construction) "IA" = ( /obj/effect/turf_decal/corner/transparent/bar/diagonal, /obj/structure/bed, @@ -4032,6 +4056,17 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"IE" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/ship/cargo) "IG" = ( /obj/structure/closet/crate/large{ name = "GEC Resource Crate" @@ -4053,48 +4088,47 @@ /obj/item/stack/rods/fifty, /turf/open/floor/plating/airless, /area/ship/construction) -"IL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Tank to Filtering"; - icon_state = "pump_map-2"; - piping_layer = 2; - desc = "A pump that moves gas by pressure. Make sure your Mix isn't too hot when you open this or you'll clog your filter!" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering/atmospherics) +"IK" = ( +/obj/effect/turf_decal/number/zero, +/turf/open/floor/plating/airless, +/area/ship/construction) "IN" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible/layer4{ dir = 4 }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"IQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/portable_atmospherics/scrubber/huge/movable, -/obj/machinery/atmospherics/components/unary/portables_connector{ +"IR" = ( +/obj/machinery/light/dim/directional/south, +/obj/machinery/modular_computer/console/preset/engineering{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, /turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) -"IV" = ( -/obj/machinery/firealarm{ - pixel_y = 30 - }, -/obj/structure/filingcabinet{ - pixel_x = 7 +/area/ship/bridge) +"IT" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 6 }, +/obj/machinery/light/directional/west, /turf/open/floor/plasteel/tech, -/area/ship/bridge) +/area/ship/hallway/central) +"IU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "Jb" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -4113,16 +4147,6 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) -"Jr" = ( -/obj/effect/turf_decal/corner/transparent/bar/diagonal, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Jv" = ( /obj/machinery/button/door{ id = "gec_secure"; @@ -4131,20 +4155,6 @@ }, /turf/open/floor/plasteel/tech/airless, /area/ship/construction) -"Jy" = ( -/obj/structure/railing{ - dir = 8; - layer = 4.1; - pixel_x = -8 - }, -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 9 - }, -/obj/effect/turf_decal/industrial/traffic{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) "Jz" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ dir = 10 @@ -4161,27 +4171,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"JC" = ( -/obj/machinery/door/airlock/hatch{ - name = "Engine Room" - }, -/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 = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "JG" = ( /obj/effect/turf_decal/atmos/nitrogen, /turf/open/floor/engine/n2, @@ -4203,49 +4192,12 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) -"JK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 2 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) "JL" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8 }, /turf/open/floor/engine/airless, /area/ship/engineering/atmospherics) -"JM" = ( -/obj/machinery/light/dim, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) -"JO" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 6 - }, -/obj/effect/turf_decal/industrial/traffic{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) "JQ" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 @@ -4254,16 +4206,34 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"JU" = ( -/obj/effect/decal/fakelattice, -/obj/effect/decal/cleanable/greenglow{ - color = "#808080" +"JS" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/under/syndicate/gec/atmos_tech, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/holosign_creator/atmos, +/obj/item/extinguisher/advanced, +/obj/item/clothing/glasses/meson/engine, +/obj/item/pipe_dispenser, +/obj/item/analyzer, +/obj/item/clothing/mask/gas/atmos, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/suit/fire/atmos, +/obj/item/clothing/head/hardhat/atmos, +/obj/machinery/camera/autoname{ + dir = 2; + network = list("GEC") }, -/area/ship/engineering) +/obj/structure/closet/secure_closet/atmospherics{ + name = "Atmospheric Technician's Locker"; + populate = 0 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "JV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -4282,6 +4252,17 @@ }, /turf/open/floor/plasteel/tech, /area/ship/crew/dorm) +"Kc" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 9 + }, +/obj/effect/turf_decal/industrial/traffic{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "Kd" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -4295,6 +4276,20 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) +"Kg" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/button/door{ + dir = 8; + id = "airmixchamber"; + name = "Air Mix Drain"; + pixel_x = 22; + pixel_y = -8 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "Ko" = ( /obj/structure/particle_accelerator/particle_emitter/left, /obj/effect/turf_decal/industrial/warning{ @@ -4302,18 +4297,7 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) -"Kq" = ( -/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 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/hallway/central) -"KQ" = ( +"Kp" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ dir = 4 }, @@ -4326,29 +4310,107 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, /obj/machinery/meter/atmos/layer4{ - name = "Plasma to Engines"; - desc = "It measures Plasma to Engines." + desc = "It measures Plasma to Engines."; + name = "Plasma to Engines" }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"KV" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/kirbyplants{ - icon_state = "plant-09"; - pixel_x = 20 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"KX" = ( -/obj/structure/closet/crate{ - name = "Mining Crate" +"Kq" = ( +/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 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"Kv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/atmospherics/pipe/manifold/purple/hidden{ + dir = 1 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) +"Kz" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/light/small/directional/west{ + bulb_colour = "#84A9FF"; + bulb_power = 1; + bulb_vacuum_colour = "#FF3232"; + desc = "These lights are conventionally banned from most ships due to the harmful radiation emitted from them. The GEC contractor who designed this ship did not care."; + name = "blue-violet light" + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/dorm) +"KO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) +"KU" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Canteen" + }, +/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/tech, +/area/ship/crew/canteen) +"KV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/kirbyplants{ + icon_state = "plant-09"; + pixel_x = 20 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"KX" = ( +/obj/structure/closet/crate{ + name = "Mining Crate" }, /obj/item/pickaxe/mini, -/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, /obj/item/storage/bag/ore, /obj/item/storage/bag/ore, /obj/item/mining_scanner, @@ -4359,29 +4421,45 @@ /obj/item/stack/marker_beacon/thirty, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) -"Lb" = ( -/obj/item/kirbyplants{ - icon_state = "plant-03"; - pixel_y = 5 +"KZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/button/door{ - dir = 8; - id = "ce_office"; - pixel_x = 27; - name = "Window Shutters"; - pixel_y = 7 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/button/door{ - dir = 8; - id = "ce_bolts"; - pixel_x = 27; - name = "Door Bolts"; - pixel_y = -7; - specialfunctions = 4; - normaldoorcontrol = 1 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + dir = 4; + name = "Construction Zone" + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Lc" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/door/poddoor{ + id = "gec_cargo" + }, +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + launch_status = 0; + name = "Engineering Project"; + port_direction = 4; + preferred_direction = 4 + }, +/turf/open/floor/plating, +/area/ship/cargo) "Le" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 6 @@ -4407,22 +4485,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"Ln" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/cleanable/plastic{ - color = "#808080" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/crew/dorm) "Lo" = ( /obj/effect/turf_decal/corner/transparent/bar/diagonal, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -4469,34 +4531,19 @@ /obj/item/stock_parts/cell/high, /turf/open/floor/plating/airless, /area/ship/construction) +"Lr" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "Ls" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, /turf/open/floor/plating/airless, /area/ship/construction) -"Lt" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) "Lu" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -4523,22 +4570,15 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Lz" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 2 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +"Lx" = ( +/obj/machinery/button/door{ + dir = 4; + id = "gec_secure"; + name = "Secure Storage"; + pixel_x = -27 }, -/area/ship/engineering) +/turf/open/floor/plasteel/tech/airless, +/area/ship/construction) "LE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4573,6 +4613,24 @@ /obj/structure/railing, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"LK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4; + pixel_x = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden, +/obj/structure/railing{ + dir = 8; + pixel_x = -7 + }, +/turf/open/floor/plasteel/stairs{ + dir = 1; + icon = 'icons/obj/stairs.dmi' + }, +/area/ship/engineering) "LM" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 6 @@ -4593,6 +4651,18 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) +"LU" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/item/pizzabox/pineapple, +/obj/item/pizzabox/pineapple{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "LV" = ( /obj/effect/turf_decal/corner/transparent/bar/diagonal, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -4614,25 +4684,31 @@ "Md" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/construction) -"Mh" = ( -/obj/effect/decal/cleanable/blood/old{ - color = "#808080" +"Me" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_y = 2 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/machinery/door/window{ + dir = 8 }, -/area/ship/crew/dorm) +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "Mm" = ( /obj/machinery/camera/autoname{ dir = 8; @@ -4663,44 +4739,22 @@ }, /turf/open/floor/plating, /area/ship/bridge) -"My" = ( -/obj/effect/turf_decal/corner/transparent/bar/diagonal, -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 4; - pixel_x = -2 +"Mw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 3 }, -/obj/effect/turf_decal/steeldecal/steel_decals10{ - dir = 8 +/obj/item/stamp/syndicate{ + pixel_x = 9; + pixel_y = 7 }, -/obj/item/storage/belt/utility/chief/full, -/obj/item/clothing/under/syndicate/gec/chief_engineer, -/obj/item/clothing/glasses/meson/engine, -/obj/item/holosign_creator/atmos, -/obj/item/holosign_creator/engineering, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/pipe_dispenser, -/obj/item/construction/rcd/arcd, -/obj/item/rcd_ammo, -/obj/item/rcd_ammo, -/obj/item/rcd_ammo/large, -/obj/item/gun/energy/tesla_cannon{ - desc = "Tuned to perfection by GEC's finest eccentrics. Shoots balls of tesla."; - name = "GEC Tesla Cannon" - }, -/obj/item/cartridge/ce, -/obj/item/stack/tape/industrial/pro, -/obj/item/megaphone/command, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/head/hardhat/weldhat/white, -/obj/item/areaeditor/shuttle, -/obj/item/binoculars, -/obj/item/clothing/head/hardhat/white, -/obj/structure/closet/secure_closet/engineering_chief{ - populate = 0; - name = "Project Overseer's Closet" +/obj/item/pen/fourcolor{ + pixel_x = -3; + pixel_y = 3 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech, /area/ship/bridge) "MA" = ( /obj/structure/catwalk/over/plated_catwalk/white{ @@ -4722,25 +4776,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"MK" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/purple/hidden{ - dir = 2 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) "MN" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 4 @@ -4753,20 +4788,6 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"MV" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - pixel_y = 8; - pixel_x = -4 - }, -/obj/item/stamp/syndicate{ - pixel_x = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/turf/open/floor/carpet/red, -/area/ship/bridge) "MW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 @@ -4785,19 +4806,15 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) -"MY" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/machinery/light/small{ - bulb_vacuum_colour = "#FF3232"; - name = "blue-violet light"; - dir = 8; - desc = "These lights are conventionally banned from most ships due to the harmful radiation emitted from them. The GEC contractor who designed this ship did not care."; - bulb_power = 1; - bulb_colour = "#84A9FF" +"Ne" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 4; + pixel_y = 2 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) +/obj/item/reagent_containers/food/drinks/shaker, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/ship/crew/canteen) "Nl" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -4832,19 +4849,6 @@ }, /turf/open/floor/plating/airless, /area/ship/construction) -"Nx" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 9 - }, -/obj/effect/turf_decal/industrial/traffic{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/extinguisher_cabinet{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering/atmospherics) "Nz" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 4 @@ -4859,6 +4863,14 @@ "NE" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) +"NF" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + name = "Air Mix Cooler"; + piping_layer = 2 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "NG" = ( /obj/machinery/air_sensor/atmos/carbon_tank, /turf/open/floor/engine/co2, @@ -4871,33 +4883,6 @@ /obj/effect/turf_decal/atmos/plasma, /turf/open/floor/engine/plasma, /area/ship/engineering/atmospherics) -"NP" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) -"NT" = ( -/obj/effect/decal/fakelattice, -/obj/effect/decal/cleanable/greenglow{ - color = "#808080" - }, -/obj/machinery/camera/autoname{ - dir = 2; - network = list("GEC") - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/crew/dorm) "NY" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible/layer4{ dir = 4 @@ -4917,23 +4902,6 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) -"Oe" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_y = 3; - pixel_x = -3 - }, -/obj/item/stamp/syndicate{ - pixel_y = 7; - pixel_x = 9 - }, -/obj/item/pen/fourcolor{ - pixel_y = 3; - pixel_x = -3 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "Oh" = ( /obj/effect/turf_decal/industrial/warning{ dir = 5 @@ -4953,23 +4921,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"Ov" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/door/poddoor{ - id = "gec_cargo" - }, -/obj/docking_port/mobile{ - can_move_docking_ports = 1; - launch_status = 0; - port_direction = 4; - preferred_direction = 4; - name = "Engineering Project" - }, -/turf/open/floor/plating, -/area/ship/cargo) "Ow" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ dir = 8 @@ -4983,138 +4934,124 @@ /obj/machinery/rnd/server, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) -"OF" = ( -/obj/structure/window/plasma/reinforced/plastitanium, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"OH" = ( -/obj/structure/railing/corner{ - dir = 1; - color = "#808080"; - pixel_y = 2; - pixel_x = -2 - }, -/obj/structure/railing/corner{ - dir = 1 +"OD" = ( +/obj/structure/railing{ + pixel_y = -7 }, -/obj/item/kirbyplants{ - icon_state = "plant-14"; - pixel_y = 5 +/obj/structure/railing{ + dir = 1; + pixel_y = 7 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) -"OP" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - pixel_x = -5; - pixel_y = 5; - id = "gec_cargo"; - name = "Cargo Blast Doors" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/machinery/button/shieldwallgen{ - pixel_x = 6; - pixel_y = 3; - id = "gec_cargo_shield"; - name = "Cargo Holoshield" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/light/small{ - dir = 1 +/turf/open/floor/plasteel/stairs{ + dir = 4; + icon = 'icons/obj/stairs.dmi' }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) -"OR" = ( +/area/ship/crew/dorm) +"OF" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"OM" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/fakelattice{ color = "#8D8B8B"; layer = 2.1 }, +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 10 + }, /turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) +"ON" = ( +/obj/effect/turf_decal/number/five, +/turf/open/floor/plating/airless, +/area/ship/construction) +"OZ" = ( +/obj/effect/decal/fakelattice, +/obj/effect/decal/cleanable/greenglow{ + color = "#808080" + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, /area/ship/engineering) "Pk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output, /turf/open/floor/engine/plasma, /area/ship/engineering/atmospherics) -"Pt" = ( -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 4 - }, -/area/ship/engineering/atmospherics) -"PC" = ( -/obj/machinery/power/smes/shuttle/precharged{ - dir = 4 +"PE" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "gec_cargo"; + name = "Cargo Blast Doors"; + pixel_x = -5; + pixel_y = 5 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engine_shutters" +/obj/machinery/button/shieldwallgen{ + id = "gec_cargo_shield"; + name = "Cargo Holoshield"; + pixel_x = 6; + pixel_y = 3 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"PF" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/obj/machinery/door/window{ - dir = 4 +/obj/machinery/atmospherics/components/binary/pump/on{ + desc = "A pump that moves gas by pressure. This one pumps gas from the ship's waste loop into the filtering section"; + dir = 8; + name = "Waste to Filtering" }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ + dir = 6 }, +/obj/machinery/light/dim/directional/north, /turf/open/floor/plating, -/area/ship/engineering) -"PR" = ( -/obj/machinery/door/airlock/hatch{ - name = "Canteen" - }, -/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/tech, -/area/ship/crew/canteen) -"PU" = ( -/obj/machinery/door/airlock/hatch{ - name = "Crew Quarters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/area/ship/engineering/atmospherics) +"PL" = ( +/obj/docking_port/stationary{ + dwidth = 3; + width = 7; + height = 15; + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/turf/template_noop, +/area/template_noop) +"PT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/light/small/directional/south, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 9 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) +/area/ship/engineering) "Qd" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -5140,23 +5077,6 @@ }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Qk" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/manifold/purple/hidden, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) "Qm" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, @@ -5177,6 +5097,20 @@ "Qs" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering/atmospherics) +"Qw" = ( +/obj/effect/decal/fakelattice, +/obj/effect/decal/cleanable/greenglow{ + color = "#808080" + }, +/obj/machinery/camera/autoname{ + dir = 2; + network = list("GEC") + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/crew/dorm) "Qy" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 4 @@ -5201,30 +5135,33 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"QL" = ( /obj/structure/railing{ - pixel_y = -7 + dir = 6 }, -/obj/structure/railing{ - dir = 1; - pixel_y = 7 +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"QM" = ( +/obj/effect/turf_decal/atmos/oxygen, +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"QO" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/brown/hidden{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/machinery/atmospherics/components/binary/pump/on{ + icon_state = "pump_on_map-2"; + name = "N2 Air Mix Outlet Pump"; + piping_layer = 2 }, -/turf/open/floor/plasteel/stairs{ - icon = 'icons/obj/stairs.dmi'; - dir = 4 +/obj/machinery/atmospherics/components/binary/pump/on{ + icon_state = "pump_map-3"; + name = "N2 Outlet Pump"; + on = 0 }, -/area/ship/crew/dorm) -"QM" = ( -/obj/effect/turf_decal/atmos/oxygen, -/turf/open/floor/engine/o2, +/turf/open/floor/plating, /area/ship/engineering/atmospherics) "QY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -5234,10 +5171,23 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, /turf/open/floor/plasteel/stairs{ icon = 'icons/obj/stairs.dmi' }, /area/ship/bridge) +"QZ" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 10 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) "Rj" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -5257,13 +5207,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"Rk" = ( -/obj/item/kirbyplants/random{ - pixel_y = 5; - pixel_x = 2 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) "Rn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -5310,15 +5253,6 @@ }, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"Sm" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/phone, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) "Sn" = ( /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) @@ -5333,6 +5267,19 @@ /obj/effect/turf_decal/industrial/warning, /turf/open/floor/plating/airless, /area/ship/construction) +"Sr" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 27; + pixel_y = -5 + }, +/obj/item/kirbyplants{ + icon_state = "plant-03"; + pixel_y = 5 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "Sx" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -5361,15 +5308,57 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"SH" = ( +"SI" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/button/door{ + dir = 1; + id = "gec_secure"; + name = "Secure Storage"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/tech/airless, +/area/ship/construction) +"SJ" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 6 + dir = 9 }, -/obj/machinery/light{ +/obj/effect/turf_decal/industrial/traffic{ dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer2{ + dir = 6 + }, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"SK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) +"SO" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/wideband/table{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) "SQ" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 6 @@ -5404,29 +5393,79 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"Tc" = ( +/obj/item/holosign_creator/engineering, +/obj/item/clothing/under/syndicate/gec, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/glasses/welding, +/obj/item/storage/toolbox/syndicate, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/analyzer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/bag/construction, +/obj/item/clothing/glasses/meson/prescription, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/mask/gas, +/obj/structure/closet/secure_closet/engineering_personal{ + name = "GEC Engineer's Locker"; + populate = 0 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/turf_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"Tf" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped/layer2{ + desc = "Very useful for mixing gasses. This one mixes Nitrogen and Oxygen at the proper proportions for breathing air"; + dir = 8; + name = "air mixer"; + node1_concentration = 0.21; + node2_concentration = 0.79; + on = 1; + target_pressure = 2500 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "Tg" = ( /obj/machinery/vending/boozeomat/syndicate_access, /turf/open/floor/plasteel/tech/grid, /area/ship/crew/canteen) -"Tl" = ( +"To" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 +/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 }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/machinery/door/airlock/external/glass{ + dir = 4; + name = "Construction Zone" }, -/area/ship/engineering) +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) "Tp" = ( /obj/structure/particle_accelerator/fuel_chamber, /turf/open/floor/plating/airless, @@ -5452,6 +5491,19 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/crew/canteen) +"Tu" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "TE" = ( /obj/structure/window/plasma/reinforced/plastitanium, /obj/structure/grille, @@ -5506,19 +5558,31 @@ "TV" = ( /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"TZ" = ( -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/obj/structure/curtain/cloth/grey, -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 8 +"Ua" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/structure/sign/poster/contraband/gec{ - pixel_x = -32 +/obj/machinery/light/small/directional/south, +/obj/machinery/portable_atmospherics/scrubber/huge/movable, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"Ub" = ( +/obj/machinery/the_singularitygen, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/item/paper{ + info = "Engineers are advised against constructing singularities and teslas aboard the GEC Engineering Project. Field generators are liable to fail when the vessel docks and undocks - the results of such an event being catastrophic, should a singularity or tesla be kept inside.

In the event of a singuloose, or a tesloose, crew should fling themselves out of the nearest airlock, in the hopes that their corpse is discovered in the future.

Have a safe day, GEC management."; + name = "Warning" + }, +/turf/open/floor/plating/airless, +/area/ship/construction) "Uc" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -5559,30 +5623,6 @@ }, /turf/open/floor/plating, /area/ship/hallway/central) -"Uj" = ( -/obj/structure/table/reinforced, -/obj/structure/railing{ - dir = 9 - }, -/obj/item/documents{ - icon_state = "docs_part"; - desc = "Upon closer inspection, this is just an egg salad recipe."; - pixel_x = 3; - pixel_y = 3; - layer = 3 - }, -/obj/item/folder{ - pixel_y = 2 - }, -/obj/item/folder/red{ - pixel_y = 4 - }, -/obj/item/stamp/syndicate{ - pixel_y = 6; - pixel_x = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/bridge) "Ul" = ( /obj/structure/cable{ icon_state = "1-4" @@ -5610,30 +5650,25 @@ }, /turf/open/floor/plasteel/tech/airless, /area/ship/construction) -"Uv" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/structure/railing, -/turf/open/floor/plating, -/area/ship/cargo) "Uy" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew/dorm) -"UA" = ( -/obj/effect/decal/cleanable/vomit/old{ - color = "#808080" +"Uz" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "engine_shutters" }, -/obj/effect/decal/fakelattice, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/ship/crew/canteen) +/obj/machinery/door/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "UH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 @@ -5680,28 +5715,18 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"UZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" - }, -/area/ship/engineering) "Vf" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) +"Vi" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) "Vj" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 6 @@ -5730,72 +5755,45 @@ /obj/machinery/holopad/emergency/bar, /turf/open/floor/plasteel/dark, /area/ship/crew/canteen) -"Vs" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/light/dim, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "Vy" = ( /obj/machinery/air_sensor/atmos/oxygen_tank, /turf/open/floor/engine/o2, /area/ship/engineering/atmospherics) -"VA" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 5 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) "VL" = ( /turf/open/floor/plasteel/tech, /area/ship/cargo) -"VX" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/light/small{ +"Wb" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ dir = 4; - pixel_y = 7 - }, -/obj/machinery/button/door{ - name = "Air Mix Drain"; - pixel_x = 27; - pixel_y = -5; - dir = 8; - id = "airmixchamber" - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Wa" = ( -/obj/effect/turf_decal/corner/transparent/solgovgold{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/hallway/central) -"Wd" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/canvas/nineteenXnineteen{ - name = "Concept Board"; - desc = "The heart and soul of every good project leader. Plan your engineering projects with this canvas." - }, -/obj/structure/easel{ - anchored = 1 + id = "construction_shutters" }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) +/turf/open/floor/plating/airless, +/area/ship/construction) "We" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/tech/airless, /area/ship/construction) +"Wp" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" + }, +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 + }, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "Ws" = ( /obj/effect/turf_decal/industrial/warning{ dir = 6 @@ -5805,18 +5803,6 @@ "Wv" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) -"Wy" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/atmospherics/pipe/simple/brown/hidden{ - dir = 8 - }, -/obj/machinery/light/dim{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) "WE" = ( /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" @@ -5898,21 +5884,25 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"Xm" = ( -/obj/effect/turf_decal/corner/transparent/bar/diagonal, -/obj/structure/chair{ - dir = 4 +"Xj" = ( +/obj/structure/catwalk/over/plated_catwalk/white{ + color = "#4c535b" }, -/obj/machinery/camera/autoname{ - dir = 2; - network = list("GEC") +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/newscaster{ - pixel_y = 30 +/obj/effect/decal/fakelattice{ + color = "#8D8B8B"; + layer = 2.1 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) +/obj/machinery/atmospherics/pipe/simple/purple/hidden{ + dir = 2 + }, +/turf/open/floor/plating{ + color = "#8D8B8B"; + icon_state = "elevatorshaft" + }, +/area/ship/engineering) "Xs" = ( /obj/effect/turf_decal/atmos/carbon_dioxide, /turf/open/floor/engine/co2, @@ -5966,6 +5956,17 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) +"XJ" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{ + dir = 2 + }, +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "XN" = ( /obj/machinery/cell_charger, /obj/structure/table, @@ -5984,24 +5985,23 @@ /obj/structure/curtain/cloth/grey, /turf/open/floor/plating, /area/ship/crew/canteen) -"XT" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" +"XV" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 8 }, -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"XX" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_x = -4; + pixel_y = 8 }, -/turf/open/floor/plating, -/area/ship/hallway/central) -"Ye" = ( -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 4 +/obj/effect/turf_decal/trimline/transparent/bar/filled/line{ + dir = 9 }, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, +/turf/open/floor/mineral/plastitanium, /area/ship/crew/canteen) "Yj" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ @@ -6020,6 +6020,10 @@ /obj/structure/catwalk/over/plated_catwalk/white{ color = "#4c535b" }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, /turf/open/floor/plating, /area/ship/bridge) "Yw" = ( @@ -6068,72 +6072,55 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering/atmospherics) -"YQ" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +"YY" = ( +/obj/effect/turf_decal/steeldecal/steel_decals_central2{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/obj/machinery/light/small/directional/south, +/obj/structure/toilet{ + dir = 1 }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/dorm) +"Zk" = ( /obj/structure/cable{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/machinery/light/small{ +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"Zl" = ( +/obj/machinery/door/airlock/hatch{ dir = 4; - pixel_y = -12 + id_tag = "ce_bolts"; + name = "Project Overseer's Office" }, -/turf/open/floor/plating, -/area/ship/crew/canteen) -"Zm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/engineering/atmospherics) -"Zn" = ( -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/obj/structure/curtain/cloth/grey, -/obj/effect/turf_decal/steeldecal/steel_decals_central2{ - pixel_y = 2; - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) -"Zo" = ( -/obj/structure/catwalk/over/plated_catwalk/white{ - color = "#4c535b" +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/structure/closet/wall{ - dir = 1; - name = "Radio Closet"; - pixel_y = -30 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/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/effect/decal/fakelattice{ - color = "#8D8B8B"; - layer = 2.1 +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Zm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plating{ - icon_state = "elevatorshaft"; - color = "#8D8B8B" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/area/ship/crew/dorm) +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ship/engineering/atmospherics) "Zr" = ( /obj/structure/cable{ icon_state = "2-4" @@ -6146,6 +6133,20 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) +"Zz" = ( +/obj/effect/turf_decal/corner/transparent/solgovgold{ + dir = 5 + }, +/obj/effect/turf_decal/industrial/traffic{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + desc = "A pump that moves gas by pressure. This one sucks up gasses from the atmosphere and sends them to be filtered out into the tanks"; + dir = 4; + name = "Atmosphere to Filtering" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) "ZJ" = ( /obj/effect/turf_decal/corner/transparent/solgovgold{ dir = 5 @@ -6245,20 +6246,20 @@ Qs Qs Qs Iv -HX +tV Qs Qs -qM -qM +He +He sl -PC -PC +CY +CY sl -PC -PC +CY +CY sl -qM -qM +Uz +He tx tx tx @@ -6278,25 +6279,25 @@ QM MC TE Sx -fI +Zz Qs Qs -nn -Qk -FY -pr -pr -wz -pr -Bn -fW -is -gI +OM +Ak +aA +ld +ld +Fr +ld +Wp +Tc +Kv +PT tx tx -MY -TZ -Zn +Kz +pY +GO tx kD kD @@ -6315,21 +6316,21 @@ st xZ Qs vv -ph +EG lJ -JK +KO nU -MK +Xj ru tU -fW -ef +Tc +BP Qm tx -kW +iw aE -Ln -Zo +cX +iK tx kD kD @@ -6343,25 +6344,25 @@ Qs pl dn TE -ue +ig hC oZ dg -xQ -Lt +LK +Du qq pN -jN +IU OA -Cn +uX XN -fW +Tc xj uc tx -cB -Mh -rp +ol +nt +uw tx tx Uy @@ -6376,23 +6377,23 @@ Qs Qs Qs Qs -Wy +xK sU -yI +fx Qs -JU -nN +OZ +uI Hx qn -jN +IU gR -EF +or LI -Lz -Bl +Bp +kd rh tx -al +zI Ge Az tx @@ -6411,25 +6412,25 @@ NH TE Ij sU -KQ +Kp Qs Qs -hJ +wD sY -Hn -UZ -ku -Tl -jc -nG -bk +ug +SK +fQ +rS +vp +sd +wt uc tx -NT -QL -nk +Qw +OD +HL tx -pv +Bj JW tx kD @@ -6450,20 +6451,20 @@ Qs mO sl sl -mA -OR +Sr +Cc pf sl -mx +zV sl sl tx tx Lu -aa +kr FA -EA -Au +kY +YY tx kD kD @@ -6475,16 +6476,16 @@ Qs xP uR TE -eh +QO hQ -cK -de +Tf +Zk Qs Qs Qs sl sl -JC +HN sl sl sl @@ -6492,10 +6493,10 @@ sl CN eK tx -PU +tS tx tx -ya +CL JH tx kD @@ -6513,14 +6514,14 @@ sU CA rj uL -lx +NF Qs LM So WS Bf -aK -SH +Lr +IT Kq XC XC @@ -6544,7 +6545,7 @@ TE Qg sU Jz -eH +iq ck rU fG @@ -6563,7 +6564,7 @@ Uc Wv CI uW -mr +zE Wv jo kD @@ -6579,9 +6580,9 @@ AA EX gZ XD -em +ce Qs -NP +yt oe oe yT @@ -6612,13 +6613,13 @@ YO NY JQ Bz -Vs +ud Qs -XT -Rk +jE +uG lL XP -PR +KU XP lL Gd @@ -6640,7 +6641,7 @@ Qs Qs Qs Qs -Wy +xK sU eY gZ @@ -6665,7 +6666,7 @@ Nn YB Sn rD -kD +PL kD "} (15,1,1) = {" @@ -6681,8 +6682,8 @@ bZ Zm Qs rw -uS -zf +Gs +Vi Os tK hF @@ -6693,11 +6694,11 @@ oA cA iZ Wv -OP +PE vf cj Si -Ov +Lc kD kD "} @@ -6711,7 +6712,7 @@ sU IN Yj GS -dT +cT Qs qE iG @@ -6724,7 +6725,7 @@ MA XP XB cA -VA +uB Wv qD hW @@ -6746,12 +6747,12 @@ Yj GS jl Qs -Xm +Da bC Ts aY UH -YQ +zU oq Oa XP @@ -6760,8 +6761,8 @@ mU Io Wv tE -Uv -oH +IE +bm KX Wv kD @@ -6772,7 +6773,7 @@ Qs vk Pk TE -lY +Hz Qd Rw Yj @@ -6781,7 +6782,7 @@ iU Qs WK Lo -Os +dS sf xh lL @@ -6790,7 +6791,7 @@ lL lL oA cA -Ig +yn wq wq wq @@ -6805,7 +6806,7 @@ Qs Qs Qs Qs -aL +PF ZJ qH Vf @@ -6818,25 +6819,25 @@ MT Os FJ lL -bs +XX aV lL -up +pD cA gN wq -MV -eP +FU +uA Ud fy -uF -My +tt +wc wq "} (20,1,1) = {" Qs -Ar -JO +kf +GH Tq nT uj @@ -6863,12 +6864,12 @@ dA fn iT Tb -Jr +uJ wq "} (21,1,1) = {" Qs -qg +JS ql UN Dx @@ -6878,14 +6879,14 @@ dc bb wI Qs -eW -Sm -Ye -nK -wY +Me +Bs +Ne +LU +fU lL -UA -aH +hq +hU lL Dh cA @@ -6894,22 +6895,22 @@ wq hb qa zx -Lb +Hc tf IA wq "} (22,1,1) = {" Qs -jg +HE MG AI jp uj -IL -el +hV +yu xr -ng +Tu Qs Nl Kd @@ -6917,25 +6918,25 @@ Vr Kd Kd Cb -eM -DK +vW +jU lL TQ cA gN wq -fM -fM -fM +fV +fV +fV wq -Il +Zl wq wq "} (23,1,1) = {" Qs -Bh -Pt +fD +BO Qs Qs td @@ -6945,21 +6946,21 @@ bZ JV Qs Tg -qe -bU +qz +wV Yw nJ lL -EV -sm +hj +ms lL cn mU Io Fe rA -Oe -Wd +Mw +jY cq El jZ @@ -6967,15 +6968,15 @@ wq "} (24,1,1) = {" DI -Jy -BG -Nx -Ag +MG +DX +Kc +SJ Ie AE lQ fa -IQ +Ua rg rg rg @@ -6983,10 +6984,10 @@ rg rg rg rg -ts +dC mq lL -Wa +QZ Ug rL jh @@ -6995,7 +6996,7 @@ TO Yq QY Mp -JM +IR wq "} (25,1,1) = {" @@ -7008,9 +7009,9 @@ Nz mp ws uP -eO +GC rg -vg +ah uH pJ ly @@ -7026,40 +7027,40 @@ Fe KV EY rF -cz +SO eB -rm +gD wq "} (26,1,1) = {" DI -VX +Kg ZR pF -iM +dQ jW TV Zr -DE +pq Qs rg lM -dj +qu yH WN Tp Vn -iv +BN rg rg by Rn Uc wq -IV +yf QK -Uj -OH +AH +dx eB yp On @@ -7072,7 +7073,7 @@ OF vH Qs Qs -su +To Qs rg IG @@ -7080,17 +7081,17 @@ Lq xs CR Xw -Fn +Ub pz Nq Ko rg NE -bj +Ad NE NE qR -Ex +dt FL dt ZZ @@ -7106,29 +7107,29 @@ JL Qs qj uD -xB +XJ xg Jv jP ia ia -pZ +Eg We We hr -CF +SI rg gQ ut -Ip +yX Up Mm -Cu +XV cZ Es On -On -On +ca +yL "} (29,1,1) = {" kD @@ -7141,15 +7142,15 @@ WI uD oP xg -nb -nb -nb -nb +cN +cN +cN +cN rg -nb -nb -nb -mu +cN +cN +cN +Iz rg QI Cd @@ -7157,8 +7158,8 @@ iQ Up wq wq -On -On +ca +ca On kD kD @@ -7171,21 +7172,21 @@ Qs Qs Qs Qs -pT +vQ Qs rg Ls ia ia ia -FS +Lx ia ia ia lc rg NE -Ez +KZ NE NE rg @@ -7201,7 +7202,7 @@ kD kD Mb rg -Ls +Ej ia GF vU @@ -7709,7 +7710,7 @@ ia ia ia Jj -wl +ON wl wl wl @@ -7742,7 +7743,7 @@ ia ia ia Jj -wl +IK wl wl wl @@ -7775,7 +7776,7 @@ ia ia ia Jj -wl +lH wl wl wl @@ -8001,11 +8002,11 @@ kD Md rg rg -xI -xI -xI -xI -xI +Wb +Wb +Wb +Wb +Wb rg rg Md diff --git a/_maps/shuttles/shiptest/syndicate_gorlex_hyena.dmm b/_maps/shuttles/shiptest/syndicate_gorlex_hyena.dmm index f4868aedb8d7..5769ef8674b9 100644 --- a/_maps/shuttles/shiptest/syndicate_gorlex_hyena.dmm +++ b/_maps/shuttles/shiptest/syndicate_gorlex_hyena.dmm @@ -47,23 +47,22 @@ icon_state = "syndicate"; name = "armor locker" }, -/obj/machinery/light/small{ - dir = 8 - }, /obj/item/clothing/suit/armor/vest/syndie, /obj/item/clothing/suit/armor/vest/syndie, /obj/item/clothing/head/helmet/operator, /obj/item/clothing/head/helmet/operator, /obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 +/obj/item/radio/intercom/directional/west{ + pixel_y = -5 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable{ icon_state = "0-4" }, /obj/effect/turf_decal/industrial/outline, +/obj/machinery/light/small/directional/west{ + pixel_y = 7 + }, /turf/open/floor/mineral/plastitanium, /area/ship/security/armory) "bN" = ( @@ -92,10 +91,7 @@ /area/ship/security/armory) "cf" = ( /obj/structure/table/reinforced, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, +/obj/item/radio/intercom/directional/east, /obj/item/toy/figure/syndie{ pixel_x = 11; pixel_y = -3 @@ -117,15 +113,14 @@ dir = 4 }, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "wreckerwindows"; name = "Blast Shutters" }, /turf/open/floor/plating, /area/ship/storage) "cV" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/cable{ icon_state = "0-8" }, @@ -136,7 +131,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 10 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/opaque/red/filled/corner{ dir = 1 }, @@ -163,13 +158,13 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/door/poddoor{ - id = "wrecker_engine_stbd" - }, /obj/machinery/door/window/eastleft{ name = "Engine Access" }, -/obj/structure/window/reinforced/spawner/north, +/obj/machinery/door/poddoor{ + id = "wrecker_engine_stbd"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/maintenance/starboard) "dA" = ( @@ -211,10 +206,7 @@ "dF" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/industrial/outline, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/firealarm/directional/east, /obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, @@ -273,27 +265,22 @@ icon_state = "syndicate"; name = "ammunition locker" }, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/light/small/directional/east{ + pixel_y = -8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 +/obj/machinery/firealarm/directional/east{ + pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/industrial/outline, /obj/item/storage/box/lethalshot, /obj/item/ammo_box/c10mm, /turf/open/floor/mineral/plastitanium, /area/ship/security/armory) "fA" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/advanced_airlock_controller{ pixel_x = 25 }, @@ -306,6 +293,9 @@ /obj/item/tank/internals/oxygen, /obj/item/clothing/suit/space/syndicate/surplus, /obj/item/clothing/head/helmet/space/syndicate/surplus, +/obj/structure/sign/syndicate{ + pixel_y = 28 + }, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) "fL" = ( @@ -323,9 +313,7 @@ dir = 8 }, /obj/effect/decal/cleanable/oil/streak, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, +/obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plating, /area/ship/maintenance/port) "fY" = ( @@ -356,7 +344,7 @@ /turf/open/floor/plasteel, /area/ship/crew) "gM" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -419,7 +407,7 @@ pixel_x = 9; pixel_y = -6 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, @@ -450,13 +438,13 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/door/poddoor{ - id = "wrecker_engine_port" - }, /obj/machinery/door/window/eastleft{ name = "Engine Access" }, -/obj/structure/window/reinforced/spawner/north, +/obj/machinery/door/poddoor{ + dir = 4; + id = "wrecker_engine_port" + }, /turf/open/floor/plating, /area/ship/maintenance/port) "iu" = ( @@ -536,13 +524,13 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/door/poddoor{ - id = "wrecker_engine_stbd" - }, /obj/machinery/door/window/eastright{ name = "Engine Access" }, -/obj/structure/window/reinforced/spawner, +/obj/machinery/door/poddoor{ + id = "wrecker_engine_stbd"; + dir = 4 + }, /turf/open/floor/plating, /area/ship/maintenance/starboard) "iT" = ( @@ -555,18 +543,16 @@ "jt" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ + dir = 4; id = "wreckerwindows"; name = "Blast Shutters" }, /turf/open/floor/plating, /area/ship/storage) "jG" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/corner_techfloor_grid, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) @@ -606,11 +592,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 5; - pixel_y = -22 - }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/carpet/red, /area/ship/cargo/office) "kg" = ( @@ -626,10 +608,11 @@ /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, +/obj/structure/window/reinforced/spawner/east, /obj/machinery/door/poddoor{ - id = "wrecker_engine_stbd" + id = "wrecker_engine_stbd"; + dir = 4 }, -/obj/structure/window/reinforced/spawner/east, /turf/open/floor/plating, /area/ship/maintenance/starboard) "kM" = ( @@ -668,10 +651,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/bridge) "lg" = ( @@ -679,10 +659,7 @@ /obj/effect/decal/cleanable/oil/streak, /obj/effect/turf_decal/industrial/outline, /obj/structure/closet/crate/freezer, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/item/reagent_containers/blood/random, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) @@ -731,9 +708,7 @@ /obj/structure/curtain/cloth/fancy{ name = "blood-red curtains" }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/carpet/black, /area/ship/bridge) "nu" = ( @@ -842,7 +817,7 @@ /area/ship/maintenance/fore) "oR" = ( /obj/effect/turf_decal/industrial/outline, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sign/poster/contraband/hacking_guide{ pixel_y = -32 @@ -861,9 +836,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/ship/maintenance/starboard) "pu" = ( @@ -880,7 +853,7 @@ /area/ship/crew/dorm) "pv" = ( /obj/structure/dresser, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/carpet/red, /area/ship/crew/dorm) @@ -915,10 +888,7 @@ /turf/open/floor/carpet/red_gold, /area/ship/bridge) "pI" = ( -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 22 - }, +/obj/item/radio/intercom/wideband/directional/east, /obj/effect/turf_decal/borderfloor{ dir = 1 }, @@ -957,8 +927,8 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/light, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/directional/south, /turf/open/floor/carpet/red_gold, /area/ship/bridge) "qs" = ( @@ -995,10 +965,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/bridge) "rF" = ( @@ -1019,7 +986,7 @@ /obj/item/clothing/head/hardhat, /obj/item/clothing/head/soft/yellow, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) "rM" = ( @@ -1055,6 +1022,7 @@ /area/ship/cargo) "so" = ( /obj/machinery/door/poddoor{ + dir = 4; id = "wreckercargobay"; name = "Cargo Bay Exterior Blast Door" }, @@ -1072,6 +1040,7 @@ /obj/effect/turf_decal/industrial/warning/fulltile, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/poddoor{ + dir = 4; id = "wreckercargobay"; name = "Cargo Bay Exterior Blast Door" }, @@ -1115,6 +1084,7 @@ /area/ship/bridge) "sR" = ( /obj/machinery/door/airlock/grunge{ + dir = 8; name = "Bridge"; req_access_txt = "19" }, @@ -1180,12 +1150,7 @@ /obj/item/clothing/glasses/welding, /obj/item/clothing/head/hardhat/orange, /obj/item/clothing/head/soft/grey, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) "tI" = ( @@ -1219,10 +1184,7 @@ /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) "uf" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/borderfloor{ dir = 4 }, @@ -1235,10 +1197,7 @@ "uk" = ( /obj/machinery/vending/cigarette/syndicate, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) "un" = ( @@ -1318,10 +1277,7 @@ /obj/item/stack/sheet/metal/fifty, /obj/effect/turf_decal/industrial/outline, /obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, +/obj/item/radio/intercom/directional/south, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) "vG" = ( @@ -1410,12 +1366,12 @@ /obj/structure/chair/sofa/corner{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ +/obj/item/radio/intercom/directional/north{ pixel_y = 22 }, /turf/open/floor/carpet/red, @@ -1459,9 +1415,7 @@ /obj/item/stack/sheet/mineral/uranium/five, /obj/effect/turf_decal/radiation/white, /obj/effect/turf_decal/industrial/outline, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ship/maintenance/port) "yM" = ( @@ -1495,6 +1449,7 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/landmark/observer_start, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) "zq" = ( @@ -1548,10 +1503,7 @@ dir = 1 }, /obj/effect/turf_decal/corner/transparent/bar, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, +/obj/machinery/firealarm/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ship/crew) @@ -1589,10 +1541,8 @@ /obj/item/clothing/glasses/welding, /obj/item/clothing/head/hardhat/orange, /obj/item/clothing/head/soft/grey, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 28 - }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) "zZ" = ( @@ -1603,9 +1553,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/plating, /area/ship/maintenance/starboard) "Ai" = ( @@ -1621,7 +1569,7 @@ /obj/structure/sign/poster/contraband/random{ pixel_y = -32 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/plasteel, /area/ship/crew) "Ap" = ( @@ -1774,8 +1722,9 @@ "DF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/spider/stickyweb, -/obj/structure/closet/crate/secure/loot, +/obj/effect/turf_decal/number/zero{ + dir = 1 + }, /turf/open/floor/plating, /area/ship/maintenance/fore) "DH" = ( @@ -1806,9 +1755,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/plasteel/tech/techmaint, /area/ship/maintenance/starboard) "En" = ( @@ -1843,17 +1790,14 @@ /obj/structure/table/reinforced, /obj/item/soap/syndie, /obj/effect/turf_decal/borderfloor, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/mineral/plastitanium, /area/ship/crew/dorm) "Ff" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/borderfloor, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/structure/closet/wall/white/med{ dir = 1; name = "medicine locker"; @@ -1900,6 +1844,14 @@ }, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) +"FJ" = ( +/obj/docking_port/stationary{ + dwidth = 10; + width = 30; + height = 15 + }, +/turf/template_noop, +/area/template_noop) "FQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -1914,17 +1866,6 @@ name = "External Airlock" }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/docking_port/mobile{ - can_move_docking_ports = 1; - dir = 2; - dwidth = 12; - height = 18; - launch_status = 0; - name = "mining ship"; - port_direction = 8; - preferred_direction = 4; - width = 28 - }, /obj/effect/turf_decal/industrial/warning/fulltile, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) @@ -1933,17 +1874,11 @@ dir = 1; piping_layer = 2 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/industrial/fire{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/tech/grid, /area/ship/maintenance/port) "GA" = ( @@ -2034,16 +1969,10 @@ /obj/machinery/cryopod{ dir = 1 }, -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -25 - }, +/obj/machinery/computer/cryopod/directional/south, /obj/effect/turf_decal/industrial/warning/full, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/plasteel/dark, /area/ship/crew/dorm) "IK" = ( @@ -2052,14 +1981,15 @@ dir = 8 }, /obj/effect/turf_decal/industrial/outline, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/suit_storage_unit/inherit/industrial, /obj/item/clothing/mask/breath, /obj/item/tank/internals/oxygen, /obj/item/clothing/suit/space/syndicate/surplus, /obj/item/clothing/head/helmet/space/syndicate/surplus, +/obj/structure/sign/syndicate{ + pixel_y = 28 + }, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) "IO" = ( @@ -2072,6 +2002,15 @@ /obj/effect/decal/cleanable/food/egg_smudge, /turf/open/floor/plasteel, /area/ship/crew) +"Jf" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "wreckerwindows"; + name = "Blast Shutters" + }, +/turf/open/floor/plating, +/area/ship/bridge) "Jv" = ( /obj/machinery/modular_computer/console/preset/command{ dir = 8 @@ -2097,14 +2036,12 @@ /area/ship/bridge) "JF" = ( /obj/effect/turf_decal/industrial/outline, -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/item/clothing/suit/space/hardsuit/syndi/scarlet, /obj/item/clothing/mask/breath, /obj/machinery/suit_storage_unit/inherit/industrial{ req_access = null; - req_one_access = list(48, 56) + req_one_access = list(48,56) }, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) @@ -2126,6 +2063,7 @@ "JS" = ( /obj/effect/turf_decal/industrial/warning/fulltile, /obj/machinery/door/poddoor{ + dir = 4; id = "wreckercargobay"; name = "Cargo Bay Exterior Blast Door" }, @@ -2134,6 +2072,9 @@ "Kb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/number/five{ + dir = 1 + }, /turf/open/floor/plating, /area/ship/maintenance/fore) "Kf" = ( @@ -2180,6 +2121,9 @@ /area/ship/crew) "Ky" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/hardline_small/right{ + dir = 1 + }, /turf/open/floor/plating, /area/ship/maintenance/fore) "KA" = ( @@ -2205,9 +2149,7 @@ /turf/open/floor/plating, /area/ship/maintenance/port) "KJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/industrial/fire{ dir = 4 @@ -2220,6 +2162,24 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) +"KM" = ( +/obj/effect/turf_decal/industrial/warning/fulltile, +/obj/machinery/door/poddoor{ + dir = 4; + id = "wreckercargobay"; + name = "Cargo Bay Exterior Blast Door" + }, +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + dir = 8; + height = 18; + launch_status = 0; + name = "mining ship"; + preferred_direction = 4; + dheight = 4 + }, +/turf/open/floor/plating, +/area/ship/cargo) "KQ" = ( /obj/structure/cable{ icon_state = "0-4" @@ -2246,7 +2206,7 @@ /turf/open/floor/plasteel/tech/grid, /area/ship/security/armory) "KW" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -2267,7 +2227,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden/layer4{ dir = 9 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ icon_state = "0-8" }, @@ -2277,10 +2237,7 @@ /turf/open/floor/plasteel/tech/techmaint, /area/ship/maintenance/port) "Lg" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, +/obj/machinery/airalarm/directional/east, /obj/structure/weightmachine/weightlifter, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/plasteel/dark, @@ -2446,6 +2403,7 @@ icon_state = "0-8" }, /obj/machinery/door/poddoor{ + dir = 4; id = "wreckercargobay"; name = "Cargo Bay Exterior Blast Door" }, @@ -2469,9 +2427,7 @@ dir = 4 }, /obj/effect/landmark/start/assistant, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/carpet/red, /area/ship/crew) "Or" = ( @@ -2479,7 +2435,7 @@ /obj/effect/turf_decal/industrial/fire{ dir = 4 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /obj/structure/cable{ icon_state = "1-8" }, @@ -2494,6 +2450,7 @@ /area/ship/storage) "OJ" = ( /obj/machinery/door/airlock/grunge{ + dir = 4; name = "Locker Room" }, /obj/structure/cable{ @@ -2545,6 +2502,16 @@ /obj/item/gun/ballistic/shotgun/lethal, /turf/open/floor/mineral/plastitanium, /area/ship/security/armory) +"Pd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/spider/stickyweb, +/obj/structure/closet/crate/secure/loot, +/obj/effect/turf_decal/number/three{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "Pn" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2623,10 +2590,13 @@ /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, /obj/machinery/door/poddoor{ + dir = 4; id = "wrecker_engine_port" }, -/obj/structure/window/reinforced/spawner/east, /turf/open/floor/plating, /area/ship/maintenance/port) "PT" = ( @@ -2695,6 +2665,13 @@ /obj/structure/sign/warning/vacuum/external, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) +"RE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/hardline_small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/maintenance/fore) "Sd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -2731,10 +2708,6 @@ /obj/effect/decal/cleanable/oil/streak, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"SF" = ( -/obj/structure/sign/syndicate, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/hallway/central) "SJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -2758,13 +2731,13 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/door/poddoor{ - id = "wrecker_engine_port" - }, /obj/machinery/door/window/eastright{ name = "Engine Access" }, -/obj/structure/window/reinforced/spawner, +/obj/machinery/door/poddoor{ + dir = 4; + id = "wrecker_engine_port" + }, /turf/open/floor/plating, /area/ship/maintenance/port) "SV" = ( @@ -2782,9 +2755,7 @@ /turf/open/floor/plasteel/tech/techmaint, /area/ship/maintenance/port) "SW" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/simple/green/hidden, /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 @@ -2830,9 +2801,7 @@ /area/ship/maintenance/starboard) "TX" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, +/obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/steeldecal/steel_decals_central4{ dir = 1 }, @@ -2849,7 +2818,7 @@ /area/ship/maintenance/port) "Uh" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/trimline/opaque/red/filled/corner, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) @@ -2877,9 +2846,7 @@ /turf/open/floor/mineral/plastitanium, /area/ship/crew/dorm) "Vv" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 }, @@ -2941,6 +2908,9 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/remains/human, +/obj/effect/turf_decal/hardline_small/left{ + dir = 1 + }, /turf/open/floor/plating, /area/ship/maintenance/fore) "VG" = ( @@ -2986,7 +2956,7 @@ /obj/item/clothing/mask/breath, /obj/machinery/suit_storage_unit/inherit/industrial{ req_access = null; - req_one_access = list(48, 56) + req_one_access = list(48,56) }, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) @@ -3017,10 +2987,7 @@ /obj/item/clothing/accessory/holster, /obj/item/grenade/chem_grenade/metalfoam, /obj/item/card/mining_access_card, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, +/obj/machinery/airalarm/directional/west, /obj/item/tank/jetpack/suit, /obj/item/radio/headset/syndicate/alt, /turf/open/floor/carpet/red, @@ -3028,9 +2995,7 @@ "Wc" = ( /obj/structure/table, /obj/item/modular_computer/laptop/preset/civilian, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/carpet/red, /area/ship/crew/dorm) "Wd" = ( @@ -3213,6 +3178,7 @@ /area/ship/crew) "YH" = ( /obj/machinery/door/airlock/grunge{ + dir = 4; name = "Cargo Bay" }, /obj/structure/cable{ @@ -3287,10 +3253,7 @@ /obj/effect/turf_decal/industrial/outline, /obj/structure/table, /obj/machinery/cell_charger, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) "ZM" = ( @@ -3308,17 +3271,17 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plasteel/tech, /area/ship/hallway/central) (1,1,1) = {" nn +iT Ua Xz Ua +iT nn nn nn @@ -3327,14 +3290,14 @@ nn nn nn nn -nn -nn +sE MF TT -MF -nn +Ua +sE "} (2,1,1) = {" +nn JO ir PL @@ -3355,6 +3318,7 @@ iQ iG "} (3,1,1) = {" +nn iT OL xm @@ -3375,6 +3339,7 @@ KQ sE "} (4,1,1) = {" +nn iT KJ EL @@ -3395,6 +3360,7 @@ Or sE "} (5,1,1) = {" +nn iT zQ pz @@ -3415,6 +3381,7 @@ rR sE "} (6,1,1) = {" +nn iT zA XP @@ -3435,6 +3402,7 @@ dF sE "} (7,1,1) = {" +nn iT fi rM @@ -3455,6 +3423,7 @@ sE sE "} (8,1,1) = {" +nn JL iT yD @@ -3475,6 +3444,7 @@ sE CW "} (9,1,1) = {" +nn Zb JL iT @@ -3495,6 +3465,7 @@ CW Zb "} (10,1,1) = {" +nn Zb nn cs @@ -3515,6 +3486,7 @@ nn Zb "} (11,1,1) = {" +nn Zb nn YI @@ -3535,6 +3507,7 @@ nn Zb "} (12,1,1) = {" +nn Zb nn cs @@ -3555,6 +3528,7 @@ nn Zb "} (13,1,1) = {" +nn Zb Zb cs @@ -3575,6 +3549,7 @@ Zb Zb "} (14,1,1) = {" +nn Zb nn cs @@ -3595,6 +3570,7 @@ nn Zb "} (15,1,1) = {" +nn Rn cs cs @@ -3615,9 +3591,10 @@ nn Zb "} (16,1,1) = {" +nn cs IK -SF +cs ZR iI DO @@ -3635,6 +3612,7 @@ oO Zb "} (17,1,1) = {" +nn YI lt sG @@ -3655,6 +3633,7 @@ mL oO "} (18,1,1) = {" +FJ Gm aN Wd @@ -3671,10 +3650,11 @@ fL Xj uf yn -mL +Pd mL "} (19,1,1) = {" +nn cs fA Ru @@ -3695,6 +3675,7 @@ DF mL "} (20,1,1) = {" +nn xZ Ap Ap @@ -3715,6 +3696,7 @@ Kb aI "} (21,1,1) = {" +nn hy hs tw @@ -3735,6 +3717,7 @@ Ky XZ "} (22,1,1) = {" +nn En no KA @@ -3751,10 +3734,11 @@ sA wP vv mL -Ky +RE qs "} (23,1,1) = {" +nn xZ yM mf @@ -3775,6 +3759,7 @@ VD aI "} (24,1,1) = {" +nn Ap AK XA @@ -3787,7 +3772,7 @@ NF NF so JS -JS +KM sx NN mL @@ -3795,6 +3780,7 @@ mL mL "} (25,1,1) = {" +nn oz Wv kM @@ -3815,6 +3801,7 @@ mL mL "} (26,1,1) = {" +nn oz cf Ma @@ -3835,6 +3822,7 @@ mL mL "} (27,1,1) = {" +nn Kj Ap Jv @@ -3856,10 +3844,11 @@ mL "} (28,1,1) = {" nn +nn fV -oz -oz -oz +Jf +Jf +Jf fV nn nn diff --git a/_maps/shuttles/shiptest/syndicate_gorlex_komodo.dmm b/_maps/shuttles/shiptest/syndicate_gorlex_komodo.dmm index 5b49c1f3fa68..d04d23c943fb 100644 --- a/_maps/shuttles/shiptest/syndicate_gorlex_komodo.dmm +++ b/_maps/shuttles/shiptest/syndicate_gorlex_komodo.dmm @@ -57,14 +57,28 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"aw" = ( -/obj/machinery/computer/bsa_control, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 +"av" = ( +/obj/item/reagent_containers/food/snacks/canned/beans{ + pixel_x = -5; + pixel_y = 3 }, -/turf/open/floor/circuit/green/off, -/area/ship/maintenance/starboard) +/obj/item/reagent_containers/food/snacks/canned/beans{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/closet/crate{ + name = "food crate" + }, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/aft) "ax" = ( /obj/machinery/computer/helm, /obj/effect/turf_decal/techfloor{ @@ -84,14 +98,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/maintenance/starboard) -"aH" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, -/turf/open/floor/carpet/red_gold, -/area/ship/crew/dorm) "aL" = ( /obj/machinery/computer/operating{ dir = 1 @@ -112,31 +118,29 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/hallway/central) -"aX" = ( -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"bb" = ( -/obj/structure/closet/crate{ - name = "food crate" - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -5; - pixel_y = 3 +"aU" = ( +/obj/structure/table/reinforced{ + color = "#c1b6a5" }, -/obj/item/storage/box/donkpockets{ - pixel_x = 2; - pixel_y = 3 +/obj/machinery/cell_charger, +/obj/structure/railing{ + dir = 4 }, -/obj/effect/turf_decal/arrows{ - dir = 8 +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/light{ - dir = 4 +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/structure/railing, -/turf/open/floor/mineral/plastitanium, -/area/ship/hallway/aft) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"aX" = ( +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "bg" = ( /obj/structure/railing{ dir = 4 @@ -156,6 +160,15 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"bn" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/holofloor/wood, +/area/ship/crew/dorm) "bs" = ( /obj/effect/spawner/lootdrop/salvage_capacitor, /obj/effect/decal/cleanable/shreds, @@ -180,21 +193,6 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/hallway/central) -"bA" = ( -/obj/machinery/door/poddoor{ - id = "syndie_warship_cargo"; - name = "Cargo Hatch" - }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - id = "komodo_cargo"; - locked = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) "bE" = ( /obj/effect/turf_decal/industrial/warning{ dir = 9 @@ -202,38 +200,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/mineral/plastitanium/red, /area/ship/security/armory) -"bF" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "syndiewarship_windows"; - name = "Blast Shutters" - }, -/turf/open/floor/plating, -/area/ship/hallway/central) -"bG" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, -/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine{ - pixel_x = 4; - pixel_y = -18 - }, -/obj/item/mecha_parts/mecha_equipment/repair_droid, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) "bI" = ( /obj/effect/spawner/lootdrop/salvage_manipulator, /obj/effect/decal/cleanable/dirt/dust, @@ -244,6 +210,13 @@ icon_state = "panelscorched" }, /area/ship/maintenance/starboard) +"bR" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/dim/directional/west, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/starboard) "bS" = ( /obj/effect/turf_decal/techfloor{ dir = 8 @@ -270,14 +243,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"bZ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "syndiewarship_windows"; - name = "Blast Shutters" - }, -/turf/open/floor/plating, -/area/ship/crew/dorm) "co" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -296,6 +261,15 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"cu" = ( +/obj/docking_port/stationary{ + dwidth = 5; + width = 30; + height = 15; + dir = 8 + }, +/turf/template_noop, +/area/template_noop) "cz" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -322,6 +296,45 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ship/engineering) +"cZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/industrial/fire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/item/t_scanner{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/switchblade{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/trash/syndi_cakes, +/obj/item/trash/can, +/obj/item/suppressor{ + pixel_y = 11 + }, +/obj/item/gun/ballistic/automatic/pistol{ + pixel_x = 4; + pixel_y = -14 + }, +/turf/open/floor/pod/dark, +/area/ship/security/armory) +"dm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "dp" = ( /obj/item/scalpel{ pixel_y = 16 @@ -412,33 +425,44 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"dI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +"dO" = ( +/obj/machinery/door/poddoor/shutters{ + id = "syndiewarship_armorybay"; + name = "Weapon Hold" }, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"dR" = ( +/obj/structure/salvageable/computer, +/obj/effect/decal/cleanable/wrapping, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/circuit/green/off, +/area/ship/maintenance/port) +"dT" = ( +/obj/machinery/computer/secure_data/syndie{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/techfloor{ dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "0-8" }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"dL" = ( +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"em" = ( +/obj/machinery/light/directional/north, /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/structure/railing{ - dir = 1 +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -446,24 +470,11 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "2-8" }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"dO" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndiewarship_armorybay"; - name = "Weapon Hold" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security/armory) "es" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/ripped{ @@ -515,18 +526,20 @@ /obj/machinery/power/terminal, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"eJ" = ( -/obj/structure/railing, -/obj/effect/turf_decal/borderfloorblack, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 +"eE" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, +/obj/machinery/firealarm/directional/south, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/port) +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "eW" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/cobweb, @@ -558,6 +571,16 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"fc" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "fg" = ( /obj/machinery/suit_storage_unit/inherit/industrial, /obj/item/clothing/suit/space/syndicate/black/engie, @@ -587,69 +610,26 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"fy" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +"fE" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Syndie_warship_lockdown"; + name = "Lockdown Shutters" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/firealarm{ +/turf/open/floor/plasteel/tech/grid, +/area/ship/hallway/central) +"gd" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/closet/wall{ dir = 1; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"fB" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -5; - pixel_y = -22 - }, -/obj/structure/bedsheetbin, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/carpet/red_gold, -/area/ship/crew/dorm) -"fE" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Syndie_warship_lockdown"; - name = "Lockdown Shutters" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/hallway/central) -"fU" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/syndicateemblem/top/left, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"gd" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/closet/wall{ - dir = 1; - name = "Utility Closet"; - pixel_y = -30 + name = "Utility Closet"; + pixel_y = -30 }, /obj/item/radio, /obj/item/radio, @@ -675,6 +655,17 @@ }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/cargo) +"gj" = ( +/obj/effect/turf_decal/techfloor{ + dir = 6 + }, +/obj/structure/closet/crate, +/obj/item/radio/intercom/directional/east, +/obj/effect/spawner/lootdrop/costume, +/obj/item/storage/box/emptysandbags, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) "gp" = ( /obj/machinery/button/door{ dir = 8; @@ -720,17 +711,49 @@ icon_state = "platingdmg1" }, /area/ship/maintenance/starboard) +"gw" = ( +/obj/structure/table/reinforced, +/obj/item/toy/cards/deck/syndicate, +/obj/effect/turf_decal/trimline/transparent/bar/filled/line{ + dir = 6 + }, +/obj/item/spacecash/bundle/c1000{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/spacecash/bundle/c1000{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) "gy" = ( /obj/effect/turf_decal/steeldecal/steel_decals8, /obj/structure/chair/comfy/shuttle{ dir = 1; name = "Helm" }, +/obj/structure/railing/corner, /turf/open/floor/plasteel/tech, /area/ship/bridge) "gE" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/security/armory) +"gH" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 10 + }, +/obj/machinery/mineral/ore_redemption{ + dir = 1; + output_dir = 1 + }, +/turf/open/floor/pod, +/area/ship/cargo) "gJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -775,26 +798,6 @@ "gN" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/maintenance/port) -"gZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/button/door{ - dir = 8; - id = "syndiewarship_armorybay"; - name = "Weapon Hold"; - pixel_x = 28 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/hardsuit/syndi/scarlet, -/turf/open/floor/mineral/plastitanium, -/area/ship/security/armory) "hc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/oil, @@ -836,31 +839,14 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"hn" = ( -/obj/structure/table/reinforced, -/obj/item/toy/cards/deck/syndicate, -/obj/effect/turf_decal/trimline/transparent/bar/filled/line{ - dir = 6 - }, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/spacecash/bundle/c1000{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) +"ho" = ( +/obj/machinery/light/directional/west, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/steeldecal/steel_decals3, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "hp" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -869,22 +855,6 @@ dir = 4 }, /area/ship/bridge) -"hI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) "hK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, @@ -894,49 +864,27 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/medical) -"hX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "hY" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) -"id" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 2; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor{ - dir = 5 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/hallway/central) -"ij" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 10 +"io" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "syndiewarship_windows"; + name = "Blast Shutters" }, -/obj/machinery/mineral/ore_redemption{ - dir = 1; - output_dir = 1 +/turf/open/floor/plating, +/area/ship/crew/dorm) +"ip" = ( +/obj/structure/railing, +/obj/effect/turf_decal/borderfloorblack, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/pod, -/area/ship/cargo) +/turf/open/floor/plasteel/tech, +/area/ship/maintenance/port) "iq" = ( /obj/structure/bed, /obj/effect/decal/cleanable/dirt/dust, @@ -1000,12 +948,16 @@ /obj/machinery/power/terminal, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"iU" = ( -/obj/effect/turf_decal/techfloor, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/maintenance/port) +"iR" = ( +/obj/machinery/shower{ + pixel_y = 14 + }, +/obj/structure/curtain, +/obj/item/soap/syndie, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/aft) "iX" = ( /obj/machinery/shower{ pixel_y = 14 @@ -1022,6 +974,21 @@ /obj/effect/turf_decal/techfloor, /turf/open/floor/plasteel/telecomms_floor, /area/ship/maintenance/port) +"je" = ( +/obj/machinery/light/directional/north, +/obj/item/gun/ballistic/automatic/pistol, +/obj/item/gun/ballistic/automatic/pistol{ + pixel_y = 3 + }, +/obj/effect/turf_decal/industrial/fire, +/obj/structure/guncase, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/gun/ballistic/automatic/smg/c20r/unrestricted, +/obj/item/gun/ballistic/shotgun/bulldog/unrestricted, +/turf/open/floor/pod/dark, +/area/ship/security/armory) "jh" = ( /obj/effect/turf_decal/corner_techfloor_grid{ dir = 5 @@ -1046,6 +1013,41 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) +"jp" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/structure/closet/crate/engineering, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/vending_refill/custom, +/obj/item/vending_refill/custom, +/obj/item/stack/sheet/mineral/plastitanium{ + amount = 30; + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/aft) +"jr" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "syndie_warship_cargo"; + name = "Cargo Hatch" + }, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + id = "komodo_cargo"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) "jw" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 @@ -1063,15 +1065,35 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"jF" = ( -/obj/structure/railing/corner{ - dir = 4 +"jz" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 2; + name = "tactical chair" }, -/obj/effect/turf_decal/steeldecal/steel_decals_central4{ - dir = 4 +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/techfloor{ + dir = 5 }, -/obj/structure/railing/corner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/central) +"jE" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + id = "warshipbridge"; + name = "Blast Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/bridge) +"jF" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/steeldecal/steel_decals_central4{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 }, /obj/structure/cable/yellow{ @@ -1088,17 +1110,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"jG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "jP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ @@ -1117,28 +1128,6 @@ }, /turf/open/floor/plating/rust, /area/ship/maintenance/port) -"ke" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) "km" = ( /obj/effect/turf_decal/industrial/warning/corner{ dir = 8 @@ -1161,50 +1150,11 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"ko" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/suit/space/syndicate/black/engie, -/obj/item/clothing/head/helmet/space/syndicate/black/engie, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) "kr" = ( /obj/item/stack/ore/salvage/scrapgold, /obj/structure/table/reinforced, /turf/open/floor/circuit/green/off, /area/ship/maintenance/starboard) -"kt" = ( -/obj/machinery/light/small, -/obj/structure/table/reinforced{ - color = "#c1b6a5" - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -6 - }, -/obj/item/clipboard{ - pixel_x = 5 - }, -/obj/item/folder/red{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "kC" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/transparent/bar/filled/line{ @@ -1232,16 +1182,6 @@ "kI" = ( /turf/open/floor/engine, /area/ship/bridge) -"kJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "kK" = ( /obj/effect/decal/cleanable/plasma, /obj/machinery/power/terminal, @@ -1253,28 +1193,15 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"kQ" = ( -/obj/effect/turf_decal/techfloor{ - dir = 6 - }, -/obj/structure/closet/crate, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/spawner/lootdrop/costume, -/obj/item/storage/box/emptysandbags, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"kR" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/transparent/bar/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +"la" = ( +/obj/machinery/light/directional/north, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "lj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/railing{ @@ -1327,6 +1254,15 @@ /obj/machinery/door/firedoor, /turf/open/floor/mineral/plastitanium/red, /area/ship/engineering) +"lu" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "syndiewarship_windows"; + name = "Blast Shutters" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) "lL" = ( /obj/machinery/door/poddoor{ id = "Artillery1shutter" @@ -1375,31 +1311,36 @@ dir = 8 }, /area/ship/engineering) -"mn" = ( -/obj/machinery/light{ - dir = 4 +"mj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 }, -/obj/structure/closet/cardboard/metal, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = -4; + pixel_y = 7 }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = -3; - pixel_y = 3 +/obj/item/paper_bin{ + pixel_x = 4 }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 8; - pixel_y = -2 +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 1 }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 4; - pixel_y = -2 +/obj/item/clothing/mask/gas/syndicate{ + pixel_x = -4 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium, -/area/ship/hallway/aft) +/obj/item/areaeditor/shuttle{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/machinery/firealarm/directional/north, +/obj/item/codespeak_manual/unlimited{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/holofloor/wood, +/area/ship/bridge) "mv" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 1 @@ -1415,6 +1356,26 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"mA" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/machinery/autolathe/hacked, +/obj/item/stack/sheet/plasteel/twenty{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 6 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "mN" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 1 @@ -1453,27 +1414,10 @@ /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 10 }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) -"nh" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +/obj/structure/railing{ + dir = 10 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech, /area/ship/bridge) "nk" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -1489,11 +1433,26 @@ }, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"ny" = ( -/obj/structure/railing{ - dir = 1 +"no" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/railing, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets/donkpocketteriyaki{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets/donkpocketteriyaki, +/obj/effect/turf_decal/trimline/transparent/bar/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) +"ny" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, @@ -1529,6 +1488,7 @@ /obj/structure/cable{ icon_state = "0-4" }, +/obj/structure/railing, /turf/open/floor/plasteel/tech, /area/ship/bridge) "nR" = ( @@ -1545,6 +1505,14 @@ "nU" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/port) +"oi" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/robot_debris/limb, +/obj/machinery/light/dim/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating, +/area/ship/maintenance/port) "on" = ( /obj/effect/turf_decal/industrial/warning{ dir = 6 @@ -1568,47 +1536,32 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plasteel/telecomms_floor, /area/ship/maintenance/starboard) -"oB" = ( -/obj/structure/table/wood, +"pf" = ( +/obj/machinery/power/port_gen/pacman/super, /obj/structure/railing{ dir = 4 }, -/obj/item/paicard{ - pixel_x = -7; - pixel_y = 4 +/obj/effect/decal/cleanable/oil{ + icon_state = "gib7" }, -/obj/item/paicard{ - pixel_x = 1; - pixel_y = 1 +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/light/dim/directional/north, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"po" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, -/turf/open/floor/carpet/red_gold, -/area/ship/crew/dorm) -"oG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/pod, -/area/ship/cargo) -"po" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/cable{ + icon_state = "1-2" }, /obj/structure/cable{ icon_state = "2-4" @@ -1616,14 +1569,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/maintenance/starboard) -"pp" = ( -/obj/structure/table/optable, -/obj/machinery/light, -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = -26 - }, -/turf/open/floor/pod/dark, -/area/ship/medical) "pA" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1703,9 +1648,6 @@ name = "Window Control"; pixel_y = -4 }, -/obj/structure/railing{ - dir = 5 - }, /obj/item/desk_flag{ pixel_x = -10 }, @@ -1722,23 +1664,18 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/ship/crew/dorm) -"qq" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - piping_layer = 2 - }, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/greenglow, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 +"qt" = ( +/obj/structure/toilet{ + pixel_y = 13 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/official/moth/smokey{ + pixel_x = 28 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/aft) "qu" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -1765,39 +1702,65 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/aft) -"qP" = ( -/obj/machinery/light{ - dir = 1 +"qD" = ( +/obj/machinery/light/directional/west{ + light_color = "#e8eaff" }, -/obj/item/gun/ballistic/automatic/pistol, -/obj/item/gun/ballistic/automatic/pistol{ - pixel_y = 3 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/techfloor{ + dir = 9 }, -/obj/effect/turf_decal/industrial/fire, -/obj/structure/guncase, -/obj/structure/railing{ +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/cargo) +"qI" = ( +/obj/effect/turf_decal/techfloor{ dir = 4 }, -/obj/item/gun/ballistic/automatic/smg/c20r/unrestricted, -/obj/item/gun/ballistic/shotgun/bulldog/unrestricted, -/turf/open/floor/pod/dark, -/area/ship/security/armory) -"rc" = ( -/obj/machinery/computer/security{ - dir = 8 +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/machinery/light/directional/east, +/obj/structure/closet/wall{ + dir = 8; + icon_door = "orange_wall"; + name = "Mining equipment"; + pixel_x = 29 }, -/obj/effect/turf_decal/techfloor{ +/obj/item/gps/mining, +/turf/open/floor/plasteel/tech, +/area/ship/cargo) +"qK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/industrial/fire/corner{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom/wideband{ - dir = 8; - pixel_x = 24 +/obj/machinery/airalarm/directional/south, +/obj/item/storage/box/firingpins{ + pixel_x = 21 }, -/turf/open/floor/plasteel/dark, +/obj/item/clothing/glasses/night{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/night{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/pod/dark, +/area/ship/security/armory) +"qT" = ( +/obj/machinery/syndicatebomb/self_destruct{ + anchored = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/circuit/red, /area/ship/bridge) "rf" = ( /obj/structure/railing/corner, @@ -1827,6 +1790,36 @@ }, /turf/open/floor/pod/dark, /area/ship/security/armory) +"ro" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) +"rs" = ( +/obj/effect/turf_decal/trimline/transparent/bar/filled/line{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) "rv" = ( /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/medical) @@ -1841,14 +1834,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/pod/dark, /area/ship/crew/dorm) -"rE" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "syndiewarship_windows"; - name = "Blast Shutters" - }, -/turf/open/floor/plating, -/area/ship/engineering) "rK" = ( /obj/machinery/button/door{ dir = 1; @@ -1863,38 +1848,16 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"rO" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/paper_bin{ - pixel_x = 4 - }, -/obj/item/pen/red{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/clothing/mask/gas/syndicate{ - pixel_x = -4 - }, -/obj/item/areaeditor/shuttle{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/item/codespeak_manual/unlimited{ - pixel_x = 6; - pixel_y = 5 +"rN" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/turf/open/floor/holofloor/wood, -/area/ship/bridge) +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/syndicateemblem/top/left, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "sb" = ( /obj/structure/closet/toolcloset, /obj/structure/railing{ @@ -1906,6 +1869,15 @@ /obj/effect/turf_decal/industrial/outline/yellow, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"si" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "warshipbridge"; + name = "Blast Shutters" + }, +/turf/open/floor/plating, +/area/ship/bridge) "sj" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -1952,6 +1924,17 @@ /obj/effect/turf_decal/syndicateemblem/bottom/left, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"sI" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 2; + name = "tactical chair" + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/techfloor{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/central) "sQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -1969,9 +1952,6 @@ /obj/effect/turf_decal/borderfloor{ dir = 4 }, -/obj/structure/railing{ - dir = 4 - }, /obj/effect/decal/cleanable/generic, /obj/structure/chair/comfy/shuttle{ dir = 8; @@ -1979,39 +1959,18 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"te" = ( -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 5 - }, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/wrapping, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/tech, -/area/ship/bridge) "tf" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/security/armory) -"th" = ( -/obj/structure/bookcase/random/fiction, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ +"ti" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ dir = 4; - pixel_x = -25 + id = "syndiewarship_windows"; + name = "Blast Shutters" }, -/turf/open/floor/holofloor/wood, -/area/ship/crew/dorm) +/turf/open/floor/plating, +/area/ship/crew/canteen) "tj" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 4 @@ -2031,25 +1990,6 @@ /obj/structure/catwalk/over, /turf/open/floor/plating, /area/ship/engineering) -"tp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) "tv" = ( /obj/structure/railing{ dir = 8 @@ -2107,20 +2047,33 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/hallway/central) -"tS" = ( -/obj/machinery/chem_dispenser/drinks/fullupgrade, -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) -"tY" = ( -/obj/effect/turf_decal/industrial/warning/corner, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 8 +"tT" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/power/smes{ + charge = 5e+006 }, -/obj/effect/decal/cleanable/dirt/dust, +/obj/item/toy/figure/engineer{ + pixel_x = 9; + pixel_y = 14 + }, +/obj/effect/turf_decal/industrial/radiation, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"tY" = ( +/obj/effect/turf_decal/industrial/warning/corner, +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable{ @@ -2128,18 +2081,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"ui" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/docking_port/mobile{ - dir = 4; - launch_status = 0; - port_direction = 8 - }, -/turf/open/floor/plasteel, -/area/ship/engineering) "up" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/siding/wood{ @@ -2163,10 +2104,30 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/crew/canteen) -"uE" = ( -/obj/machinery/door/airlock/hatch, +"uB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"uD" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 2; + name = "tactical chair" + }, +/obj/machinery/light_switch{ + pixel_x = -17; + pixel_y = 26 + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/mineral/plastitanium, -/area/ship/hallway/aft) +/area/ship/hallway/central) "uF" = ( /obj/machinery/holopad/emergency/command, /obj/structure/cable{ @@ -2184,6 +2145,14 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"uQ" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/transparent/bar/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) "uR" = ( /obj/structure/rack, /obj/item/grenade/chem_grenade/smart_metal_foam{ @@ -2222,6 +2191,22 @@ /obj/machinery/vending/medical, /turf/open/floor/mineral/plastitanium, /area/ship/medical) +"uZ" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 26 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/pod/dark, +/area/ship/crew/dorm) "vg" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -2236,6 +2221,13 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/engineering) +"vm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/techfloor, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/maintenance/starboard) "vq" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 1 @@ -2254,6 +2246,23 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"vw" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "vx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium, @@ -2302,24 +2311,24 @@ /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/plating, /area/ship/engineering) -"vI" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 2; - name = "tactical chair" - }, -/obj/item/radio/intercom{ - pixel_x = 4; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 26 +"vQ" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/machinery/button/door{ + dir = 8; + id = "syndiewarship_armorybay"; + name = "Weapon Hold"; + pixel_x = 28 }, /obj/effect/turf_decal/techfloor{ - dir = 1 + dir = 4 }, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/hardsuit/syndi/scarlet, /turf/open/floor/mineral/plastitanium, -/area/ship/hallway/central) +/area/ship/security/armory) "vT" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/industrial/warning{ @@ -2337,48 +2346,35 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"wk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"wv" = ( -/obj/machinery/door/airlock/hatch{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +"wo" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "syndiewarship_windows"; + name = "Blast Shutters" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/plating, +/area/ship/medical) +"ws" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) -"wI" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/ship/engineering) +"wO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/light/small/directional/east, +/obj/item/toy/plush/beeplushie{ + pixel_x = 3; + pixel_y = 8 }, -/obj/machinery/computer/monitor, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) +/turf/open/floor/holofloor/wood, +/area/ship/bridge) "wP" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -2471,58 +2467,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"yb" = ( -/obj/structure/table/reinforced{ - color = "#c1b6a5" - }, -/obj/machinery/cell_charger, -/obj/structure/railing{ - dir = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"yy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/reagent_containers/hypospray/medipen{ - pixel_y = 6 - }, -/obj/item/reagent_containers/hypospray/medipen, -/obj/item/reagent_containers/hypospray/medipen{ - pixel_y = -6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal, -/obj/item/reagent_containers/glass/bottle/formaldehyde{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/hypospray/medipen/pumpup{ - pixel_x = -1; - pixel_y = -12 - }, -/obj/item/reagent_containers/hypospray/medipen/pumpup{ - pixel_x = 3; - pixel_y = -10 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/medical) "yJ" = ( /obj/structure/frame/machine, /obj/structure/grille/broken, @@ -2530,46 +2474,6 @@ /obj/item/toy/plush/spider, /turf/open/floor/plasteel/tech, /area/ship/maintenance/port) -"yM" = ( -/obj/machinery/computer/cargo/express{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -25 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/pod, -/area/ship/cargo) -"yO" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/effect/turf_decal/steeldecal/steel_decals3, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) -"yR" = ( -/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/vending/boozeomat/syndicate_access{ - pixel_x = 32 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) "yV" = ( /obj/structure/chair/stool/bar{ dir = 1 @@ -2617,6 +2521,21 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"zk" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/tank/air{ + piping_layer = 2 + }, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering) "zu" = ( /obj/machinery/button/door{ id = "Syndie_warship_lockdown"; @@ -2640,39 +2559,32 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"zA" = ( -/obj/machinery/door/poddoor{ - id = "syndie_warship_cargo"; - name = "Cargo Hatch" +"zF" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "warshipbridge"; + name = "Blast Shutters" }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - dir = 1; - id = "komodo_cargo"; - locked = 1 +/turf/open/floor/plating, +/area/ship/bridge) +"zK" = ( +/obj/structure/closet/crate{ + name = "food crate" }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/item/storage/box/donkpockets{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) -"zC" = ( /obj/effect/turf_decal/arrows{ dir = 8 }, -/obj/structure/closet/crate/engineering, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/vending_refill/custom, -/obj/item/vending_refill/custom, -/obj/item/stack/sheet/mineral/plastitanium{ - amount = 30; - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, +/obj/machinery/light/directional/east, +/obj/structure/railing, /turf/open/floor/mineral/plastitanium, /area/ship/hallway/aft) "zR" = ( @@ -2690,19 +2602,15 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/hallway/central) -"zW" = ( -/obj/machinery/computer/secure_data/syndie{ - dir = 8 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" +"zV" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "syndiewarship_windows"; + name = "Blast Shutters" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/turf/open/floor/plating, +/area/ship/engineering) "Ai" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "engine fuel pump" @@ -2721,6 +2629,21 @@ "Aj" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew/canteen) +"Al" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + id = "warshipbridge"; + name = "Blast Shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/ship/bridge) +"Ap" = ( +/obj/effect/turf_decal/techfloor, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/maintenance/port) "As" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -2756,23 +2679,24 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Aw" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "syndiewarship_windows"; - name = "Blast Shutters" - }, -/turf/open/floor/plating, -/area/ship/crew/canteen) "Az" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/circuit/green/off, /area/ship/maintenance/port) -"AS" = ( -/obj/effect/turf_decal/borderfloor{ +"AR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/railing{ +/turf/open/floor/plasteel, +/area/ship/engineering) +"AS" = ( +/obj/effect/turf_decal/borderfloor{ dir = 8 }, /obj/item/gun/ballistic/automatic/pistol/m1911{ @@ -2812,6 +2736,19 @@ /obj/structure/sign/syndicate, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/port) +"Bf" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/transparent/bar/filled/line, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/vomit/old{ + pixel_x = 9; + pixel_y = -1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) "Bg" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{ dir = 1 @@ -2857,26 +2794,49 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Bp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Canteen" +"BP" = ( +/obj/structure/sign/syndicate, +/turf/closed/wall/mineral/plastitanium, +/area/ship/maintenance/starboard) +"BV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/structure/railing/corner{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-2" }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/crew/canteen) -"BP" = ( -/obj/structure/sign/syndicate, -/turf/closed/wall/mineral/plastitanium, -/area/ship/maintenance/starboard) +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"BW" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 2; + name = "tactical chair" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/directional/north{ + pixel_x = 4; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = 26 + }, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/central) "Ca" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -2902,10 +2862,17 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/security/armory) -"Cz" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/aft) +"Cr" = ( +/obj/machinery/light/directional/east, +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/suit/space/syndicate/black/engie, +/obj/item/clothing/head/helmet/space/syndicate/black/engie, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ship/engineering) "CA" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -2958,51 +2925,88 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"CP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) +"CT" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/wideband/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"CY" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/docking_port/mobile{ + dir = 4; + launch_status = 0; + port_direction = 8 + }, +/turf/open/floor/plasteel, +/area/ship/engineering) +"CZ" = ( +/obj/machinery/computer/bsa_control, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/circuit/green/off, +/area/ship/maintenance/starboard) "Dd" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) -"Dh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/techfloor, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/maintenance/starboard) -"Dq" = ( -/obj/machinery/computer/crew/syndie{ +"Dl" = ( +/obj/machinery/computer/med_data/syndie{ dir = 4 }, /obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light_switch{ dir = 4; - pixel_x = -25 + pixel_x = -23; + pixel_y = 13 }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Ds" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +"Do" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Dormitory" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/aft) +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "DO" = ( /obj/item/clothing/shoes/jackboots, /obj/item/clothing/mask/gas/syndicate, @@ -3037,6 +3041,47 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/security/armory) +"Ed" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/reinforced{ + color = "#c1b6a5" + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/clipboard{ + pixel_x = 5 + }, +/obj/item/folder/red{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) +"Eh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Canteen" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/crew/canteen) "Ek" = ( /obj/structure/closet/secure_closet{ anchored = 1; @@ -3111,20 +3156,26 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"EK" = ( -/obj/structure/toilet{ - pixel_y = 13 +"EM" = ( +/obj/structure/table/reinforced, +/obj/item/camera_bug{ + pixel_x = -4; + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ +/obj/item/megaphone{ + pixel_x = -2; + pixel_y = -6 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/techfloor{ dir = 8 }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/poster/official/moth/smokey{ - pixel_x = 28 +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/aft) +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "ES" = ( /obj/effect/turf_decal/industrial/warning{ dir = 8 @@ -3161,28 +3212,13 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) -"Fd" = ( -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/wall{ - dir = 8; - icon_door = "orange_wall"; - name = "Mining equipment"; - pixel_x = 29 +"Fc" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/item/gps/mining, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Fg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/syndicateemblem/middle/middle, @@ -3191,29 +3227,9 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/landmark/observer_start, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Fi" = ( -/obj/machinery/power/port_gen/pacman/super, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil{ - icon_state = "gib7" - }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light/dim{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "Fo" = ( /obj/item/stack/ore/salvage/scrapmetal/ten, /obj/effect/decal/cleanable/dirt, @@ -3241,41 +3257,6 @@ }, /turf/open/floor/plasteel/telecomms_floor, /area/ship/cargo) -"Fy" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/fire{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/item/t_scanner{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/switchblade{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/trash/syndi_cakes, -/obj/item/trash/can, -/obj/item/suppressor{ - pixel_y = 11 - }, -/obj/item/gun/ballistic/automatic/pistol{ - pixel_x = 4; - pixel_y = -14 - }, -/turf/open/floor/pod/dark, -/area/ship/security/armory) "FL" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -3284,18 +3265,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/holofloor/wood, /area/ship/bridge) -"FM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "FT" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -3314,29 +3283,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"Gg" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/item/toy/figure/engineer{ - pixel_x = 9; - pixel_y = 14 - }, -/obj/effect/turf_decal/industrial/radiation, -/obj/structure/railing{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "Gp" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 @@ -3354,38 +3300,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Gs" = ( -/obj/machinery/door/poddoor{ - id = "syndie_warship_cargo"; - name = "Cargo Hatch" - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/cargo) -"Gw" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_y = 6 - }, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/item/storage/firstaid/brute{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/pod/dark, -/area/ship/medical) "Gy" = ( /obj/item/stack/ore/salvage/scrapplasma/five, /obj/effect/decal/cleanable/ash/large, @@ -3395,18 +3309,6 @@ }, /turf/open/floor/plating, /area/ship/maintenance/port) -"Gz" = ( -/obj/machinery/shower{ - pixel_y = 14 - }, -/obj/structure/curtain, -/obj/item/soap/syndie, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ship/hallway/aft) "GS" = ( /obj/machinery/porta_turret/centcom_shuttle/ballistic{ dir = 6; @@ -3415,28 +3317,17 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) -"Hb" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets/donkpocketteriyaki{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets/donkpocketteriyaki, -/obj/effect/turf_decal/trimline/transparent/bar/filled/line{ - dir = 5 +"GT" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/industrial/warning{ + dir = 9 }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 +/obj/structure/railing{ + dir = 9 }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) +/obj/machinery/firealarm/directional/north, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "Hc" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/maintenance/starboard) @@ -3454,20 +3345,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/maintenance/port) -"Hl" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 2; - name = "tactical chair" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 25 - }, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/hallway/central) "Ho" = ( /obj/structure/railing{ dir = 1 @@ -3480,6 +3357,20 @@ }, /turf/open/floor/plasteel/tech, /area/ship/cargo) +"Hp" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/robot_debris, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/borderfloorblack, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/ship/maintenance/starboard) "Hr" = ( /obj/machinery/porta_turret/centcom_shuttle/ballistic{ dir = 5; @@ -3516,6 +3407,69 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/engineering) +"HJ" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/wrapping, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/bridge) +"HM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine{ + pixel_x = 4; + pixel_y = -18 + }, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/machinery/light/directional/east, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"HN" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_y = 6 + }, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/item/storage/firstaid/brute{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/pod/dark, +/area/ship/medical) "HV" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/techfloor, @@ -3637,19 +3591,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/rust, /area/ship/maintenance/starboard) -"Ip" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 2; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor{ - dir = 9 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/hallway/central) "Iv" = ( /obj/item/clothing/under/syndicate/combat, /obj/item/clothing/mask/gas/syndicate, @@ -3664,31 +3605,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/hallway/central) -"IB" = ( -/obj/item/reagent_containers/food/snacks/canned/beans{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/canned/beans{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/closet/crate{ - name = "food crate" - }, -/obj/effect/turf_decal/arrows{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/hallway/aft) "IE" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -3705,28 +3621,31 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"IZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/robot_debris/limb, -/obj/machinery/light/dim{ - dir = 4 +"IL" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/paper_bin{ + pixel_x = 6 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/ship/maintenance/port) -"Jf" = ( -/obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/techfloor{ - dir = 8 + dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 +/obj/item/clipboard{ + pixel_x = -5 }, -/turf/open/floor/mineral/plastitanium, -/area/ship/engineering) +/obj/item/taperecorder{ + pixel_x = -3 + }, +/obj/item/clothing/glasses/hud/security/night{ + pixel_x = -4; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "Jo" = ( /obj/machinery/power/port_gen/pacman/super, /obj/effect/decal/cleanable/cobweb, @@ -3741,6 +3660,17 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) +"Js" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/computer/monitor, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "Jw" = ( /obj/item/clothing/shoes/jackboots, /obj/item/clothing/neck/scarf/red, @@ -3772,6 +3702,17 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/crew/canteen) +"JB" = ( +/obj/machinery/computer/crew/syndie{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) "JC" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -3779,15 +3720,38 @@ /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/aft) +"JE" = ( +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/hardsuit/syndi/scarlet, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"JH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/west, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/aft) +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "JK" = ( /obj/machinery/door/window/southleft, /obj/effect/decal/cleanable/dirt, @@ -3832,21 +3796,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/hallway/aft) -"Kf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/railing{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) "Ko" = ( /obj/item/retractor, /obj/item/cautery, @@ -3861,28 +3810,15 @@ }, /turf/open/floor/pod/dark, /area/ship/medical) -"Kw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -25 - }, +"KE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/item/radio/intercom/directional/west, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-4" }, /turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) -"KB" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/techfloor{ - dir = 9 - }, -/turf/open/floor/plasteel/telecomms_floor, -/area/ship/cargo) +/area/ship/bridge) "KL" = ( /obj/machinery/vending/custom, /obj/structure/railing{ @@ -3908,25 +3844,6 @@ }, /turf/open/floor/plasteel/tech, /area/ship/maintenance/port) -"Lh" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 2; - name = "tactical chair" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom{ - pixel_x = 4; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 26 - }, -/obj/effect/turf_decal/techfloor{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/hallway/central) "Ln" = ( /obj/structure/chair/comfy/shuttle{ dir = 2; @@ -3940,23 +3857,11 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/hallway/central) -"Lo" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) "Lt" = ( /obj/machinery/door/airlock/hatch{ name = "Captain's Office"; - req_access_txt = "20" + req_access_txt = "20"; + dir = 4 }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, @@ -3968,20 +3873,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/ship/engineering) -"LH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/syndicate/black/med, -/obj/item/clothing/head/helmet/space/syndicate/black/med, -/turf/open/floor/mineral/plastitanium, -/area/ship/medical) "LP" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -4019,28 +3910,37 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"LY" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/effect/turf_decal/techfloor{ - dir = 4 +"Mb" = ( +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 1; + id = "komodo_cargo"; + locked = 1 }, -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "0-4" + }, +/obj/machinery/door/poddoor{ + dir = 4; + id = "syndie_warship_cargo"; + name = "Cargo Hatch" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"Mm" = ( +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/machinery/vending/boozeomat/syndicate_access{ + pixel_x = 32 }, -/obj/machinery/suit_storage_unit/inherit, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/hardsuit/syndi/scarlet, /turf/open/floor/mineral/plastitanium, -/area/ship/security/armory) +/area/ship/crew/canteen) "Mo" = ( /obj/effect/turf_decal/borderfloor{ dir = 4 }, -/obj/structure/railing{ - dir = 4 - }, /obj/effect/decal/cleanable/generic{ pixel_x = -12; pixel_y = 7 @@ -4105,6 +4005,14 @@ }, /turf/open/floor/plasteel/dark, /area/ship/maintenance/port) +"MJ" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/dorm) "MR" = ( /obj/effect/turf_decal/industrial/warning/cee{ dir = 8 @@ -4114,6 +4022,17 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"MU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/suit_storage_unit/inherit, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/syndicate/black/med, +/obj/item/clothing/head/helmet/space/syndicate/black/med, +/turf/open/floor/mineral/plastitanium, +/area/ship/medical) "MX" = ( /obj/structure/sign/poster/contraband/random{ pixel_y = 32 @@ -4125,15 +4044,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/pod, /area/ship/cargo) -"MZ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Ng" = ( /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 10 @@ -4173,6 +4083,23 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) +"NB" = ( +/obj/structure/table/wood, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/paicard{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/paicard{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/dorm) "NE" = ( /obj/effect/decal/cleanable/cobweb, /obj/item/cigbutt{ @@ -4220,17 +4147,6 @@ /obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, /area/ship/maintenance/port) -"Og" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/tank_dispenser/oxygen, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) "Ok" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -4242,13 +4158,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Oo" = ( -/obj/machinery/syndicatebomb/self_destruct{ - anchored = 1 - }, -/obj/machinery/light, -/turf/open/floor/circuit/red, -/area/ship/bridge) "Or" = ( /obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -4260,16 +4169,6 @@ }, /turf/open/floor/plasteel/stairs, /area/ship/bridge) -"OF" = ( -/obj/structure/railing, -/obj/effect/decal/cleanable/robot_debris, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -5; - pixel_y = -22 - }, -/turf/open/floor/pod/dark, -/area/ship/crew/dorm) "OG" = ( /obj/effect/turf_decal/industrial/warning{ dir = 10 @@ -4279,32 +4178,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"OO" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/industrial/fire/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 - }, -/obj/item/storage/box/firingpins{ - pixel_x = 21 - }, -/obj/item/clothing/glasses/night{ - pixel_y = 6 - }, -/obj/item/clothing/glasses/night{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/pod/dark, -/area/ship/security/armory) "OQ" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/maintenance/starboard) @@ -4338,47 +4211,6 @@ /obj/item/clothing/under/suit/waiter/syndicate, /turf/open/floor/mineral/plastitanium, /area/ship/crew/canteen) -"OW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/dim{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/tech, -/area/ship/maintenance/starboard) -"OZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = 6 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/item/clipboard{ - pixel_x = -5 - }, -/obj/item/taperecorder{ - pixel_x = -3 - }, -/obj/item/clothing/glasses/hud/security/night{ - pixel_x = -4; - pixel_y = -6 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Po" = ( /obj/machinery/power/smes/shuttle/precharged{ dir = 1 @@ -4386,21 +4218,47 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/structure/window/plasma/reinforced/spawner, -/obj/machinery/door/poddoor{ - id = "warship_engines"; - name = "Thruster Blast Door" +/obj/structure/window/plasma/reinforced/spawner, +/obj/machinery/door/poddoor{ + id = "warship_engines"; + name = "Thruster Blast Door" + }, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Engine Access" + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Pu" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/cardboard/metal, +/obj/item/reagent_containers/food/drinks/waterbottle/large, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 8; + pixel_y = -2 }, -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Engine Access" +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 4; + pixel_y = -2 }, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/aft) "Pv" = ( /obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 6 }, +/obj/structure/railing{ + dir = 6 + }, /turf/open/floor/plasteel/tech, /area/ship/bridge) "Pz" = ( @@ -4426,42 +4284,33 @@ }, /obj/effect/decal/cleanable/blood/old, /obj/structure/bed/dogbed, +/obj/structure/railing{ + dir = 9; + layer = 2.9 + }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"PE" = ( +/obj/machinery/suit_storage_unit/inherit, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/techfloor{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/hardsuit/syndi/scarlet, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) "PK" = ( /obj/effect/turf_decal/industrial/warning{ dir = 6 }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"PN" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 26 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/pod/dark, -/area/ship/crew/dorm) -"PU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) "Qv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -4518,20 +4367,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/pod/dark, /area/ship/crew/dorm) -"Re" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/toy/plush/beeplushie{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/holofloor/wood, -/area/ship/bridge) "Rk" = ( /obj/structure/sign/syndicate, /turf/closed/wall/mineral/plastitanium, @@ -4580,6 +4415,28 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"RG" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 2; + name = "tactical chair" + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/techfloor/corner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/central) +"RN" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 2; + name = "tactical chair" + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/techfloor/corner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/central) "RT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -4651,14 +4508,43 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/mineral/plastitanium/red, /area/ship/security/armory) +"Sq" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/aft) "Sr" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/steeldecal/steel_decals1, /obj/structure/cable{ icon_state = "4-8" }, +/obj/structure/railing/corner{ + dir = 8 + }, /turf/open/floor/plasteel/tech, /area/ship/bridge) +"SC" = ( +/obj/machinery/computer/cargo/express{ + dir = 4 + }, +/obj/effect/turf_decal/techfloor{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/pod, +/area/ship/cargo) +"SG" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ship/hallway/aft) "SN" = ( /obj/effect/turf_decal/steeldecal/steel_decals9, /obj/effect/decal/cleanable/dirt/dust, @@ -4685,6 +4571,20 @@ /obj/structure/window/reinforced, /turf/open/floor/grass, /area/ship/crew/canteen) +"SX" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "SZ" = ( /obj/machinery/door/poddoor{ id = "Artillery1shutter" @@ -4708,15 +4608,6 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ship/bridge) -"Tv" = ( -/obj/structure/salvageable/computer, -/obj/effect/decal/cleanable/wrapping, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/circuit/green/off, -/area/ship/maintenance/port) "TB" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -4740,12 +4631,6 @@ /obj/effect/turf_decal/borderfloor{ dir = 8 }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, /obj/structure/chair/comfy/shuttle{ dir = 4; name = "Operations" @@ -4804,19 +4689,23 @@ }, /turf/open/floor/plasteel/tech, /area/ship/engineering) -"Ut" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 2; - name = "tactical chair" +"Uo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Infirmary" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/effect/turf_decal/techfloor/corner{ +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, /turf/open/floor/mineral/plastitanium, -/area/ship/hallway/central) +/area/ship/medical) "Uw" = ( /obj/effect/decal/cleanable/food/flour, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ @@ -4905,6 +4794,14 @@ "Vc" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/medical) +"Vj" = ( +/obj/structure/table/optable, +/obj/machinery/light/directional/south, +/obj/machinery/defibrillator_mount/loaded{ + pixel_y = -26 + }, +/turf/open/floor/pod/dark, +/area/ship/medical) "Vk" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/cargo) @@ -4934,27 +4831,23 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/cargo) -"VM" = ( -/obj/machinery/computer/med_data/syndie{ - dir = 4 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -22 +"VA" = ( +/obj/structure/chair/office{ + dir = 8; + name = "tactical swivel chair" }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/south, /obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 13 + dir = 1; + pixel_x = -8; + pixel_y = -24 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering) "VO" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/industrial/warning{ @@ -4975,6 +4868,15 @@ "VR" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/aft) +"Wc" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/south, +/obj/structure/bedsheetbin, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/dorm) "Wj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/industrial/warning{ @@ -5037,60 +4939,37 @@ }, /turf/open/floor/pod, /area/ship/cargo) -"Wt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Infirmary" +"Ww" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/mineral/plastitanium, -/area/ship/medical) -"Wz" = ( -/obj/effect/turf_decal/trimline/transparent/bar/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "WA" = ( /obj/structure/table/reinforced, /obj/item/toy/figure/syndie{ pixel_x = -4; pixel_y = 5 }, -/obj/structure/railing{ - dir = 9 - }, /obj/machinery/photocopier/faxmachine/longrange{ pixel_x = 4; pixel_y = 0 }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"WI" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 2; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor/corner{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/ship/hallway/central) "WJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/mineral/plastitanium, @@ -5110,25 +4989,9 @@ /obj/effect/turf_decal/techfloor{ dir = 4 }, +/obj/structure/railing, /turf/open/floor/plasteel/tech, /area/ship/bridge) -"WQ" = ( -/obj/machinery/suit_storage_unit/inherit, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/turf_decal/techfloor{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/hardsuit/syndi/scarlet, -/turf/open/floor/mineral/plastitanium, -/area/ship/security/armory) "WT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -5137,17 +5000,9 @@ }, /obj/structure/cable{ icon_state = "1-4" - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/hallway/central) -"WV" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "syndiewarship_windows"; - name = "Blast Shutters" - }, -/turf/open/floor/plating, -/area/ship/medical) + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "WW" = ( /obj/effect/turf_decal/corner_techfloor_grid{ dir = 5 @@ -5166,22 +5021,37 @@ }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Xd" = ( -/obj/structure/chair/comfy{ +"WY" = ( +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/pod, +/area/ship/cargo) +"WZ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/trimline/transparent/bar/filled/line, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -25 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/effect/decal/cleanable/vomit/old{ - pixel_x = 9; - pixel_y = -1 +/obj/machinery/firealarm/directional/west, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/canteen) +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/aft) +"Xg" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/robot_debris, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/pod/dark, +/area/ship/crew/dorm) "Xk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -5211,15 +5081,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, /area/ship/maintenance/starboard) -"Xx" = ( -/obj/machinery/camera/autoname{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/pod, -/area/ship/cargo) "Xz" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -5235,6 +5096,34 @@ /obj/item/trash/popcorn, /turf/open/floor/holofloor/wood, /area/ship/crew/dorm) +"XC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 6 + }, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = -6 + }, +/obj/item/reagent_containers/glass/bottle/charcoal, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/hypospray/medipen/pumpup{ + pixel_x = -1; + pixel_y = -12 + }, +/obj/item/reagent_containers/hypospray/medipen/pumpup{ + pixel_x = 3; + pixel_y = -10 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/medical) "XF" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -5271,53 +5160,20 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) -"Yi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/spline/fancy/opaque/black{ - dir = 8 - }, -/obj/machinery/autolathe/hacked, -/obj/item/stack/sheet/plasteel/twenty{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 6 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"Yl" = ( +/obj/machinery/door/poddoor{ + dir = 4; + id = "syndie_warship_cargo"; + name = "Cargo Hatch" }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) -"Yq" = ( +/turf/open/floor/plasteel/tech/grid, +/area/ship/cargo) +"Yv" = ( +/obj/machinery/chem_dispenser/drinks/fullupgrade, /obj/structure/table/reinforced, -/obj/item/camera_bug{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/megaphone{ - pixel_x = -2; - pixel_y = -6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/techfloor{ - dir = 8 - }, -/obj/machinery/recharger{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/canteen) "Yw" = ( /obj/effect/turf_decal/industrial/warning, /obj/effect/turf_decal/industrial/warning{ @@ -5335,6 +5191,18 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"YE" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 2; + name = "tactical chair" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/hallway/central) "YJ" = ( /obj/structure/closet/wall/white/med{ name = "medical locker"; @@ -5392,6 +5260,16 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"Zb" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/hallway/central) "Zf" = ( /obj/structure/sink{ dir = 4; @@ -5424,57 +5302,16 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"Zx" = ( -/obj/structure/railing, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/robot_debris, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/borderfloorblack, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/ship/maintenance/starboard) "ZI" = ( /obj/effect/turf_decal/borderfloor{ dir = 4 }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"ZN" = ( -/obj/structure/chair/office{ - dir = 8; - name = "tactical swivel chair" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -8; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/tech, -/area/ship/engineering) "ZO" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 @@ -5482,11 +5319,67 @@ /obj/effect/turf_decal/syndicateemblem/middle/right, /turf/open/floor/mineral/plastitanium/red, /area/ship/hallway/central) +"ZS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/firealarm/directional/east, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/pod, +/area/ship/cargo) (1,1,1) = {" CM CM CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +cu +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +CM +"} +(2,1,1) = {" +CM +CM +CM UN gN gN @@ -5511,23 +5404,23 @@ UN Vk Vk Rk -bA -Gs -zA +jr +Yl +Mb Te CM CM CM CM hY -rE -rE +zV +zV hY Te CM CM "} -(2,1,1) = {" +(3,1,1) = {" CM CM CM @@ -5535,8 +5428,8 @@ lL Gy Fo bs -eJ -Tv +ip +dR MI jb gN @@ -5546,13 +5439,13 @@ Aj Aj Aj Aj -Aw -Aw +ti +ti UN -bF -bF +lu +lu Ep -yM +SC Wq Sd Ho @@ -5562,7 +5455,7 @@ Ep Ep Ep Ep -ui +CY sq Jo Ai @@ -5571,7 +5464,7 @@ CO CM CM "} -(3,1,1) = {" +(4,1,1) = {" CM CM CM @@ -5582,18 +5475,18 @@ jX kH Az nR -iU +Ap nU -bF +lu kD SU -tS -Wz +Yv +rs Rz uA kC Dd -Ip +sI MR Ep MX @@ -5603,26 +5496,26 @@ lj WM HV Ux -KB +qD In Ep Ii sq -Fi +pf jF Nz Nz Bg CM "} -(4,1,1) = {" +(5,1,1) = {" CM CM CM AY yJ FV -IZ +oi Le Nh Hd @@ -5631,16 +5524,16 @@ RT vA kD kD -yR +Mm Fr LP yV -kR +uQ Dd -Lh +BW CA cR -oG +ZS Ws TJ pA @@ -5650,7 +5543,7 @@ Ux gh xg Ep -kJ +AR sq Ng CK @@ -5659,10 +5552,10 @@ sq sq CM "} -(5,1,1) = {" +(6,1,1) = {" CM CM -ME +jE tC tC tC @@ -5672,30 +5565,30 @@ tC tC tC tC -dI +em uL kD kD OT JK Jx -Xd +Bf Dd tO Yw Ep Ep -Xx -ij +WY +gH KL -Fd -kQ +qI +gj Ep Fx fk Ep Za -FM +uB hc UH XF @@ -5703,17 +5596,17 @@ vq cV CM "} -(6,1,1) = {" +(7,1,1) = {" CM +zF ME -ME -Yq -VM -Dq +EM +Dl +JB bS tC jh -PU +KE Vq Or xZ @@ -5721,9 +5614,9 @@ Bj QI kD kD -Hb +no xj -hn +gw Dd Ig Sm @@ -5735,7 +5628,7 @@ Ep Ep Ep Ep -bG +HM Vu Ep pF @@ -5747,9 +5640,9 @@ Po cV CM "} -(7,1,1) = {" -ME -ME +(8,1,1) = {" +jE +si nQ pS ZI @@ -5757,27 +5650,27 @@ sT Mo tC WW -hX +dm tC tC tC -wk +fc km -Lo +Zb kD kD -Bp +Eh kD Dd -WI +RN Ye OG Iv VR -EK +qt Zf VR -Gz +iR Ep Ep Ep @@ -5786,12 +5679,12 @@ sq sq sq vC -jG +CP sq hY Te "} -(8,1,1) = {" +(9,1,1) = {" ME bk Sr @@ -5800,18 +5693,18 @@ hp PB tC tC -nh -fy +BV +eE tC eW tC tC -dL +Ww jw fE ft LU -fU +rN cz sy If @@ -5819,23 +5712,23 @@ Av zR VR VR -Cz +SG VR -uE +Sq VR NE sq fg -Jf +ws sq -Og +la tj yY eD vq cV "} -(9,1,1) = {" +(10,1,1) = {" ME hj uF @@ -5845,10 +5738,10 @@ pE xl As gK -MZ +Fc tw kI -Oo +qT tC zu dG @@ -5864,7 +5757,7 @@ co pN ew ES -Ds +WZ ew qu JC @@ -5879,13 +5772,13 @@ ao vq cV "} -(10,1,1) = {" +(11,1,1) = {" ME ax gy Pv ny -te +HJ tC tC Lt @@ -5894,11 +5787,11 @@ tC El tC tC -ke +ro eY hg Ca -hI +SX dF ZO sj @@ -5906,25 +5799,25 @@ eX aX tv VR -mn -zC -IB -bb +Pu +jp +av +zK VO Kd sq -ko +Cr Lx sq -yb +aU TN Zu iO Po cV "} -(11,1,1) = {" -ME +(12,1,1) = {" +Al ME WP WA @@ -5937,15 +5830,15 @@ Ek tC tC tC -Kf +GT gq PK Vc -Wt +Uo Vc Vc Dd -Ut +RG Gp lT Jw @@ -5954,29 +5847,29 @@ gE gE gE CL -wv +Do CL CL CL CL sq -Yi +mA uR lV sq hY GS "} -(12,1,1) = {" +(13,1,1) = {" CM +zF ME -ME -OZ -rc -zW +IL +CT +dT tC -rO -Re +mj +wO iq tC lk @@ -5986,7 +5879,7 @@ on Vc Vc YJ -Gw +HN aL Dd Ln @@ -5994,14 +5887,14 @@ vT aR gE gE -Fy -OO +cZ +qK gE -th +bn TB qc -Kw -yO +JH +ho CL HB SN @@ -6011,10 +5904,10 @@ vq cV CM "} -(13,1,1) = {" +(14,1,1) = {" CM CM -ME +Al tC tC tC @@ -6024,20 +5917,20 @@ tC tC tC Dd -tp +vw Bk Vc Vc hK Ic YP -pp +Vj Dd -vI +uD Au gE gE -qP +je TE rj gE @@ -6047,7 +5940,7 @@ CL iL DQ CL -qq +zk rf yX ab @@ -6055,14 +5948,14 @@ Po cV CM "} -(14,1,1) = {" +(15,1,1) = {" CM CM CM BP Xr Io -OW +bR Ib bg po @@ -6073,11 +5966,11 @@ Vc Vc iX vx -LH +MU Ko dp Dd -Hl +YE UO WJ Sn @@ -6089,17 +5982,17 @@ is gJ CL QU -OF +Xg CL -Gg +tT wP Ew -kt +Ed sq sq CM "} -(15,1,1) = {" +(16,1,1) = {" CM CM CM @@ -6110,18 +6003,18 @@ dw Qy kr Ih -Dh +vm Hc -bF +lu Vc uW -yy +XC Ro rv -WV -WV +wo +wo Dd -id +jz RB gp dO @@ -6130,20 +6023,20 @@ DZ sn gE NI -aH +MJ CL -PN +uZ rA CL xC TY -ZN +VA sq sq CM CM "} -(16,1,1) = {" +(17,1,1) = {" CM CM CM @@ -6151,8 +6044,8 @@ MG YY bI gt -Zx -aw +Hp +CZ es oo OQ @@ -6165,29 +6058,29 @@ TR CM CM Hr -bF -bF +lu +lu gE gE -gZ -WQ -LY +vQ +PE +JE gE -oB -fB +NB +Wc CL CL CL CL sq -wI +Js JV mv CO CM CM "} -(17,1,1) = {" +(18,1,1) = {" CM CM CM @@ -6217,8 +6110,8 @@ tf tf tf gE -bZ -bZ +io +io GS CM CM diff --git a/_maps/shuttles/shiptest/syndicate_luxembourg.dmm b/_maps/shuttles/shiptest/syndicate_luxembourg.dmm index d8d5b92dc6da..214eea2fc157 100644 --- a/_maps/shuttles/shiptest/syndicate_luxembourg.dmm +++ b/_maps/shuttles/shiptest/syndicate_luxembourg.dmm @@ -1,36 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"af" = ( -/obj/structure/closet/crate/science, -/obj/item/circuitboard/machine/chem_dispenser/drinks, -/obj/item/circuitboard/machine/chem_dispenser/drinks, -/obj/item/circuitboard/machine/chem_dispenser/drinks, -/obj/item/circuitboard/machine/chem_dispenser/drinks/beer, -/obj/item/circuitboard/machine/chem_dispenser/drinks/beer, -/obj/item/circuitboard/machine/chem_dispenser/drinks/beer, -/obj/item/circuitboard/machine/deep_fryer, -/obj/item/circuitboard/machine/deep_fryer, -/obj/item/circuitboard/machine/deep_fryer, -/obj/item/circuitboard/machine/mechfab, -/obj/item/circuitboard/machine/mechfab, -/obj/item/circuitboard/machine/mechfab, -/obj/item/circuitboard/machine/mechfab, -/obj/item/circuitboard/machine/mechfab, -/obj/item/circuitboard/machine/ore_redemption, -/obj/item/circuitboard/machine/ore_redemption, -/obj/item/circuitboard/machine/ore_redemption, -/obj/item/circuitboard/machine/microwave, -/obj/item/circuitboard/machine/microwave, -/obj/item/circuitboard/machine/microwave, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = 24 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/storage) "aB" = ( /turf/open/floor/plasteel/dark, /area/ship/hallway/central) @@ -44,14 +12,55 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/crew/dorm) -"aS" = ( -/obj/effect/turf_decal/siding/red, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable{ - icon_state = "0-4" +"aK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/obj/machinery/navbeacon/wayfinding{ + codes_txt = "patrol;next_patrol=lux_engine"; + location = "lux_crew" + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) +"bi" = ( +/obj/machinery/button/door{ + id = "syndiefuck"; + name = "Loading Shutters Control"; + pixel_x = -25; + pixel_y = -7; + dir = 4 + }, +/obj/machinery/button/door{ + id = "warehouse"; + name = "Warehouse Control"; + pixel_x = -25; + pixel_y = 5; + dir = 4 + }, +/obj/machinery/button/door{ + id = "cargodoors"; + name = "Cargo Bay Shutter Control"; + pixel_x = -35; + pixel_y = 5; + dir = 4 + }, +/obj/machinery/button/door{ + id = "externalshutters"; + name = "External Shutters Control"; + pixel_x = -35; + pixel_y = -7; + dir = 4 + }, +/obj/machinery/computer/cargo/express{ + dir = 4 }, /turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) +/area/ship/hallway/central) "bp" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 8 @@ -72,27 +81,16 @@ /obj/structure/catwalk/over/plated_catwalk/white, /turf/open/floor/plating, /area/ship/engineering) -"bw" = ( -/obj/structure/bed/pod, -/obj/item/bedsheet/blue, -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/curtain/bounty, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/carpet/red_gold, -/area/ship/crew/dorm) -"bG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 4 +"bB" = ( +/obj/structure/rack, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 9 }, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) +/obj/item/gps/mining, +/obj/item/paicard, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "bN" = ( /obj/structure/cable{ icon_state = "4-8" @@ -120,6 +118,16 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, /turf/open/floor/carpet/red_gold, /area/ship/crew/dorm) +"cq" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/storage) "cs" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 @@ -180,6 +188,14 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/hallway/central) +"dC" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "dH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 8 @@ -191,20 +207,6 @@ /obj/effect/turf_decal/corner/opaque/neutral/mono, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/central) -"dI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "cargodoors" - }, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "dL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, @@ -225,6 +227,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"eD" = ( +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "eF" = ( /obj/structure/sink{ dir = 8; @@ -248,20 +261,6 @@ }, /turf/open/floor/plasteel/patterned, /area/ship/crew/dorm) -"eH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndiefuck" - }, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - id = "luxembourg_cargo"; - locked = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) "eL" = ( /obj/structure/cable{ icon_state = "1-2" @@ -287,6 +286,12 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"fn" = ( +/obj/machinery/light/directional/east, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/canteen) "fo" = ( /obj/item/card/emag, /obj/item/tank/internals/emergency_oxygen/double, @@ -336,6 +341,21 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) +"ga" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "cargodoors" + }, +/obj/item/radio/intercom/directional/north{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "gf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ dir = 8 @@ -348,27 +368,17 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"gh" = ( -/obj/machinery/door/firedoor/border_only{ +"gj" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "cargodoors"; - pixel_x = 8; - pixel_y = -24 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Cargo Bay" - }, -/obj/machinery/door/poddoor/shutters{ - id = "cargodoors" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 6 }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "gC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, @@ -380,14 +390,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"gP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) "hd" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1 @@ -409,6 +411,18 @@ "hs" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/cargo) +"hu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/inherit/industrial, +/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/cargo) "hX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/corner/opaque/brown/border{ @@ -416,6 +430,14 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) +"if" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod/directional/south, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/crew/dorm) "in" = ( /obj/structure/cable{ icon_state = "1-4" @@ -426,6 +448,48 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/engineering) +"it" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 1; + id = "luxembourg_cargo"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "syndiefuck" + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) +"iF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/vending_refill/engineering, +/obj/item/vending_refill/engineering, +/obj/item/vending_refill/engivend, +/obj/item/vending_refill/engivend, +/obj/item/vending_refill/hydronutrients, +/obj/item/vending_refill/hydronutrients, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/medical, +/obj/item/vending_refill/medical, +/obj/item/vending_refill/cigarette, +/obj/item/vending_refill/cigarette, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/sovietsoda, +/obj/item/vending_refill/cola, +/obj/item/vending_refill/cola, +/turf/open/floor/plasteel/mono/dark, +/area/ship/storage) "iO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 10 @@ -440,41 +504,8 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/layer_manifold, -/obj/machinery/door/poddoor/shutters{ - id = "externalshutters" - }, /turf/open/floor/plating, /area/ship/engineering) -"iZ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/clothing{ - default_price = 0; - extra_price = 0 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) -"jj" = ( -/obj/effect/turf_decal/siding/red, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -6; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 6; - pixel_y = -24 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) "jr" = ( /turf/open/floor/carpet/red_gold, /area/ship/hallway/central) @@ -486,6 +517,13 @@ /obj/effect/turf_decal/corner/opaque/neutral/mono, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/central) +"jH" = ( +/obj/structure/table, +/obj/item/radio/intercom/wideband/table{ + dir = 4 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) "jK" = ( /obj/machinery/air_sensor/atmos/air_tank, /turf/open/floor/engine/air, @@ -538,6 +576,14 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/storage) +"kZ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "externalshutters" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) "lb" = ( /obj/structure/cable{ icon_state = "1-8" @@ -598,10 +644,17 @@ /obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /obj/structure/catwalk/over/plated_catwalk/white, /turf/open/floor/plating, /area/ship/engineering) +"mi" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "externalshutters" + }, +/turf/open/floor/plating, +/area/ship/crew/dorm) "mm" = ( /obj/item/toy/figure/cargotech, /obj/item/clothing/suit/hooded/wintercoat/cargo, @@ -621,69 +674,21 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/engineering) -"mx" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/corner/opaque/brown/border{ +"mE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/effect/turf_decal/kfp_small/left{ dir = 4 }, -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/suit/space/syndicate/green, -/obj/item/clothing/head/helmet/space/syndicate/green, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"mN" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/card/emag/limited, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/storage) -"mS" = ( -/obj/structure/closet/secure{ - icon_state = "eng_secure"; - name = "GEC Engineer's locker" - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/pipe_dispenser, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/suit/toggle/hazard, -/obj/item/clothing/head/beret/eng/hazard, -/obj/item/clothing/head/beret/eng, -/obj/item/holosign_creator/engineering, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/turf/open/floor/plating, +/area/ship/engineering) +"mK" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/atmos_control/tank/air_tank{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/clothing/under/syndicate/gec, -/obj/item/clothing/under/syndicate/gec, -/obj/item/stack/tape/industrial/pro, +/obj/machinery/airalarm/directional/west, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "na" = ( @@ -723,34 +728,26 @@ }, /turf/open/floor/plating, /area/ship/crew/canteen) -"pk" = ( -/obj/structure/cable{ - icon_state = "1-4" +"pd" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/crate/large{ + name = "Donk! Co. Powerloader In a Box" + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/rechargefloor, +/obj/mecha/working/ripley/cargo{ + name = "\improper Donk! Co. Cargo Loading Device" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/vending_refill/engineering, -/obj/item/vending_refill/engineering, -/obj/item/vending_refill/engivend, -/obj/item/vending_refill/engivend, -/obj/item/vending_refill/hydronutrients, -/obj/item/vending_refill/hydronutrients, -/obj/item/vending_refill/boozeomat, -/obj/item/vending_refill/boozeomat, -/obj/item/vending_refill/medical, -/obj/item/vending_refill/medical, -/obj/item/vending_refill/cigarette, -/obj/item/vending_refill/cigarette, -/obj/item/vending_refill/snack, -/obj/item/vending_refill/snack, -/obj/item/vending_refill/sovietsoda, -/obj/item/vending_refill/cola, -/obj/item/vending_refill/cola, /turf/open/floor/plasteel/mono/dark, /area/ship/storage) "pt" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/engineering) +"pJ" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "pL" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -775,6 +772,12 @@ /obj/effect/turf_decal/atmos/air, /turf/open/floor/engine/air, /area/ship/engineering) +"qf" = ( +/obj/structure/table, +/obj/machinery/door/firedoor, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/canteen) "qh" = ( /obj/machinery/airalarm/directional/west, /obj/item/stack/sheet/cardboard/fifty, @@ -801,16 +804,6 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/engineering) -"qr" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/patterned, -/area/ship/crew/dorm) "qO" = ( /obj/structure/cable{ icon_state = "2-4" @@ -861,17 +854,6 @@ /obj/item/soap/syndie, /turf/open/floor/plasteel/mono/dark, /area/ship/storage) -"qZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced, -/obj/machinery/computer/selling_pad_control{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/mono/dark, -/area/ship/hallway/central) "rh" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 8 @@ -932,34 +914,16 @@ /obj/structure/window/plasma/reinforced/spawner/east, /turf/open/floor/engine/air, /area/ship/engineering) -"sf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) "sh" = ( /obj/machinery/power/shuttle/engine/fueled/plasma{ dir = 1 }, -/obj/machinery/door/poddoor/shutters{ - id = "externalshutters" - }, /turf/open/floor/plating, /area/ship/engineering) "sk" = ( /obj/effect/turf_decal/atmos/plasma, /turf/open/floor/engine/plasma, /area/ship/engineering) -"ss" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/effect/turf_decal/corner/opaque/neutral/mono, -/turf/open/floor/plasteel/mono/dark, -/area/ship/hallway/central) "sF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -984,18 +948,19 @@ /turf/open/floor/plasteel/dark, /area/ship/crew/dorm) "sV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 1 +/mob/living/simple_animal/bot/mulebot{ + bot_name = "\proper Christine"; + desc = "A Multiple Utility Load Effector bot. This one seems oddly menacing..."; + id = "Christine"; + name = "\proper Christine" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/corner/opaque/brown/bordercee, +/obj/machinery/navbeacon/wayfinding{ + codes_txt = null; + location = "mulestation" }, -/obj/structure/catwalk/over/plated_catwalk/white, -/turf/open/floor/plating, -/area/ship/engineering) +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "tc" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1056,12 +1021,43 @@ /turf/open/floor/plasteel/dark, /area/ship/hallway/central) "tU" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "externalshutters" +/obj/machinery/camera{ + dir = 10 }, /turf/open/floor/plating, -/area/ship/hallway/central) +/area/template_noop) +"tV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "cargodoors"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Cargo Bay" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "cargodoors" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) +"ug" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "cargodoors" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "ul" = ( /obj/structure/cable/yellow{ icon_state = "0-8" @@ -1103,24 +1099,20 @@ /obj/structure/window/plasma/reinforced/spawner/west, /turf/open/floor/engine/plasma, /area/ship/engineering) -"uL" = ( -/obj/machinery/power/apc/auto_name/north, +"uX" = ( +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ +/obj/effect/turf_decal/corner/opaque/brown/border{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/stack/circuit_stack/full, -/obj/item/stack/circuit_stack/full, -/obj/item/stack/circuit_stack/full, -/obj/item/stack/circuit_stack/full, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/machinery/suit_storage_unit/inherit/industrial, +/obj/item/clothing/suit/space/syndicate/green, +/obj/item/clothing/head/helmet/space/syndicate/green, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "vb" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ @@ -1145,25 +1137,22 @@ "vp" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) +"vw" = ( +/obj/machinery/camera{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) "vz" = ( /obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 1 }, /obj/structure/window/reinforced/spawner, +/obj/machinery/door/poddoor/shutters{ + id = "externalshutters" + }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) -"vP" = ( -/obj/structure/rack, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 9 - }, -/obj/item/gps/mining, -/obj/item/paicard, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) "vT" = ( /obj/structure/closet/crate, /obj/item/grenade/c4, @@ -1185,6 +1174,12 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"wN" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/canteen) "wP" = ( /obj/structure/cable{ icon_state = "2-4" @@ -1204,29 +1199,6 @@ /obj/structure/window/plasma/reinforced/spawner/west, /turf/open/floor/engine/plasma, /area/ship/engineering) -"wY" = ( -/obj/machinery/light, -/obj/item/banner/cargo, -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 10 - }, -/obj/machinery/button/shieldwallgen{ - dir = 1; - id = "luxembourg_cargo"; - pixel_x = -10; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - dir = 1; - id = "syndiefuck"; - pixel_x = -20; - pixel_y = -26 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) "xa" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/corner/opaque/blue/half{ @@ -1249,22 +1221,33 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/central) -"xN" = ( -/obj/machinery/cryopod{ - dir = 4 +"xt" = ( +/obj/machinery/light/directional/east, +/obj/item/clothing/head/HoS/beret/syndicate, +/obj/item/radio/headset/syndicate/alt, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/item/clothing/under/rank/civilian/bartender, +/obj/structure/closet/secure_closet/bar{ + req_access = null; + req_one_access_txt = list(25,41) }, -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -26 +/turf/open/floor/plasteel/mono/dark, +/area/ship/engineering) +"xw" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/light/small{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/clothing{ + default_price = 0; + extra_price = 0 }, -/turf/open/floor/plasteel/tech/techmaint, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, /area/ship/crew/dorm) "yd" = ( /obj/structure/table, -/obj/machinery/chem_dispenser/drinks, +/obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) "yf" = ( @@ -1276,21 +1259,26 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"yh" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 5 + }, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/brown/bordercorner{ + dir = 1 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "ym" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"yv" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) "yQ" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -1329,20 +1317,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/central) -"zP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate/large, -/obj/item/mecha_parts/mecha_equipment/mining_scanner, -/mob/living/simple_animal/bot/secbot/grievous/toy, -/obj/effect/decal/cleanable/blood/old, -/obj/item/hand_labeler_refill, -/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, -/obj/item/mecha_parts/mecha_equipment/rcd, -/obj/item/mecha_parts/mecha_equipment/cable_layer, -/turf/open/floor/plasteel/mono/dark, -/area/ship/storage) "zW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 6 @@ -1369,19 +1343,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plating, /area/ship/engineering) -"AF" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/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/mask/breath, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) "AL" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -1389,29 +1350,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"Bb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/structure/window/plasma/reinforced, -/obj/machinery/door/window/eastright, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "cargodoors" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "Bt" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/crew/canteen) "Bw" = ( /turf/closed/wall/mineral/plastitanium, /area/ship/cargo) +"BM" = ( +/obj/structure/bed/pod, +/obj/item/bedsheet/blue, +/obj/structure/window/reinforced/tinted/frosted, +/obj/structure/curtain/bounty, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/carpet/red_gold, +/area/ship/crew/dorm) "BX" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/cryopod{ @@ -1426,20 +1381,6 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"Ca" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/clothing/head/HoS/beret/syndicate, -/obj/item/radio/headset/syndicate/alt, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/item/clothing/under/rank/civilian/bartender, -/obj/structure/closet/secure_closet/bar{ - req_access = null; - req_one_access_txt = list(25,41) - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) "CC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/mono/dark, @@ -1465,19 +1406,11 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/engineering) -"CO" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "cargodoors" - }, -/turf/open/floor/plasteel/dark, -/area/ship/cargo) "CT" = ( /obj/machinery/computer/atmos_control/tank/toxin_tank{ dir = 8 }, +/obj/machinery/light/directional/south, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "CV" = ( @@ -1492,6 +1425,21 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) +"CW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/stack/circuit_stack/full, +/obj/item/stack/circuit_stack/full, +/obj/item/stack/circuit_stack/full, +/obj/item/stack/circuit_stack/full, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Da" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1527,18 +1475,37 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) -"DK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/autodrobe/all_access{ - default_price = 0; - extra_price = 0 - }, -/obj/machinery/firealarm{ +"DA" = ( +/obj/effect/turf_decal/siding/red, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch{ dir = 1; + pixel_x = 6; pixel_y = -24 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) +/obj/machinery/airalarm/directional/east, +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/mono/dark, +/area/ship/crew/canteen) +"DG" = ( +/obj/machinery/light/directional/south, +/obj/structure/rack, +/obj/effect/turf_decal/corner/opaque/neutral/mono, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"DJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/effect/turf_decal/number/five{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "DW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch{ @@ -1572,48 +1539,6 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/engineering) -"Es" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"Ev" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndiefuck" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/shieldwallgen/atmos{ - anchored = 1; - dir = 1; - id = "luxembourg_cargo"; - locked = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"EA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/navbeacon/wayfinding{ - codes_txt = "patrol;next_patrol=lux_engine"; - location = "lux_crew" - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) "EG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -1692,18 +1617,15 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/engineering) -"Gv" = ( -/obj/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/item/radio/intercom{ +"GD" = ( +/obj/docking_port/stationary{ + width = 30; + height = 15; dir = 8; - pixel_x = 22; - pixel_y = 31 + dwidth = 15 }, -/turf/open/floor/carpet/red_gold, -/area/ship/hallway/central) +/turf/template_noop, +/area/template_noop) "GG" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1718,23 +1640,30 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/engineering) -"Hc" = ( -/obj/structure/table, -/obj/machinery/door/firedoor, -/obj/item/radio/intercom{ - pixel_y = 22 +"Hx" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ship/crew/dorm) +"HG" = ( +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + id = "luxembourg_cargo"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "syndiefuck" }, /turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) -"Hk" = ( -/obj/machinery/light, +/area/ship/cargo) +"HK" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/opaque/neutral/mono, +/obj/machinery/light/directional/east, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/central) -"Hx" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ship/crew/dorm) "HZ" = ( /obj/structure/table, /obj/item/reagent_containers/glass/rag, @@ -1792,11 +1721,11 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"IB" = ( -/obj/structure/table, -/obj/item/radio/intercom/wideband, -/obj/item/areaeditor/shuttle, -/turf/open/floor/plasteel/mono/dark, +"IT" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/dark, /area/ship/hallway/central) "Je" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, @@ -1830,6 +1759,42 @@ /obj/effect/turf_decal/siding/blue/corner, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"JO" = ( +/obj/structure/closet/crate/science, +/obj/item/circuitboard/machine/chem_dispenser/drinks, +/obj/item/circuitboard/machine/chem_dispenser/drinks, +/obj/item/circuitboard/machine/chem_dispenser/drinks, +/obj/item/circuitboard/machine/chem_dispenser/drinks/beer, +/obj/item/circuitboard/machine/chem_dispenser/drinks/beer, +/obj/item/circuitboard/machine/chem_dispenser/drinks/beer, +/obj/item/circuitboard/machine/deep_fryer, +/obj/item/circuitboard/machine/deep_fryer, +/obj/item/circuitboard/machine/deep_fryer, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/machine/ore_redemption, +/obj/item/circuitboard/machine/ore_redemption, +/obj/item/circuitboard/machine/ore_redemption, +/obj/item/circuitboard/machine/microwave, +/obj/item/circuitboard/machine/microwave, +/obj/item/circuitboard/machine/microwave, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/storage) +"JT" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "syndiefuck" + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/cargo) "JU" = ( /obj/effect/turf_decal/corner/opaque/brown/border{ dir = 6 @@ -1880,30 +1845,15 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/storage) -"Kr" = ( -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/machinery/space_heater, -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"Kz" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 +"KH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/autodrobe/all_access{ + default_price = 0; + extra_price = 0 }, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) "KX" = ( /obj/structure/closet/crate, /obj/item/construction/rcd/combat, @@ -1973,6 +1923,25 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) +"LY" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/card/emag/limited, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/mono/dark, +/area/ship/storage) "Mg" = ( /obj/structure/cable{ icon_state = "2-8" @@ -1986,6 +1955,24 @@ /obj/effect/turf_decal/corner/opaque/neutral/mono, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) +"Mi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/structure/window/plasma/reinforced, +/obj/machinery/door/window/eastright, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "cargodoors" + }, +/turf/open/floor/plasteel/dark, +/area/ship/cargo) "Mj" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump, /obj/machinery/advanced_airlock_controller{ @@ -1993,6 +1980,19 @@ }, /turf/open/floor/plating, /area/ship/engineering) +"Mx" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 10; + pixel_y = -21 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/opaque/blue/filled/warning, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) "Mz" = ( /obj/structure/tank_dispenser/oxygen, /obj/effect/decal/cleanable/dirt, @@ -2001,14 +2001,14 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/cargo) -"ME" = ( -/obj/machinery/light{ - dir = 8 +"MT" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "externalshutters" }, -/obj/machinery/vending/toyliberationstation, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/plasteel/mono/dark, -/area/ship/hallway/central) +/turf/open/floor/plating, +/area/ship/cargo) "MU" = ( /obj/machinery/door/window/brigdoor{ name = "Bridge"; @@ -2041,23 +2041,22 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"NO" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 +"NQ" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 6; - pixel_y = -24 +/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ + pixel_x = 6 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -6; - pixel_y = -24 +/obj/item/lighter/greyscale{ + pixel_x = -3; + pixel_y = 4 }, -/obj/effect/turf_decal/trimline/opaque/blue/filled/warning, -/turf/open/floor/plasteel/dark, -/area/ship/hallway/central) +/turf/open/floor/carpet/red_gold, +/area/ship/crew/dorm) "On" = ( /obj/item/storage/toolbox/syndicate, /obj/item/storage/toolbox/syndicate, @@ -2073,6 +2072,14 @@ /obj/structure/closet/crate, /turf/open/floor/plasteel/mono/dark, /area/ship/storage) +"Op" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "externalshutters" + }, +/turf/open/floor/plating, +/area/ship/crew/canteen) "Oq" = ( /obj/structure/table, /obj/item/toy/cards/deck/syndicate, @@ -2085,13 +2092,6 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"OF" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "externalshutters" - }, -/turf/open/floor/plating, -/area/ship/crew/dorm) "OR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ dir = 6 @@ -2130,16 +2130,38 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/dorm) -"Pm" = ( -/obj/machinery/power/apc/auto_name/east, +"Ph" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/effect/turf_decal/number/zero{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) +"Ps" = ( +/obj/machinery/light/directional/south, +/obj/item/banner/cargo, +/obj/effect/turf_decal/corner/opaque/brown/border{ + dir = 10 + }, +/obj/machinery/button/shieldwallgen{ + dir = 1; + id = "luxembourg_cargo"; + pixel_x = -10; + pixel_y = -25 + }, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "4-8" }, -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 +/obj/machinery/button/door{ + dir = 1; + id = "syndiefuck"; + pixel_x = -20; + pixel_y = -26 }, /turf/open/floor/plasteel/mono/dark, -/area/ship/storage) +/area/ship/cargo) "PO" = ( /obj/structure/sign/poster/contraband/syndicate_recruitment{ pixel_x = 4; @@ -2159,32 +2181,12 @@ /obj/effect/turf_decal/corner/opaque/neutral/mono, /turf/open/floor/plasteel/mono/dark, /area/ship/hallway/central) -"Qe" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/microwave, +"QG" = ( +/obj/machinery/light/directional/west, +/obj/machinery/vending/toyliberationstation, +/obj/structure/window/plasma/reinforced, /turf/open/floor/plasteel/mono/dark, -/area/ship/crew/canteen) -"Qn" = ( -/obj/machinery/light, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/item/storage/toolbox/syndicate, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"Qz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, -/obj/structure/catwalk/over/plated_catwalk/dark, -/turf/open/floor/plating, -/area/ship/engineering) +/area/ship/hallway/central) "QQ" = ( /obj/structure/window/plasma/reinforced, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -2192,6 +2194,15 @@ }, /turf/open/floor/carpet/red_gold, /area/ship/hallway/central) +"QT" = ( +/obj/machinery/light/directional/east, +/obj/structure/window/plasma/reinforced, +/obj/machinery/computer/selling_pad_control{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) "QU" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2205,6 +2216,12 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/storage) +"Rk" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/opaque/neutral/mono, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) "Ro" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2224,12 +2241,6 @@ "Rp" = ( /turf/open/floor/carpet/red_gold, /area/ship/crew/dorm) -"Rt" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndiefuck" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) "RH" = ( /obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /obj/machinery/door/poddoor/shutters{ @@ -2270,21 +2281,26 @@ }, /turf/open/floor/plasteel/mono/dark, /area/ship/engineering) -"Tt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/inherit/industrial, -/obj/item/clothing/suit/space/syndicate, -/obj/item/clothing/head/helmet/space/syndicate, -/obj/item/clothing/mask/breath, +"Tj" = ( +/obj/effect/turf_decal/siding/red, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) +/area/ship/crew/canteen) +"Ty" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/crate/large, +/obj/item/mecha_parts/mecha_equipment/mining_scanner, +/mob/living/simple_animal/bot/secbot/grievous/toy, +/obj/effect/decal/cleanable/blood/old, +/obj/item/hand_labeler_refill, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, +/obj/item/mecha_parts/mecha_equipment/rcd, +/obj/item/mecha_parts/mecha_equipment/cable_layer, +/turf/open/floor/plasteel/mono/dark, +/area/ship/storage) "TB" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 @@ -2296,6 +2312,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) +"TJ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "externalshutters" + }, +/turf/open/floor/plating, +/area/ship/storage) "TP" = ( /obj/structure/rack, /obj/effect/turf_decal/corner/opaque/neutral/mono, @@ -2332,13 +2356,6 @@ }, /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/storage) -"Uv" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "externalshutters" - }, -/turf/open/floor/plating, -/area/ship/storage) "Uw" = ( /obj/structure/toilet{ dir = 4 @@ -2354,24 +2371,6 @@ /obj/effect/turf_decal/corner/opaque/neutral/mono, /turf/open/floor/plasteel/mono/dark, /area/ship/crew/canteen) -"UK" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ - pixel_x = 6 - }, -/obj/item/lighter/greyscale{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/carpet/red_gold, -/area/ship/crew/dorm) "UO" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -2427,6 +2426,16 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/engineering) +"VG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/effect/turf_decal/number/two{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering) "VR" = ( /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/engineering) @@ -2475,6 +2484,16 @@ "WE" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/hallway/central) +"WQ" = ( +/obj/machinery/firealarm/directional/east, +/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/mask/breath, +/turf/open/floor/plasteel/mono/dark, +/area/ship/engineering) "WU" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 @@ -2506,6 +2525,14 @@ }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) +"Xw" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/patterned, +/area/ship/crew/dorm) "XM" = ( /obj/structure/cable{ icon_state = "1-4" @@ -2526,38 +2553,25 @@ }, /obj/structure/window/reinforced/spawner, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/shutters{ + id = "externalshutters" + }, /turf/open/floor/plasteel/tech/techmaint, /area/ship/engineering) "Yd" = ( -/obj/machinery/button/door{ - id = "syndiefuck"; - name = "Loading Shutters Control"; - pixel_x = -25; - pixel_y = -5 - }, -/obj/machinery/button/door{ - id = "warehouse"; - name = "Warehouse Control"; - pixel_x = -25; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "cargodoors"; - name = "Cargo Bay Shutter Control"; - pixel_x = -38; - pixel_y = 5 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/button/door{ - id = "externalshutters"; - name = "External Shutters Control"; - pixel_x = -38; - pixel_y = -5 +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 1 }, -/obj/machinery/computer/cargo/express{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk/over/plated_catwalk/white, +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/hallway/central) +/turf/open/floor/plating, +/area/ship/engineering) "Yq" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ dir = 8 @@ -2573,13 +2587,16 @@ }, /turf/open/floor/plasteel/dark, /area/ship/hallway/central) -"YH" = ( -/obj/machinery/light, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 4 +"YE" = ( +/obj/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) +/obj/item/radio/intercom/directional/east{ + pixel_y = 37 + }, +/turf/open/floor/carpet/red_gold, +/area/ship/hallway/central) "YI" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ship/crew/canteen) @@ -2643,26 +2660,32 @@ /turf/open/floor/plasteel/patterned/cargo_one, /area/ship/storage) "YZ" = ( -/obj/effect/turf_decal/corner/opaque/brown/border{ - dir = 5 +/obj/structure/closet/secure{ + icon_state = "eng_secure"; + name = "GEC Engineer's locker" }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 5 +/obj/item/clothing/gloves/color/yellow, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/suit/toggle/hazard, +/obj/item/clothing/head/beret/eng/hazard, +/obj/item/clothing/head/beret/eng, +/obj/item/holosign_creator/engineering, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 4 }, -/mob/living/simple_animal/bot/mulebot{ - bot_name = "\proper Christine"; - desc = "A Multiple Utility Load Effector bot. This one seems oddly menacing..."; - id = "Christine"; - name = "\proper Christine" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ + dir = 8 }, -/obj/machinery/navbeacon/wayfinding{ - codes_txt = null; - location = "mulestation" +/obj/item/clothing/under/syndicate/gec, +/obj/item/clothing/under/syndicate/gec, +/obj/item/stack/tape/industrial/pro, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) +/turf/open/floor/plasteel/tech/techmaint, +/area/ship/engineering) "Zm" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2676,20 +2699,6 @@ /obj/structure/catwalk/over/plated_catwalk, /turf/open/floor/plating, /area/ship/engineering) -"Zz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate/large{ - name = "Donk! Co. Powerloader In a Box" - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/rechargefloor, -/obj/mecha/working/ripley/cargo{ - name = "\improper Donk! Co. Cargo Loading Device" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/storage) (1,1,1) = {" Nr @@ -2698,12 +2707,41 @@ Nr Nr Nr Nr +Nr +Nr +Nr +GD +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +Nr +"} +(2,1,1) = {" +Nr +Nr +Nr +Nr +Nr +Nr hs -eH -Rt -Rt -Rt -Ev +HG +JT +JT +JT +it Ka Nr Nr @@ -2720,22 +2758,22 @@ Nr Nr Nr "} -(2,1,1) = {" +(3,1,1) = {" Nr Nr Nr Nr Bw -RH +MT hs OY hX hX fB -wY +Ps Ka -Uv -Uv +TJ +TJ Uk Nr Nr @@ -2749,7 +2787,7 @@ Nr Nr Nr "} -(3,1,1) = {" +(4,1,1) = {" Nr Nr Nr @@ -2766,7 +2804,7 @@ vb VS qV Wt -Uv +TJ Uk Nr Uk @@ -2778,12 +2816,12 @@ Nr Nr Nr "} -(4,1,1) = {" +(5,1,1) = {" Nr Nr -Bw hs -vP +hs +bB TY CC OR @@ -2794,10 +2832,10 @@ fy lQ QU kI -pk +iF vT Ka -Uv +TJ Ka VR qR @@ -2807,21 +2845,21 @@ Nr Nr Nr "} -(5,1,1) = {" +(6,1,1) = {" Nr Nr RH -RH -YZ +sV +yh BZ Vn Ee EG -Tt -mx +hu +uX JU Ka -af +JO iO YX YO @@ -2836,22 +2874,22 @@ pt Nr Nr "} -(6,1,1) = {" +(7,1,1) = {" Nr Nr hs hs hs -dI -CO -Bb -gh +ga +ug +Mi +tV hs hs hs Ka Ka -zP +Ty Ko Uu lg @@ -2860,12 +2898,12 @@ rU Ro uo in -YH +mK vp pt Nr "} -(7,1,1) = {" +(8,1,1) = {" Nr Nr Nr @@ -2875,31 +2913,31 @@ La aB NJ Ud -ss TP +Rk PW cI Ka Ka KX -mN -Pm -Zz +LY +cq +pd ke vp -Kr +dC GG Uo XS iR hd "} -(8,1,1) = {" -Nr -tU +(9,1,1) = {" tU WE -ME +kZ +WE +QG NH wd WB @@ -2908,7 +2946,7 @@ Iv Iv Iv yf -Hk +DG Ka Ka Ka @@ -2916,18 +2954,18 @@ Ka Ka Ka vp -Kz +gj Zm Vs vz sh Nr "} -(9,1,1) = {" -tU -tU +(10,1,1) = {" +WE +WE Ej -Yd +bi QQ xa dp @@ -2937,7 +2975,7 @@ TP TP jv pL -NO +Mx vp fo SS @@ -2947,12 +2985,12 @@ tx pR XM ql -Es +pJ vp vp vp "} -(10,1,1) = {" +(11,1,1) = {" Ij Ga dA @@ -2968,10 +3006,10 @@ Yq Jq Vb dL -sf -Qz -bG -Qz +VG +Ph +DJ +mE yQ Xf CM @@ -2981,12 +3019,12 @@ AE Mj qP "} -(11,1,1) = {" -tU -tU -IB +(12,1,1) = {" +WE +WE +jH fv -Gv +YE xa dp dH @@ -2997,25 +3035,25 @@ kp Jr PO vp -AF -Ca +WQ +xt cB Ip ul pR lb Gr -Qn +eD na UO Er "} -(12,1,1) = {" -Nr -tU -tU +(13,1,1) = {" +vw WE -qZ +kZ +WE +QT bp Oz vf @@ -3024,7 +3062,7 @@ ym cs eX CI -Hk +DG EO EO EO @@ -3032,14 +3070,14 @@ EO EO EO vp -uL -sV +CW +lW lt vz sh Nr "} -(13,1,1) = {" +(14,1,1) = {" Nr Nr Nr @@ -3050,31 +3088,31 @@ YL qO xc tH -yv -TP +IT +HK zc EO EO BX -xN +if EO Kg Uw vp -mS -lW +YZ +Yd lt vz sh UE "} -(14,1,1) = {" +(15,1,1) = {" Nr Nr YI YI YI -Hc +qf HZ tc Dw @@ -3097,26 +3135,26 @@ vp pt Nr "} -(15,1,1) = {" +(16,1,1) = {" Nr Nr ow -ow -gP +YI +yd UI UI Fq UI -aS +Tj YI Ji -UK -bw +NQ +BM zW bN -EA +aK Pb -qr +Xw eF vp uK @@ -3126,12 +3164,12 @@ pt Nr Nr "} -(16,1,1) = {" +(17,1,1) = {" Nr Nr Bt YI -yd +wN UI rG Mg @@ -3142,10 +3180,10 @@ cb aD Id rm -iZ -DK +xw +KH EO -OF +mi EO VR EW @@ -3155,7 +3193,7 @@ Nr Nr Nr "} -(17,1,1) = {" +(18,1,1) = {" Nr Nr Nr @@ -3172,7 +3210,7 @@ DW Oq Lu EO -OF +mi Hx Nr Hx @@ -3184,22 +3222,22 @@ Nr Nr Nr "} -(18,1,1) = {" +(19,1,1) = {" Nr Nr Nr Nr Bt -ow +Op YI -Qe +fn LV -jj +DA YI tF EO -OF -OF +mi +mi Hx Nr Nr @@ -3213,7 +3251,7 @@ Nr Nr Nr "} -(19,1,1) = {" +(20,1,1) = {" Nr Nr Nr @@ -3222,7 +3260,7 @@ Nr Nr YI YI -ow +Op YI YI EO diff --git a/_maps/shuttles/shiptest/syndicate_twinkleshine.dmm b/_maps/shuttles/shiptest/syndicate_twinkleshine.dmm index 39489e796a53..449a2cf657bb 100644 --- a/_maps/shuttles/shiptest/syndicate_twinkleshine.dmm +++ b/_maps/shuttles/shiptest/syndicate_twinkleshine.dmm @@ -1,7754 +1,10370 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/obj/effect/turf_decal/corner/opaque/white{ +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"ah" = ( -/turf/open/floor/plating, -/area/ship/external) -"ai" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "starfurybc_massright" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/closet/emcloset/wall{ + dir = 8; + pixel_x = 28 }, -/turf/open/floor/plating, -/area/ship/bridge) -"aj" = ( -/obj/structure/table/reinforced, -/turf/open/floor/carpet/red, -/area/ship/security) -"at" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/light, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"av" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/engineering/electrical) -"aB" = ( +/obj/item/clothing/suit/space/syndicate/black/engie, +/obj/item/clothing/head/helmet/space/syndicate/black/engie, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"aG" = ( -/obj/structure/reflector/box{ - anchored = 1; +/area/ship/engineering/atmospherics) +"ab" = ( +/obj/structure/sign/syndicate, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/atmospherics) +"ad" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair, +/obj/effect/turf_decal/techfloor{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"aM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 10 - }, +/obj/effect/turf_decal/corner/opaque/syndiered/half, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"aR" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/ship/bridge) +"ae" = ( +/obj/machinery/power/shuttle/engine/fueled/plasma{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"aU" = ( -/obj/machinery/shieldgen, +/turf/open/floor/plating/airless, +/area/ship/external/dark) +"ag" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/hallway/central) +"aj" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/visible, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"aX" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +"ak" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/three_quarters{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/light/directional/north, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"al" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"ba" = ( -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"aA" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/syndicake{ + pixel_y = 10; + pixel_x = 3 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -10; + pixel_y = 5 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"bj" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/ship/engineering) -"bl" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -3; + pixel_y = 3 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"aD" = ( +/obj/structure/sign/poster/contraband/m90{ + icon_state = "poster-m90"; + pixel_x = -32 }, -/turf/open/floor/engine, -/area/ship/engineering) -"bt" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "starfurybc_massleft" +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 8 }, -/obj/machinery/door/window{ - name = "Cannon Access"; - req_access_txt = "150" +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 9 }, -/turf/open/floor/plating, -/area/ship/bridge) -"bv" = ( -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"bz" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"aE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/airlock/external{ + req_access = list(150) }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"bD" = ( -/obj/machinery/power/emitter/welded{ - dir = 8 +"aG" = ( +/obj/machinery/light/directional/east, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"aU" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal{ + rad_insulation = 0.3 }, -/obj/effect/turf_decal/industrial/warning{ +/area/ship/engineering/engine) +"aX" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/effect/turf_decal/syndicateemblem/middle/middle{ dir = 8 }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"bH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/ship/security) -"bJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/catwalk/over, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/holopad/emergency/command, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"bd" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/three_quarters{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"bT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/syndicateemblem/bottom/right{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"bf" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 8 }, -/obj/structure/catwalk/over, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/engine, +/area/ship/engineering/engine) +"bg" = ( +/obj/structure/railing{ + dir = 1 }, +/obj/structure/railing, /turf/open/floor/plating, -/area/ship/crew/dorm) -"bV" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/area/ship/external/dark) +"bo" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 7; + pixel_x = 9 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/obj/item/reagent_containers/food/snacks/donut/berry{ + pixel_x = -4; + color = "#730622"; + name = "suspicious red donut" }, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"cb" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - id_tag = "starfurybcsupermatter_bolt"; - name = "Supermatter Chamber"; - req_access_txt = "150" +"bq" = ( +/obj/machinery/door/window/eastleft{ + name = "Engine Access" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ dir = 1 }, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"cf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/machinery/door/poddoor/shutters{ + id = "twinkle_engines"; dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk/over, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"cl" = ( -/obj/machinery/atmospherics/pipe/manifold4w/purple/visible, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"co" = ( -/obj/machinery/firealarm{ - pixel_y = -28 +"bH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"cp" = ( -/obj/machinery/door/window{ - name = "Cannon Access"; - req_access_txt = "150" +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plating, +/area/ship/hallway/central) +"bI" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 }, -/obj/machinery/mass_driver{ - dir = 1; - id = "starfurybc_massright" +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 1 }, -/turf/open/floor/plating, +/obj/effect/turf_decal/techfloor, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"cq" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 +"bM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"cs" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "150" +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"bN" = ( +/obj/structure/table, +/obj/item/storage/firstaid/medical, +/obj/item/storage/pill_bottle/psicodine{ + pixel_x = -7; + pixel_y = 7 }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering) -"cv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"bO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"bP" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon, +/obj/item/pen/edagger, +/obj/item/storage/secure/safe/intel{ + pixel_x = -24 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"cz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input, -/turf/open/floor/engine/n2, -/area/ship/engineering/atmospherics) -"cC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/techfloor/orange{ +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm/dormtwo) +"bQ" = ( +/obj/effect/turf_decal/corner/opaque/orange{ dir = 10 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"cD" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "150" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"cX" = ( +/obj/structure/closet/secure_closet/miner{ + req_access = list(150,10); + populate = 0 + }, +/obj/item/clothing/under/syndicate/gorlex, +/obj/item/clothing/suit/space/syndicate/black/orange, +/obj/item/clothing/head/helmet/space/syndicate/black/orange, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/flashlight/seclite, +/obj/item/storage/belt/mining/alt, +/obj/item/stack/sheet/mineral/sandbags, +/obj/item/storage/bag/ore, +/obj/item/shovel, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"bR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 + dir = 9 }, +/obj/structure/catwalk/over/plated_catwalk/dark, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"dw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light{ - dir = 4 + dir = 9 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/turf/open/floor/plating, +/area/ship/hallway/central) +"bU" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"dx" = ( -/obj/machinery/power/terminal{ - dir = 8 +/turf/open/floor/engine, +/area/ship/engineering/engine) +"bV" = ( +/obj/effect/turf_decal/corner/opaque/orange/three_quarters{ + dir = 1 }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26; - pixel_y = -27 +/obj/item/clothing/under/syndicate/gec, +/obj/item/clothing/shoes/magboots/syndie, +/obj/item/clothing/head/helmet/space/syndicate/black/engie, +/obj/item/clothing/suit/space/syndicate/black/engie, +/obj/structure/closet/secure_closet/engineering_personal{ + req_access = list(150,10) }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/item/pipe_dispenser, +/obj/structure/sign/poster/contraband/gec{ + pixel_y = -32 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"dy" = ( -/obj/machinery/holopad/emergency/command, -/obj/structure/chair/office{ +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"bY" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ dir = 1 }, +/obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"dz" = ( +/area/ship/engineering/atmospherics) +"cd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 + dir = 8 }, -/obj/machinery/light, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"dE" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/ship/bridge) -"dH" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/syndicake, -/obj/item/reagent_containers/food/snacks/syndicake{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/camera/autoname{ + dir = 10 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"dJ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ +/turf/open/floor/plating, +/area/ship/hallway/central) +"cj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/light, -/turf/open/floor/engine, -/area/ship/engineering) -"dK" = ( -/obj/structure/chair{ +/obj/effect/turf_decal/corner/opaque/syndiered{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/bridge) -"dO" = ( -/obj/machinery/atmospherics/pipe/manifold/purple/visible{ +/obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 4 }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"ck" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/corner/opaque/orange/full, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"cp" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance/four, +/obj/item/trash/syndi_cakes, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"dQ" = ( -/obj/structure/chair/comfy/black{ - dir = 1 +"cq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) -"dS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_x = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"cr" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/trimline/opaque/orange/filled/corner, +/obj/effect/turf_decal/trimline/opaque/orange/line{ dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"cw" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"dX" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 + dir = 8 }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "4-8" }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"cC" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, /turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"dY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/area/ship/crew/office) +"cD" = ( +/obj/machinery/holopad/emergency/bar, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"cJ" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"dZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"cW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable{ +/obj/machinery/light/directional/south, +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"cX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 5 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"ea" = ( -/obj/effect/turf_decal/atmos/plasma, -/turf/open/floor/engine/plasma, -/area/ship/engineering/atmospherics) -"eb" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"ej" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"da" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 10 }, -/area/ship/crew/dorm) -"em" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"db" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_one_access_txt = "150"; + req_access = list(150,10); dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/ship/engineering) -"eo" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering) +"dg" = ( /obj/effect/turf_decal/industrial/warning{ - dir = 4 + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/pod/dark, /area/ship/cargo) -"eq" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/crew/dorm) -"et" = ( -/obj/structure/chair{ - dir = 4 +"dk" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"ev" = ( -/obj/structure/cable{ - icon_state = "4-8" +"dl" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, +/obj/structure/catwalk/over/plated_catwalk/dark, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + dir = 6 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"ex" = ( -/obj/effect/turf_decal/arrows/red{ - color = "red"; - dir = 1; - icon_state = "arrows" +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"eC" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, -/area/ship/security) -"eH" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay"; - req_one_access_txt = "150" +/area/ship/hallway/central) +"dm" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + icon_state = "hos"; + name = "Captain's Locker"; + req_access = list(151) + }, +/obj/item/areaeditor/shuttle, +/obj/item/clothing/under/syndicate/aclf, +/obj/item/clothing/suit/armor/vest/capcarapace/syndicate, +/obj/item/clothing/head/HoS/syndicate, +/obj/item/codespeak_manual/unlimited, +/obj/item/storage/belt/sabre, +/obj/item/shield/riot/tele, +/obj/item/storage/lockbox/medal, +/obj/item/ammo_box/a357, +/obj/item/ammo_box/a357, +/obj/machinery/light/directional/north, +/obj/item/card/id/syndicate_command/captain_id, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm/dormtwo) +"do" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"eJ" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/power/rad_collector/anchored, /obj/structure/cable/yellow{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"dp" = ( +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 }, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"eS" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/canteen) +"dq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright, +/obj/machinery/door/window/eastright{ + req_access = list(3,150) }, +/obj/machinery/recharger, /obj/machinery/door/firedoor/border_only{ dir = 8 }, /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"dC" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 1 }, -/turf/open/floor/plating, -/area/ship/engineering) -"eU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/rack, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay{ + pixel_y = 5; + pixel_x = 5 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/item/mecha_parts/mecha_equipment/thrusters/ion{ + pixel_x = -10 }, -/obj/structure/cable{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"dE" = ( +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, +/obj/machinery/holopad/emergency/medical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/turf/open/floor/plasteel/dark, /area/ship/medical) -"eX" = ( -/obj/structure/cable{ - icon_state = "4-8" +"dH" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"dL" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 }, -/obj/effect/turf_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"dO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plating, +/area/ship/hallway/central) +"dP" = ( +/obj/structure/sign/poster/contraband/tools{ + pixel_y = 32 }, -/turf/open/floor/engine, -/area/ship/engineering) -"fa" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"dQ" = ( +/obj/machinery/air_sensor/atmos/oxygen_tank, +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"dU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"dV" = ( +/obj/machinery/stasis, +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = 32 }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_one_access_txt = "150" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 1 }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"ea" = ( +/obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) -"fb" = ( /obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"eg" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/button/door{ + dir = 4; + pixel_x = -25; + name = "Engine Shutters"; + id = "twinkle_engines" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"en" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ dir = 9 }, -/obj/machinery/light{ - dir = 8 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/turf/open/floor/engine, -/area/ship/engineering) -"fe" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/spawner{ +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/item/card/emag, -/obj/item/melee/transforming/energy/sword/saber/blue, -/obj/machinery/door/window{ - dir = 4; - req_access_txt = "150" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"fm" = ( -/obj/machinery/door/airlock/engineering, -/obj/structure/cable{ +/obj/machinery/door/airlock/hatch{ + name = "Bridge"; + req_access = list(150) + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"ep" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/rack, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/suit/space/syndicate, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"er" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"et" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"eF" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/machinery/vending/cigarette/syndicate, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"eL" = ( +/obj/structure/chair/stool{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/engineering/engine) -"fw" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"eP" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/item/storage/box/medipens{ + pixel_y = 7; + pixel_x = -4 + }, +/obj/item/storage/firstaid/tactical{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/clothing/glasses/hud/health/night, +/obj/item/gun/medbeam{ + pixel_y = -7; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"eQ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"eR" = ( /obj/structure/grille, /obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, -/area/ship/engineering) -"fz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 +/area/ship/engineering/atmospherics) +"fb" = ( +/obj/structure/bed, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 +/obj/item/bedsheet/black, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm) +"fm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/structure/catwalk/over, -/obj/structure/cable{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/structure/cable/yellow{ + icon_state = "2-8" }, +/obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, -/area/ship/crew/dorm) -"fC" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 +/area/ship/hallway/central) +"fn" = ( +/obj/machinery/cryopod{ + dir = 8 }, -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) +"fz" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility/syndicate{ + pixel_x = 2 }, -/area/ship/engineering/engine) -"fI" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 4 +/obj/item/storage/belt/utility/syndicate{ + pixel_y = 5; + pixel_x = -2 }, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 4 +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plasteel/tech/techmaint, +/obj/structure/sign/poster/contraband/engis_unite{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, /area/ship/engineering) +"fH" = ( +/turf/open/floor/engine, +/area/ship/engineering/engine) "fK" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/spawner{ - dir = 1 +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 }, -/obj/item/gun/ballistic/rocketlauncher/unrestricted{ - spawnwithmagazine = 0 +/obj/item/pen{ + pixel_y = 3 }, -/obj/item/flamethrower/full, -/obj/machinery/door/window{ - dir = 4; - req_access_txt = "150" +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"fN" = ( +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/structure/window/reinforced/spawner{ + dir = 4 }, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/ballistic/automatic/ebr, -/obj/item/gun/ballistic/automatic/ebr, -/obj/item/gun/ballistic/automatic/ebr, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) "fO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/crew/dorm) -"fW" = ( -/turf/open/floor/carpet/red, -/area/ship/security) -"fX" = ( -/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/structure/cable{ +/area/ship/external/dark) +"fQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"fT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"ga" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 10 +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"gb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"fU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 + dir = 8 }, -/obj/machinery/computer/communications, -/obj/structure/window/reinforced{ +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) -"gm" = ( -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"fV" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_one_access_txt = "150"; dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"gv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 +/area/ship/engineering/atmospherics) +"fX" = ( +/obj/machinery/suit_storage_unit/syndicate, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/box/white/corners, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"gg" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/mineral/ore_redemption{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"gw" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 9 +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/eight, /turf/open/floor/pod/dark, /area/ship/cargo) -"gB" = ( +"gh" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"gi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/airlock/hatch{ - name = "Operative's Office"; - req_access_txt = "3;150" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"gk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/door/poddoor{ + id = "twinkle_armory" }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"gC" = ( -/obj/machinery/computer, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"gK" = ( -/obj/effect/turf_decal/dept/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"gm" = ( +/obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"gM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/machinery/door/airlock/hatch{ - name = "Armory"; - req_access_txt = "3;150" +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"gq" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_y = 6 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"gR" = ( -/obj/machinery/computer/helm, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"gV" = ( -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/components/binary/volume_pump, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) -"gY" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"gZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"gv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/computer/atmos_control/tank/toxin_tank{ - dir = 1 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 6 +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"gz" = ( +/obj/machinery/computer/cryopod/directional/north{ + pixel_y = 26 }, +/obj/structure/closet/wall{ + dir = 4; + pixel_x = -28; + name = "gear closet" + }, +/obj/item/radio/headset/syndicate/alt, +/obj/item/radio/headset/syndicate/alt, +/obj/item/radio/headset/syndicate/alt, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/radio/headset/syndicate, +/obj/item/radio/headset/syndicate, +/obj/item/radio/headset/syndicate, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, /turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"hf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"hk" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/area/ship/crew/cryo) +"gC" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 }, -/obj/machinery/door/airlock/engineering, -/turf/open/floor/plasteel/mono/dark, +/obj/machinery/computer/atmos_control/tank/oxygen_tank, +/turf/open/floor/engine, /area/ship/engineering/engine) -"hp" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/engineering) -"hs" = ( -/obj/structure/frame/computer, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"hC" = ( -/obj/structure/cable{ - icon_state = "4-8" +"gI" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"gL" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"gU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber, /turf/open/floor/engine, -/area/ship/engineering) -"hE" = ( -/obj/effect/turf_decal/techfloor/orange, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"hF" = ( -/obj/machinery/power/emitter/welded{ - dir = 4 - }, +/area/ship/engineering/engine) +"gW" = ( +/obj/machinery/door/firedoor/border_only, /obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"hG" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/ship/bridge) -"hU" = ( +/obj/effect/turf_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/catwalk/over, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"ie" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/ship/engineering) -"ig" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "150" - }, /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"ii" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"gX" = ( +/obj/machinery/door/airlock/hatch{ + name = "Custodial Closet"; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"ij" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"im" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/have_a_puff{ - desc = "If you can't prevent plasma fires, create them!"; - pixel_y = 32 - }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/turf/open/floor/plasteel/dark, +/area/ship/crew/janitor) +"gZ" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 4 }, -/obj/machinery/light{ +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"hb" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ dir = 1 }, -/turf/open/floor/engine, -/area/ship/engineering) -"in" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/wideband, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"io" = ( +/turf/open/floor/plasteel/mono/white, +/area/ship/medical/surgery) +"hd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/security) -"ip" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/catwalk/over, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"it" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/ship/engineering) -"iy" = ( -/obj/machinery/vending/medical/syndicate_access, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"iH" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"iP" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, /turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"iT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/area/ship/hallway/central) +"hj" = ( +/obj/item/hypospray/mkii/CMO/combat{ + pixel_x = -8; + pixel_y = 6 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/obj/item/reagent_containers/glass/bottle/vial/large{ + pixel_y = 4; + pixel_x = 7 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"ji" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/ship/bridge) -"jp" = ( -/obj/structure/rack, -/obj/item/stack/sheet/mineral/titanium/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/plasteel/fifty, -/obj/item/stack/sheet/mineral/plastitanium{ - amount = 50 +/obj/item/reagent_containers/glass/bottle/vial/large{ + pixel_y = 4; + pixel_x = 7 }, -/obj/machinery/light{ - dir = 1 +/obj/item/reagent_containers/glass/bottle/vial/large{ + pixel_y = 4; + pixel_x = 7 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"jq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +/obj/item/reagent_containers/glass/bottle/vial/large{ + pixel_y = 4; + pixel_x = 7 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/obj/structure/sign/poster/contraband/mothpill{ + pixel_x = 32 }, -/turf/open/floor/pod/dark, -/area/ship/crew/dorm) -"jr" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics"; - req_one_access_txt = "150" +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/opaque/orange/line{ + dir = 6 }, /turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"jL" = ( +/area/ship/medical) +"ho" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/communications) +"hr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"jM" = ( /obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 4 + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "2-8" }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"ht" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/engine, -/area/ship/engineering) -"jN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/area/ship/engineering/engine) +"hu" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 10; + faction = list("PlayerSyndicate") + }, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/bridge) +"hw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"jP" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, +/turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"jS" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 +"hE" = ( +/obj/structure/table/wood/reinforced, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/turf/open/floor/carpet/red, +/area/ship/crew/office) +"hN" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 }, +/obj/machinery/light/directional/north, +/obj/structure/closet/radiation/empty, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/turf/open/floor/engine, /area/ship/engineering/engine) -"jV" = ( -/obj/machinery/button/massdriver{ - id = "starfurybc_massleft"; - name = "left cannon button"; - pixel_x = 26; - pixel_y = 26 +"hP" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/three_quarters, +/obj/machinery/light/directional/south, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"hR" = ( +/obj/machinery/door/airlock/hatch{ + name = "Mech Launcher #2"; + req_access = list(150); + dir = 4 }, -/turf/open/floor/plating, -/area/ship/bridge) -"kg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"kt" = ( -/obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/engine, -/area/ship/engineering) -"ku" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"hS" = ( +/obj/structure/table, +/obj/item/storage/box/emps{ + pixel_x = -5; + pixel_y = 10 }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/item/storage/box/flashbangs{ + pixel_y = 10; + pixel_x = 5 }, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"kz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/item/suppressor/specialoffer{ + pixel_y = 6; + pixel_x = -8 }, -/obj/structure/cable/yellow{ - icon_state = "1-8" +/obj/item/suppressor/specialoffer{ + pixel_y = -1; + pixel_x = -8 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"kB" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/hypospray/medipen/penacid{ - pixel_y = 8 +/obj/item/stock_parts/cell/gun{ + pixel_y = 1; + pixel_x = 9 }, -/obj/item/reagent_containers/hypospray/medipen/penacid{ - pixel_y = 4 +/obj/item/stock_parts/cell/gun{ + pixel_y = 1; + pixel_x = 9 }, -/obj/item/reagent_containers/hypospray/medipen/penacid, -/obj/item/reagent_containers/hypospray/medipen/penacid{ - pixel_y = -4 +/obj/item/stock_parts/cell/gun{ + pixel_y = 1; + pixel_x = 9 }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/engineering) -"kI" = ( -/obj/machinery/button/massdriver{ - id = "starfurybc_massright"; - name = "left cannon button"; - pixel_x = -26; - pixel_y = 26 +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"hU" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"kR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +"hW" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/machinery/power/terminal{ - dir = 1 +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"hY" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box{ + name = "suspicious donut box" }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"hZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, -/area/ship/crew/dorm) -"kV" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/area/ship/engineering/atmospherics) +"ia" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"ie" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 }, -/turf/open/floor/engine, -/area/ship/engineering) -"kY" = ( -/obj/machinery/door/airlock/engineering, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"ig" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel, +/obj/machinery/button/door{ + pixel_x = 23; + dir = 8; + id = "twinkle_sm"; + name = "Supermatter Shutters" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, /area/ship/engineering/engine) -"ld" = ( -/obj/structure/cable{ - icon_state = "2-4" +"ih" = ( +/obj/structure/table/wood, +/obj/machinery/jukebox/boombox{ + pixel_x = -10 }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/door/firedoor/border_only, +/obj/item/clothing/head/chefhat{ + pixel_x = 7 }, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"ii" = ( +/obj/machinery/vending/medical/syndicate_access, +/obj/effect/turf_decal/corner/opaque/syndiered/full, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"lj" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, +/area/ship/medical) +"im" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"ip" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"lI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"lJ" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/cargo) -"lL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"lN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/area/ship/engineering/engine) +"iq" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/structure/sign/poster/contraband/power{ + desc = "A poster that details the dangerously unsafe power generation methods of most ships."; + pixel_x = -32 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"ir" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ dir = 9 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"lS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"iu" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"lU" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 5 +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance/four, +/obj/item/reagent_containers/food/snacks/burger/red{ + name = "suspicious red burger"; + desc = "A suspicious looking burger."; + color = "#730622" }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"iv" = ( +/obj/structure/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/soap/syndie, +/obj/item/soap/syndie, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"lV" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/wood/walnut, +/area/ship/crew/janitor) +"iz" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"mx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"iA" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 9 }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, +/turf/open/floor/plasteel/mono/dark, /area/ship/medical) -"mB" = ( +"iB" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/obj/machinery/power/rad_collector/anchored{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"iC" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/visible{ dir = 4 }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"iG" = ( +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) +"iI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"iJ" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "Engine Access" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "twinkle_engines"; dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"mD" = ( /turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"iK" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half, +/turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"mG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +"iL" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/techfloor/orange{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"mK" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/obj/machinery/light/small{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/engine/o2, -/area/ship/engineering/atmospherics) -"mL" = ( -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/sign/poster/contraband/space_up{ + pixel_y = -32 }, -/obj/machinery/light, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"mV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"iV" = ( +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/item/toy/plush/lizardplushie{ + pixel_x = 6; + pixel_y = 4; + name = "supermatter supervisor lizard plushie"; + desc = "An adorable stuffed toy that resembles a lizard, tasked with helping the engineers maintain the supermatter." }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/item/reagent_containers/food/drinks/mug/coco{ + pixel_x = -6 }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/power/terminal, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"iW" = ( +/obj/effect/turf_decal/industrial/caution/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"mZ" = ( -/obj/structure/cable{ - icon_state = "1-2" +"iZ" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 1 + }, +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/mono/white, +/area/ship/medical/surgery) +"jf" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 + dir = 8 }, -/turf/open/floor/engine, -/area/ship/engineering) -"na" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-10" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"jh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ dir = 4 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"nf" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/obj/machinery/computer/cargo/express{ + dir = 8; + icon_state = "computer-left" }, -/obj/item/stack/sheet/mineral/plasma/five, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"nw" = ( -/obj/machinery/light/small{ +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"ji" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 1 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"nH" = ( -/obj/item/tank/internals/plasma/full, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"jk" = ( /obj/structure/cable/yellow{ - icon_state = "1-8" + icon_state = "1-2" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/turf/open/floor/circuit/green, -/area/ship/engineering/engine) -"nL" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 8; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 }, -/obj/item/reagent_containers/food/drinks/bottle/tequila{ - pixel_x = 2; - pixel_y = -5 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"nO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"jr" = ( +/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"jv" = ( +/obj/item/storage/bag/chemistry, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/glass/beaker, +/obj/structure/closet/wall/orange{ + name = "Chemical Closet"; + pixel_y = 28 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/structure/sign/warning/chemdiamond{ + pixel_x = 30 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/obj/item/clothing/glasses/sunglasses/chemical, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/opaque/orange/line{ + dir = 5 }, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"nZ" = ( -/obj/effect/turf_decal/industrial/warning{ +/area/ship/medical) +"jz" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"jA" = ( +/obj/machinery/door/airlock/hatch{ + name = "Engineering Office"; dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"oa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/engine, -/area/ship/engineering) -"of" = ( -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"oi" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/inverse{ - dir = 8 +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"ol" = ( -/obj/structure/table/reinforced, -/obj/item/pizzabox/meat, -/obj/item/toy/cards/deck/syndicate, -/obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ - dir = 1 + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"op" = ( -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"jG" = ( +/obj/effect/decal/cleanable/oil/slippery, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"jH" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters{ + id = "twinkle_armory"; + dir = 4 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"ot" = ( -/obj/machinery/light{ +/turf/open/floor/plating, +/area/ship/security/armory) +"jJ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"jM" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ dir = 1 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/structure/sign/poster/contraband/cybersun_borg{ + pixel_x = -32 + }, +/obj/structure/bed, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" }, +/obj/item/bedsheet/medical, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"ou" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "150" +/area/ship/medical) +"jX" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/obj/effect/turf_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/machinery/power/rad_collector/anchored{ + anchored = 1 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"kc" = ( +/obj/machinery/suit_storage_unit/syndicate, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"kd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"ke" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"kf" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"ks" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/fans/tiny, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"oB" = ( -/obj/machinery/atmospherics/pipe/manifold/purple/visible{ +"ky" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/tank/air_tank{ dir = 8 }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"oC" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/corner/opaque/black, -/obj/effect/turf_decal/corner/opaque/black{ +"kE" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"kF" = ( +/obj/structure/table/wood/reinforced, +/obj/item/folder/syndicate{ + desc = "A black folder."; + name = "folder"; + pixel_x = 7 + }, +/obj/item/book/random{ + pixel_x = -6 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/office) +"kH" = ( +/obj/structure/rack, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ dir = 8 }, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/ship/crew/dorm) -"oE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/arrows/red{ - color = "red"; - icon_state = "arrows" +/obj/structure/closet/emcloset/wall{ + dir = 1; + pixel_y = -28 }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"kJ" = ( +/obj/item/tank/internals/plasma/full, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"oW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/gun/energy/e_gun/mini{ - desc = "A small energy gun commonly used by syndicate officers, produced by Cybersun. It has two settings: disable and kill."; - name = "cybersun officer pistol" +/turf/open/floor/circuit/green, +/area/ship/engineering/engine) +"kM" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, -/obj/structure/window/reinforced{ +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"kR" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/obj/machinery/newscaster/directional/north{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"kS" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/atmospherics) +"kT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"kV" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/three_quarters{ dir = 1 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) -"oZ" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/syndicateemblem/top/left{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"lg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/engine, -/area/ship/engineering) -"ph" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"lj" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/advanced_airlock_controller{ + pixel_x = -25; + req_access = list(150) }, -/obj/machinery/light{ +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"ln" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered/corner{ dir = 1 }, -/turf/open/floor/engine, -/area/ship/engineering) -"pj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "1-8" }, -/turf/open/floor/engine, -/area/ship/engineering) -"pr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output, -/turf/open/floor/engine/n2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"lo" = ( +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 4; + id = "twinkle_holobay"; + locked = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor{ + id = "twinkle_cargo"; + name = "Cargo Shutters" + }, +/turf/open/floor/plating, +/area/ship/cargo) +"lv" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, /area/ship/engineering/atmospherics) -"pv" = ( +"lw" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"lx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"pw" = ( -/obj/structure/closet/crate, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"px" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/camera/autoname{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"lF" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 8 }, -/obj/machinery/light{ - dir = 1 +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"pI" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - req_one_access_txt = "150" +/turf/open/floor/engine, +/area/ship/engineering/engine) +"lG" = ( +/obj/machinery/light/directional/south, +/obj/structure/table/reinforced, +/obj/item/folder/syndicate/red{ + pixel_x = -8; + pixel_y = 6 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/item/folder/syndicate/blue{ + pixel_x = 6; + pixel_y = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/folder/red{ + pixel_x = -4 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"pK" = ( -/obj/machinery/firealarm{ - pixel_y = -28 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 4 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"pN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +"lI" = ( +/obj/effect/turf_decal/industrial/caution{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/engine, +/area/ship/engineering/engine) +"lO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ + dir = 1 }, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"qe" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/plasma{ - dir = 4 +/area/ship/hallway/central) +"lT" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 }, -/obj/effect/turf_decal/techfloor/orange{ +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 9 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"qi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"qj" = ( -/obj/structure/rack, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/bridge) -"qk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 + dir = 4 }, -/turf/open/floor/carpet/red, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/mineral/plastitanium/red, /area/ship/security) -"ql" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/item/multitool{ - pixel_x = -2; - pixel_y = 4 +"lY" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder/constructed, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"ma" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/machinery/computer/slot_machine, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, -/obj/item/clothing/ears/earmuffs, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/small{ +/obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/black, -/obj/effect/turf_decal/corner/opaque/black{ +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"ml" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/item/flashlight, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 + }, /turf/open/floor/plasteel, -/area/ship/crew/dorm) -"qy" = ( -/obj/structure/cable{ - icon_state = "2-8" +/area/ship/crew/canteen) +"mm" = ( +/obj/structure/chair{ + dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"qz" = ( -/obj/docking_port/mobile{ - can_move_docking_ports = 1; +/obj/structure/noticeboard{ dir = 4; - name = "SBD starfurys revenge"; - port_direction = 8 + pixel_x = -32 }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 }, -/turf/open/floor/plating/airless, -/area/ship/external) -"qD" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"mo" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 8 }, -/obj/effect/turf_decal/corner/transparent/bar, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"qE" = ( -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"qG" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/security) -"qP" = ( +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"mp" = ( +/turf/template_noop, +/area/template_noop) +"mr" = ( +/obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ - icon_state = "2-4" + icon_state = "0-2" }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/power/terminal{ +/obj/structure/window/plasma/reinforced{ dir = 1 }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/power/rad_collector/anchored{ + anchored = 1 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"qY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"mt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"qZ" = ( -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/engine/n2, +/area/ship/engineering/atmospherics) +"mx" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/effect/turf_decal/syndicateemblem/top/middle{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"re" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"mB" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ + dir = 5 }, -/obj/effect/turf_decal/arrows/red{ - color = "red"; - icon_state = "arrows" +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"mG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 + dir = 8 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"rf" = ( -/obj/structure/cable{ - icon_state = "2-8" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/structure/cable{ +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/camera/autoname, +/turf/open/floor/plating, +/area/ship/hallway/central) +"mQ" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/medical) +"mS" = ( +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"ri" = ( -/obj/effect/turf_decal/corner/transparent/bar{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"mW" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"rj" = ( -/obj/structure/closet/secure_closet{ - anchored = 1; - icon_state = "syndicate"; - name = "armor_locker"; - req_access = list(3,150) +/obj/machinery/door/window/eastright{ + name = "Engine Access" }, -/obj/item/clothing/suit/space/hardsuit/syndi, -/obj/item/clothing/suit/space/hardsuit/syndi, -/obj/item/clothing/suit/space/hardsuit/syndi, -/obj/item/clothing/head/helmet/swat, -/obj/item/clothing/head/helmet/swat, -/obj/item/clothing/head/helmet/swat, -/obj/item/clothing/suit/armor/vest/bulletproof, -/obj/item/clothing/suit/armor/vest/bulletproof, -/obj/item/clothing/suit/armor/vest/bulletproof, -/turf/open/floor/carpet/red, -/area/ship/security) -"rk" = ( -/obj/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering) -"rl" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/window/reinforced/spawner, +/obj/machinery/door/poddoor/shutters{ + id = "twinkle_engines"; + dir = 4 }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"rm" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/techfloor/orange{ - dir = 9 +"mX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/airlock/engineering{ + req_access = list(150,10) }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"rs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/atmospherics) +"ng" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"ni" = ( +/obj/machinery/advanced_airlock_controller{ + pixel_x = -25; + req_access = list(150) + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"nj" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) +"nk" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/light/directional/north, +/obj/machinery/computer/telecomms/monitor{ + network = "synd_commnet" }, -/obj/effect/turf_decal/industrial/warning{ +/turf/open/floor/circuit/red, +/area/ship/engineering/communications) +"nn" = ( +/obj/machinery/door/window/eastleft{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/machinery/mass_driver{ + dir = 4; + id = "twinkle_leftmassdriver" }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"rt" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/medical) -"rv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/turf/open/floor/plasteel/elevatorshaft, +/area/ship/bridge) +"np" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/south, +/obj/item/card/id/syndicate_command/crew_id{ + name = "operative ID card" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/obj/item/card/id/syndicate_command/crew_id{ + name = "operative ID card" }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"rA" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/card/id/syndicate_command/crew_id{ + name = "operative ID card" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/item/card/id/syndicate_command/crew_id/engi{ + name = "engineer ID card" }, -/turf/open/floor/engine, -/area/ship/engineering) -"rE" = ( -/obj/machinery/door/airlock/engineering, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/item/card/id/syndicate_command/crew_id/engi{ + name = "engineer ID card" }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering/engine) -"rF" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/borderfloor/full, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"rG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/item/card/id/syndicate_command/crew_id/med{ + name = "medic ID card" }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +/obj/item/card/id/syndicate_command/crew_id/med{ + name = "medic ID card" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"rH" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/card/id/syndicate_command/lieutenant{ + name = "lieutenant ID card" }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 +/obj/structure/closet/secure_closet/wall{ + dir = 4; + pixel_x = -28; + name = "spare cards locker"; + req_access = list(3,150) }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 8 }, -/turf/open/floor/engine, -/area/ship/engineering) -"rJ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"nq" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 1 }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/warning{ +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"nr" = ( +/obj/machinery/suit_storage_unit/syndicate, +/obj/effect/turf_decal/box/white/corners{ dir = 1 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"rM" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"nt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"rT" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/cargo) -"rU" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/analyzer, -/obj/item/analyzer, -/obj/item/analyzer, -/obj/item/analyzer, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/engineering) -"rX" = ( -/obj/structure/table/wood/reinforced, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"sf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 10 +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plating, +/area/ship/hallway/central) +"nC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"sj" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"nE" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{ + dir = 4 }, +/obj/machinery/vending/toyliberationstation, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"st" = ( -/obj/effect/turf_decal/radiation, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +"nS" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" }, /turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"sD" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/area/ship/medical) +"nW" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 6; + faction = list("PlayerSyndicate") }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"sE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/bridge) +"oc" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"sI" = ( -/obj/structure/rack, -/obj/item/pickaxe/drill{ - pixel_x = 4; - pixel_y = -4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/item/pickaxe/drill, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"sN" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"of" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 9; + faction = list("PlayerSyndicate") + }, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/bridge) +"oi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 + dir = 8 }, -/obj/structure/catwalk/over, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, +/obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, -/area/ship/crew/dorm) -"sS" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/ship/engineering/atmospherics) -"sT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/area/ship/hallway/central) +"oj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/light{ +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"on" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"tk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"tr" = ( -/obj/structure/closet/secure_closet{ - anchored = 1; - icon_state = "syndicate"; - name = "ballistics locker"; - req_access = list(3,150) +/obj/machinery/door/poddoor{ + id = "twinkle_armory" }, -/obj/item/ammo_casing/caseless/rocket/hedp, -/obj/item/ammo_casing/caseless/rocket, -/obj/item/ammo_casing/caseless/rocket, -/obj/item/ammo_casing/caseless/rocket/hedp, -/obj/item/stock_parts/cell/gun, -/obj/item/stock_parts/cell/gun, -/obj/item/stock_parts/cell/gun, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c9mm{ - ammo_type = /obj/item/ammo_casing/a556; - name = "ammo box (5.56mm)" - }, -/obj/item/ammo_box/c9mm{ - ammo_type = /obj/item/ammo_casing/a556; - name = "ammo box (5.56mm)" +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"ow" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 4 }, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/carpet/red, +/turf/open/floor/mineral/plastitanium/red, /area/ship/security) -"tv" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/bridge) -"tw" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ - dir = 1 +"ox" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/engine/plasma, -/area/ship/engineering/atmospherics) -"tA" = ( -/obj/effect/turf_decal/atmos/air, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"tB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" - }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"tC" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"tG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"tK" = ( -/obj/structure/table/reinforced, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/power/terminal{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"tO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"tR" = ( -/obj/effect/turf_decal/atmos/nitrogen, -/turf/open/floor/engine/n2, -/area/ship/engineering/atmospherics) -"tS" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 +/area/ship/hallway/central) +"oB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"tT" = ( -/obj/structure/closet/secure_closet{ - icon_state = "med_secure"; - name = "robotics"; - req_access_txt = list(150) - }, -/obj/item/bodypart/chest/robot, -/obj/item/bodypart/head/robot, -/obj/item/bodypart/l_arm/robot, -/obj/item/bodypart/leg/left/robot, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/leg/right/robot, -/obj/item/organ/ears/robot, -/obj/item/organ/eyes/robotic/flashlight, -/obj/item/organ/tongue/robot, -/obj/item/organ/ears/cybernetic, -/obj/item/organ/ears/cat, -/obj/item/organ/heart/cybernetic/tier2, -/obj/item/organ/liver/cybernetic/tier2, -/obj/item/organ/lungs/cybernetic/tier2, -/obj/item/organ/tail/cat, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"tU" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"tW" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/rice, -/obj/effect/turf_decal/corner/opaque/white{ +/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"uh" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"ui" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"um" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/effect/turf_decal/trimline/opaque/orange/filled/warning, +/obj/machinery/door/airlock/external{ + req_access = list(150,10); + dir = 4 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"up" = ( -/obj/machinery/vending/boozeomat/syndicate_access, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"uq" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, +/turf/open/floor/engine, /area/ship/engineering/engine) -"uw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +"oC" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 6 + }, +/obj/machinery/power/terminal{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + dir = 10 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plasteel/tech/grid, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, /area/ship/engineering) -"uy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ - dir = 8 +"oD" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"uB" = ( -/obj/item/tank/internals/plasma/full, /obj/structure/cable/yellow{ - icon_state = "2-4" + icon_state = "1-2" }, -/obj/effect/turf_decal/industrial/warning{ +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"oG" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 4 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 - }, -/turf/open/floor/circuit/green, -/area/ship/engineering/engine) -"uL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor{ - id = "armory" - }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/ship/security) -"uM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +"oJ" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"oL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/obj/structure/sign/poster/contraband/cybersun{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"oM" = ( +/obj/structure/table, +/obj/machinery/button/massdriver{ + pixel_x = 23; + dir = 8; + pixel_y = 9; + id = "twinkle_leftmassdriver" + }, +/obj/machinery/button/door{ + pixel_x = 26; + dir = 8; + id = "twinkle_leftmassdriver" + }, +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 10 }, /turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"uN" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility/syndicate, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"uU" = ( +/area/ship/bridge) +"oP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 4 + }, +/obj/machinery/computer/communications{ + dir = 8; + req_access = list(151); + set_obj_flags = "EMAGGED"; + icon_state = "computer-right" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"oV" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/plasma, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"oX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, /obj/effect/turf_decal/industrial/warning{ - dir = 8 + dir = 1 }, -/obj/machinery/cell_charger, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"pc" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"ph" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, +/obj/item/modular_computer/tablet/preset/advanced{ + pixel_x = 8 + }, +/obj/item/modular_computer/tablet/preset/advanced, +/obj/item/modular_computer/tablet/preset/advanced{ + pixel_x = -10 + }, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"pj" = ( +/obj/machinery/door/window/southright, +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"pl" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"pm" = ( +/obj/structure/filingcabinet/double, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/ss13{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"pp" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"pr" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"ps" = ( +/obj/structure/bed, +/obj/structure/sign/poster/contraband/smoke{ + pixel_y = 32 + }, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" + }, +/obj/item/bedsheet/black, /turf/open/floor/carpet/nanoweave/red, /area/ship/crew/dorm) -"uV" = ( -/obj/machinery/light{ +"pt" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 4 }, /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/structure/cable/yellow{ +/obj/structure/cable{ icon_state = "1-2" }, +/obj/structure/sign/poster/official/moth/delam{ + pixel_x = 33 + }, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine, -/area/ship/engineering) -"uY" = ( -/obj/machinery/door/poddoor{ - id = "sbccargo"; - name = "Cargo Bay Blast Door" +/area/ship/engineering/engine) +"pw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/ship/cargo) -"vb" = ( -/obj/machinery/shieldgen, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, -/area/ship/engineering/electrical) -"vd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/area/ship/engineering/atmospherics) +"pB" = ( +/obj/machinery/power/terminal{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 + dir = 8 }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-4" }, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"vo" = ( -/turf/open/floor/engine, -/area/ship/engineering/engine) -"vq" = ( -/obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 +/area/ship/engineering) +"pD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"pE" = ( +/obj/machinery/button/door{ + pixel_x = -25; + pixel_y = 10; + dir = 4; + id = "twinkle_armory"; + name = "Armory Access"; + req_access = list(3,150) + }, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 10 }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"pF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, /obj/effect/turf_decal/industrial/warning{ dir = 5 }, -/obj/machinery/light{ +/turf/open/floor/plating/airless, +/area/ship/external/dark) +"pH" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/machinery/airalarm/directional/west, +/obj/item/circuitboard/machine/autolathe, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stack/sheet/glass, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"pI" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/three_quarters, +/obj/effect/turf_decal/syndicateemblem/bottom/left{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"pL" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 9 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"pN" = ( +/obj/machinery/suit_storage_unit/syndicate, +/obj/effect/turf_decal/box/white/corners{ dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"vr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/effect/turf_decal/box/white/corners, +/obj/machinery/camera/autoname{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"pO" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"pR" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"vD" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/structure/sign/poster/contraband/stechkin{ + pixel_x = 32 + }, +/turf/open/floor/mineral/plastitanium/red, /area/ship/security) -"vF" = ( +"pU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 4 +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 }, /turf/open/floor/plating, -/area/ship/engineering/electrical) -"vH" = ( +/area/ship/hallway/central) +"qb" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 }, /turf/open/floor/engine, -/area/ship/engineering) -"vK" = ( -/obj/machinery/power/supermatter_crystal/shard/engine, -/turf/open/floor/engine, /area/ship/engineering/engine) -"vQ" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 - }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +"ql" = ( +/obj/machinery/advanced_airlock_controller{ + pixel_x = 25 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"vX" = ( -/obj/structure/table/reinforced, -/obj/item/storage/backpack/duffelbag/syndie/surgery, -/obj/item/reagent_containers/medigel/sterilizine, -/obj/effect/turf_decal/borderfloor/full, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"wc" = ( -/obj/machinery/light, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ + dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"qo" = ( +/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/plasteel/tech/grid, +/area/ship/engineering/engine) +"qp" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 }, /obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"wd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"wn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/power/terminal{ - dir = 1 - }, +/area/ship/hallway/central) +"qr" = ( /obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"wp" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/techfloor/orange{ - dir = 5 + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"wr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/corner/opaque/orange{ dir = 6 }, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"wA" = ( -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/engine, +/area/ship/engineering/engine) +"qt" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + min_temperature = 1; + target_temperature = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"qz" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, -/area/ship/engineering/electrical) -"wH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/area/ship/engineering/atmospherics) +"qF" = ( +/obj/structure/table, +/obj/item/multitool{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/item/book/manual/wiki/tcomms{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"qI" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/carpet/red, -/area/ship/security) -"wJ" = ( -/obj/effect/turf_decal/radiation, -/turf/open/floor/plasteel/mono/dark, +/turf/open/floor/plasteel, /area/ship/crew/dorm) -"wK" = ( -/obj/structure/sink{ - pixel_y = 32 - }, +"qK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"wN" = ( -/obj/machinery/light{ dir = 1 }, -/obj/structure/closet/secure_closet/chemical/heisenberg, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"wS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering, -/turf/open/floor/plasteel/tech/techmaint, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, /area/ship/engineering) -"wT" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 +"qL" = ( +/obj/structure/bed, +/obj/item/toy/plush/among{ + color = "#730622"; + name = "suspicious amoung pequeño"; + desc = "Get out of my head!" }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/flasher{ + pixel_y = -23; + id = "twinkle_flash2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"qM" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) }, -/turf/open/floor/engine, -/area/ship/engineering) -"wW" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/docking_port/mobile{ + can_move_docking_ports = 1; + name = "Twink Bay"; + port_direction = 8; + preferred_direction = 4; + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"qN" = ( +/obj/machinery/photocopier, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"qP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"qQ" = ( +/obj/machinery/telecomms/broadcaster/preset_right{ + network = "synd_commnet" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/turf/open/floor/circuit/red, +/area/ship/engineering/communications) +"qS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-10" }, /turf/open/floor/engine, -/area/ship/engineering) -"wX" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/pipe_dispenser, -/obj/item/flashlight, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/engineering) -"xc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"xe" = ( -/obj/structure/table/reinforced, -/obj/item/geiger_counter{ - pixel_x = -4; - pixel_y = 4 +/area/ship/engineering/engine) +"qT" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/item/geiger_counter, -/obj/item/geiger_counter{ - pixel_x = 4; - pixel_y = -4 +/obj/machinery/holopad/emergency/command, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"qY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/engineering) -"xf" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/door/window/eastleft{ +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating, +/area/ship/hallway/central) +"ra" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"xm" = ( -/obj/machinery/door/airlock/command{ - req_access_txt = "151" +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/obj/machinery/power/rad_collector/anchored{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/green/visible, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"rb" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname{ + dir = 10 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"rd" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineer Room"; + req_access = list(150,10) }, +/obj/effect/turf_decal/corner/opaque/orange/full, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/door/firedoor/border_only{ dir = 1 }, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/dark, -/area/ship/crew/dorm) -"xn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/area/ship/engineering) +"ro" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/janitor) +"rq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"xt" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input, -/turf/open/floor/engine/air, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"xu" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks/beer{ +"rr" = ( +/obj/machinery/atmospherics/components/trinary/filter{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"xv" = ( -/obj/machinery/door/airlock/medical{ - name = "Surgery"; - req_one_access_txt = "150" +/turf/open/floor/engine, +/area/ship/engineering/engine) +"ru" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"rP" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/cargo) +"rQ" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/engine, +/area/ship/engineering/engine) +"rR" = ( +/obj/structure/chair{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"xz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"rW" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_leftmassdriver"; + dir = 4 }, -/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/structure/closet/wall{ - name = "radio closet"; - pixel_y = 30 +/turf/open/floor/plasteel/elevatorshaft, +/area/ship/bridge) +"sb" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/canteen) +"sc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"xC" = ( -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/mineral/plastitanium, /area/ship/security) -"xH" = ( -/obj/machinery/smartfridge/bloodbank/preloaded, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white/airless, -/area/ship/medical) -"xI" = ( +"sd" = ( +/obj/machinery/door/firedoor/border_only, /obj/effect/turf_decal/industrial/warning{ - dir = 9 + dir = 1 }, -/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/industrial/warning, /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"xM" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner{ - dir = 4 +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"sf" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"si" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 8 }, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 1 }, -/obj/machinery/door/window/eastright{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "6-8" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"sj" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"xQ" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/medical/surgery) -"yf" = ( -/obj/structure/rack, +"sk" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 }, -/obj/item/clothing/suit/space/syndicate/green, -/obj/item/clothing/head/helmet/space/syndicate/green, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"yk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"yl" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" +/obj/structure/sign/poster/official/moth/supermatter{ + pixel_x = 32 }, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine, -/area/ship/engineering) -"yo" = ( +/area/ship/engineering/engine) +"so" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -2; - pixel_y = 2 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"ys" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/item/storage/cans/sixbeer, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"sr" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"ss" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 9 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"yt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"yx" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"yE" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"yM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-8" }, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"yU" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "150" +/area/ship/engineering) +"st" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/trimline/opaque/syndiered/corner, +/obj/machinery/light/directional/east, +/obj/structure/sign/poster/solgov/suns{ + pixel_x = 32 }, -/turf/open/floor/plating, -/area/ship/engineering) -"yV" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"sz" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/light{ +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"yX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"sC" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/computer/atmos_control/tank/toxin_tank{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"sD" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/rack, +/obj/item/storage/toolbox/syndicate{ + name = "syndicate toolbox"; + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/storage/toolbox/syndicate{ + name = "syndicate toolbox" + }, +/obj/effect/turf_decal/corner/opaque/orange/three_quarters{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"sG" = ( +/obj/machinery/light/directional/north, +/obj/machinery/vending/security/marine/syndicate, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"sI" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 8 }, -/turf/open/floor/carpet/red, -/area/ship/security) -"zk" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 +/obj/effect/turf_decal/industrial/warning{ + dir = 4 }, -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/engineering/atmospherics) -"zr" = ( -/obj/machinery/sleeper{ - desc = "An enclosed machine used to stabilize and heal patients. Despite the looks, it's just a normal sleeper painted red."; - dir = 1; - icon_state = "sleeper_s" +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/light, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"zv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"sL" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/obj/machinery/door/poddoor/shutters/preopen{ + id = "twinkle_sm" }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plating, +/area/ship/engineering/engine) +"sP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"sW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, -/turf/open/floor/engine, -/area/ship/engineering) -"zA" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/industrial/outline, +/turf/open/floor/plasteel/mono/dark, +/area/ship/engineering/engine) +"sY" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"tg" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay"; + req_one_access_txt = "150"; + req_access = list(150); dir = 4 }, +/obj/effect/turf_decal/corner/opaque/syndiered/full, /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/engine, -/area/ship/engineering) -"zG" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/ship/engineering) -"zJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 +/area/ship/medical) +"th" = ( +/obj/effect/turf_decal/industrial/caution{ + dir = 4 }, -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 +/turf/open/floor/engine, +/area/ship/engineering/engine) +"ti" = ( +/obj/effect/turf_decal/industrial/warning/full, +/obj/machinery/power/supermatter_crystal/shard/engine{ + pixel_y = 5 }, +/turf/open/floor/engine, /area/ship/engineering/engine) -"zV" = ( +"tk" = ( +/obj/machinery/power/emitter/welded, /obj/effect/turf_decal/industrial/warning, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"zY" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"Ac" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/structure/cable/yellow, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"tl" = ( +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 8 }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Ae" = ( -/obj/effect/turf_decal/arrows/red{ - color = "red"; - icon_state = "arrows" +"tn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"Af" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 + dir = 5 }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"Aq" = ( -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/obj/machinery/light/directional/west, +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"tp" = ( +/obj/structure/toilet/secret{ + secret_type = "/obj/item/toy/plush/moth"; + dir = 4 }, -/obj/machinery/button/door{ - id = "syndikitchen"; - pixel_x = -23; - pixel_y = 23 +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"tr" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 10; + layer = 3.1 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"As" = ( -/obj/machinery/sleeper{ - desc = "An enclosed machine used to stabilize and heal patients. Despite the looks, it's just a normal sleeper painted red."; - dir = 1; - icon_state = "sleeper_s" +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 8 }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"At" = ( -/obj/structure/chair{ +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"ts" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, /turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Ay" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/area/ship/crew/dorm/dormtwo) +"tG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ dir = 8 }, +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) +"tH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"AH" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor{ - id = "windows"; - name = "Cargo Bay Blast Door" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/ship/crew/canteen) -"AL" = ( -/obj/machinery/suit_storage_unit/syndicate, -/obj/effect/turf_decal/industrial/outline, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"AN" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"tS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/comfy/shuttle{ + dir = 4 }, -/area/ship/engineering/engine) -"AR" = ( -/obj/item/tank/internals/plasma/full, -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/corner/opaque/syndiered/half{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"tU" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"tY" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/turf/open/floor/circuit/green, -/area/ship/engineering/engine) -"AV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"tZ" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/obj/machinery/computer/cryopod{ - pixel_y = 26 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 4 }, /turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"Bb" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/syringes, -/obj/item/storage/belt/medical, -/obj/item/clothing/glasses/hud/health/night, -/obj/item/storage/firstaid/medical, -/obj/item/clothing/glasses/hud/health/night, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, +/area/ship/bridge) +"ug" = ( +/obj/structure/rack, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/fireaxecabinet{ + pixel_y = -32; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"uh" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, /area/ship/medical) -"Bc" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ - dir = 4 +"um" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/engine, -/area/ship/engineering) -"Bg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"Bj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/area/ship/engineering/engine) +"uo" = ( +/obj/structure/bed/dogbed{ + desc = "Smells kind of fishy."; + name = "Cayenne II's bed" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/mob/living/simple_animal/hostile/carp/cayenne{ + name = "Cayenne II"; + desc = "A descendant from the legendary Cayenne, a failed Syndicate experiment in weaponized space carp."; + faction = list("PlayerSyndicate") }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/item/toy/nuke, +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 }, -/obj/structure/cable{ +/obj/effect/turf_decal/spline/fancy/opaque/black, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"uE" = ( +/obj/machinery/door/airlock/hatch{ + name = "Captain's Quarters"; + req_access = list(151); + dir = 4 + }, +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/cargo) -"Bk" = ( -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm/dormtwo) +"uK" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, /turf/open/floor/plasteel/dark, -/area/ship/engineering) -"Bn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/area/ship/medical) +"uX" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay"; + req_one_access_txt = "150"; + req_access = list(150); dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"By" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 + dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"BA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"uY" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"BK" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"BR" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/machinery/vending/cigarette/syndicate, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"BX" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"BZ" = ( -/obj/structure/cable{ - icon_state = "1-2" +"vb" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/cryo) +"vl" = ( +/obj/machinery/sleeper/syndie{ + dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"Cg" = ( +/obj/effect/turf_decal/industrial/hatch/red, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 + dir = 9 }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"vn" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"vy" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"CE" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"CI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/crew/janitor) +"vA" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/catwalk/over, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"CK" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"CL" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor{ - id = "bridgedoors"; - name = "Cargo Bay Blast Door" +/obj/machinery/door/airlock/hatch{ + name = "Bridge"; + req_access = list(150) }, -/turf/open/floor/plating, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"CP" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, +"vB" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/trimline/opaque/orange/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"vE" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"vJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "twinkle_sm" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"CU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/area/ship/engineering/engine) +"vL" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"vO" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/effect/turf_decal/syndicateemblem/middle/right{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"CX" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 +"vQ" = ( +/obj/machinery/power/shieldwallgen/atmos{ + anchored = 1; + dir = 8; + id = "twinkle_holobay"; + locked = 1 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Da" = ( -/obj/machinery/power/smes{ - charge = 5e+006 +/obj/machinery/door/poddoor{ + id = "twinkle_cargo"; + name = "Cargo Shutters" }, -/obj/structure/cable, /turf/open/floor/plating, -/area/ship/engineering/electrical) -"Dd" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/area/ship/cargo) +"vW" = ( +/obj/effect/turf_decal/trimline/opaque/orange/line{ + dir = 1 }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"Dm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/structure/sign/poster/official/moth/epi{ + pixel_x = -32 }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"Ds" = ( -/obj/machinery/power/shuttle/engine/fueled/plasma{ - dir = 1 +/obj/machinery/light/directional/south, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"wa" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/turf/open/floor/plating/airless, -/area/ship/engineering/atmospherics) -"DE" = ( -/obj/machinery/light/floor, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"DF" = ( -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"wb" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/structure/chair/comfy/shuttle{ + dir = 8 }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/carpet/nanoweave/red, +/obj/item/toy/plush/moth{ + name = "lieutenant moth plushie"; + desc = "A plushie depicting an adorable mothperson, featuring realistic mothperson agony sounds every time you hug it. They seem to be hiding something." + }, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"DI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 +"wg" = ( +/obj/structure/cable/yellow{ + icon_state = "2-9" }, -/turf/open/floor/carpet/nanoweave/red, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"wh" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_external" + }, +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, /area/ship/security) -"DK" = ( +"wi" = ( +/obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 + icon_state = "0-2" }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"DM" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/structure/window/plasma/reinforced{ dir = 1 }, -/obj/machinery/button/door{ - id = "starfurybcsupermatter"; - name = "Radiation Shutters"; - pixel_x = 6; - pixel_y = 25; - req_access_txt = "150" +/obj/machinery/power/rad_collector/anchored{ + anchored = 1 }, -/obj/machinery/button/door{ - id = "starfurybcsupermatter_bolt"; - name = "Supermatter Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 25; - req_access_txt = "150"; - specialfunctions = 4 +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"wm" = ( +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"wr" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"wu" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"wz" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"wA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"wC" = ( +/obj/machinery/vending/security, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"wF" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/camera/autoname{ + dir = 6 }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"wH" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_one_access_txt = "150"; dir = 4 }, -/obj/machinery/holopad/emergency/engineering, -/turf/open/floor/engine, -/area/ship/engineering) -"DN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"wJ" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ dir = 8 }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"wL" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"DU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"Eb" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/light{ - dir = 1 +"wM" = ( +/obj/machinery/door/window/eastleft{ + name = "Engine Access" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/power/smes/shuttle/precharged{ dir = 4 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Eg" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/ship/engineering) -"El" = ( -/obj/machinery/light{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/obj/machinery/door/poddoor/shutters{ + id = "twinkle_engines"; + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Em" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Ep" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 +"wP" = ( +/obj/effect/turf_decal/corner/opaque/orange/three_quarters{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 +/obj/machinery/power/smes/engineering, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "2-4" +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"wR" = ( +/obj/item/gun/energy/ionrifle, +/obj/structure/rack, +/obj/item/storage/backpack/duffelbag/syndie/x4, +/obj/item/card/emag, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"Et" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/window/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + req_access = list(3,150) }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"Eu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"Ew" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/item/grenade/frag, +/obj/item/grenade/frag, +/obj/item/grenade/frag, +/obj/item/grenade/frag, +/obj/item/ammo_casing/caseless/rocket, +/obj/item/ammo_casing/caseless/rocket, +/obj/item/ammo_casing/caseless/rocket/hedp, +/obj/item/ammo_casing/caseless/rocket/hedp, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/gun/ballistic/rocketlauncher, +/obj/item/gun/ballistic/automatic/ebr, +/obj/item/gun/ballistic/automatic/ebr{ + pixel_x = -6; + pixel_y = -3 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 10 +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"wV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/ship/engineering) -"Ey" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/crew/canteen) -"EK" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/machinery/door/airlock/hatch{ + name = "Briefing"; + dir = 4 }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"wZ" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 1 }, -/turf/open/floor/engine, -/area/ship/engineering) -"EP" = ( -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"EQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"ER" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"EW" = ( -/obj/machinery/atmospherics/components/binary/volume_pump, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine, /area/ship/engineering/engine) -"Fm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"xa" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"xe" = ( +/obj/structure/toilet/secret{ + secret_type = "/obj/item/toy/plush/moth"; + dir = 4 + }, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_y = 32 + }, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 10 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"Fn" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"xg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"xh" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"xk" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 + dir = 6 }, -/obj/machinery/airalarm/directional/south, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Fu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/area/ship/engineering/atmospherics) +"xo" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "twinkle_sm" + }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/catwalk/over, /turf/open/floor/plating, -/area/ship/crew/dorm) -"Fv" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/area/ship/engineering/engine) +"xp" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 5; + faction = list("PlayerSyndicate") }, -/obj/structure/cable{ - icon_state = "2-4" +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/bridge) +"xq" = ( +/obj/machinery/light/directional/south, +/obj/item/trash/cheesie, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"xs" = ( +/obj/machinery/power/emitter/welded{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" }, /turf/open/floor/engine, -/area/ship/engineering) -"Fw" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "150" +/area/ship/engineering/engine) +"xu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/structure/fans/tiny, -/obj/structure/railing/corner{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/railing/corner{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"FD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output, -/turf/open/floor/engine/plasma, -/area/ship/engineering/atmospherics) -"FN" = ( -/obj/effect/turf_decal/corner/transparent/bar{ +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/machinery/airalarm/directional/north, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"FW" = ( +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"xv" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/security/armory) +"xw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/turf/open/floor/engine, -/area/ship/engineering) -"FY" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"xx" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 9 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" }, +/obj/effect/turf_decal/corner/opaque/syndiered/bordercorner, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"Ge" = ( -/obj/machinery/vending/security/marine/syndicate{ - all_items_free = 1 +"xz" = ( +/obj/machinery/flasher{ + pixel_y = -23; + id = "twinkle_flash1" }, -/turf/open/floor/carpet/nanoweave/red, +/turf/open/floor/mineral/plastitanium, /area/ship/security) -"Gm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +"xG" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering) +"xH" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_rightmassdriver"; + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/turf/open/floor/plasteel/elevatorshaft, +/area/ship/bridge) +"xP" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"xW" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ + dir = 1 }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"Gp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"xZ" = ( +/obj/docking_port/stationary{ + height = 15; + width = 15; + name = "lower right twink dock"; + dir = 2; + dwidth = 2 + }, +/turf/template_noop, +/area/template_noop) +"ya" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access = list(150,10); + dir = 8 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"yd" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/line, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"yf" = ( +/obj/effect/turf_decal/corner/opaque/orange{ dir = 10 }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/wall{ - name = "flashlight closet"; - pixel_y = 30 - }, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"Gr" = ( -/obj/item/tank/internals/plasma/full, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/turf/open/floor/engine, +/area/ship/engineering/engine) +"yg" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/structure/cable/yellow{ - icon_state = "2-4" + icon_state = "1-2" }, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"yn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 }, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-4" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"yr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 }, -/turf/open/floor/circuit/green, +/obj/effect/turf_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/mono/dark, /area/ship/engineering/engine) -"Gv" = ( -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +"yy" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/light/directional/west, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Gy" = ( -/obj/structure/chair/office{ +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"yz" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"GT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"GW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"yB" = ( /obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/orange/visible, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/ship/engineering) -"Hf" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "sbccargo"; - name = "Cargo Bay Blast Door" +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/plating, -/area/ship/cargo) -"Hm" = ( -/obj/machinery/shower{ - pixel_y = 19 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/turf/open/floor/engine, +/area/ship/engineering/engine) +"yF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/turf/open/floor/noslip, -/area/ship/crew/canteen) -"Hu" = ( -/obj/item/tank/internals/plasma/full, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, /obj/effect/turf_decal/industrial/warning{ - dir = 4 + dir = 8 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"yI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/turf/open/floor/circuit/green, -/area/ship/engineering/engine) -"HB" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/turf/open/floor/engine, -/area/ship/engineering) -"HE" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/syndicate{ - name = "syndicate toolbox"; - pixel_x = -3; - pixel_y = 5 +/obj/structure/cable/yellow{ + icon_state = "5-8" }, -/obj/item/storage/toolbox/syndicate{ - name = "syndicate toolbox" +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"yM" = ( +/obj/structure/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"HL" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm/dormtwo) +"yN" = ( +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_x = -32 }, -/obj/machinery/power/terminal{ - dir = 1 +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"yO" = ( +/obj/structure/closet/wall{ + dir = 4; + pixel_x = -28; + name = "uniform closet" + }, +/obj/item/clothing/under/syndicate/aclfgrunt, +/obj/item/clothing/under/syndicate/aclfgrunt, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/under/syndicate, +/obj/item/storage/backpack/duffelbag/syndie, +/obj/item/storage/backpack/duffelbag/syndie, +/obj/item/storage/backpack, +/obj/item/storage/backpack, +/obj/item/storage/backpack/satchel, +/obj/item/storage/backpack/satchel, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) +"yP" = ( +/obj/item/soap/syndie, +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 19 + }, +/obj/effect/turf_decal/techfloor/hole, +/obj/effect/turf_decal/techfloor/hole/right, +/turf/open/floor/plasteel/dark, +/area/ship/crew/dorm) +"yX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"HM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 + dir = 8 }, -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutters"; - pixel_x = 28; - req_access_txt = "3;150" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 26 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/carpet/red, -/area/ship/security) -"HO" = ( -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"zc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"zf" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/computer/helm{ + dir = 8; + icon_state = "computer-middle" + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"zi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/engine, -/area/ship/engineering) -"HR" = ( -/obj/item/tank/internals/plasma/full, /obj/structure/cable/yellow{ - icon_state = "1-8" + icon_state = "1-2" }, /obj/structure/cable/yellow{ icon_state = "2-8" }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"zk" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/warning, +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/machinery/advanced_airlock_controller{ + pixel_x = 25 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"zp" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 8 }, -/turf/open/floor/circuit/green, -/area/ship/engineering/engine) -"HS" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 6 +/obj/machinery/computer/crew/syndie{ + dir = 4; + icon_state = "computer-left" }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"zr" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"zs" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ship/engineering) -"HZ" = ( -/obj/structure/closet/secure_closet/wall{ - dir = 8; - icon_state = "sec_wall"; - pixel_x = 28 - }, -/obj/item/clothing/gloves/krav_maga/combatglovesplus, -/obj/item/ammo_box/magazine/m10mm/ap, -/obj/item/ammo_box/magazine/m10mm/ap, -/obj/item/melee/classic_baton/telescopic, -/obj/item/clothing/under/syndicate, -/obj/item/melee/transforming/energy/sword/saber/blue, -/turf/open/floor/carpet/red, -/area/ship/security) -"Ib" = ( -/obj/machinery/door/airlock/engineering, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering/engine) -"Ie" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/button/door{ + dir = 4; + pixel_x = -25; + name = "Engine Shutters"; + id = "twinkle_engines" }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"zy" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"If" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tech, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"zD" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, /area/ship/crew/dorm) -"Ii" = ( -/obj/machinery/door/airlock/public/glass, -/obj/effect/turf_decal/corner/transparent/bar{ +"zG" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/syndie/surgery{ + pixel_y = 4; + pixel_x = -6 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = 9; + pixel_y = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"zH" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Im" = ( -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"zI" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/industrial/warning{ +/turf/open/floor/engine, +/area/ship/engineering/engine) +"zJ" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/industrial/stand_clear/red{ dir = 8 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"Ip" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"zK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, -/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/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"zO" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/obj/effect/turf_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/closet/firecloset/wall{ + dir = 1; + pixel_y = -28 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"Iz" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"zP" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 6 }, -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/sign/poster/official/moth{ + pixel_x = 32 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"zQ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "1-8" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/obj/structure/cable/yellow{ + icon_state = "1-5" }, /turf/open/floor/engine, /area/ship/engineering/engine) -"IC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/closet/secure_closet/engineering_personal{ - req_access = list(150) - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"IN" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/structure/cable{ - icon_state = "4-8" +"zT" = ( +/obj/structure/sign/syndicate, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/bridge) +"zZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Af" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"Ah" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"IQ" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/industrial/stand_clear/red{ dir = 8 }, -/obj/effect/spawner/lootdrop/maintenance/eight, -/obj/structure/closet/crate, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"IT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "syndikitchen" +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Ai" = ( +/obj/machinery/air_sensor/atmos/toxin_tank, +/turf/open/floor/engine/plasma, +/area/ship/engineering/atmospherics) +"Ao" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + layer = 3.1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + pixel_x = -7; + dir = 8; + pixel_y = 8; + id = "twinkle_bridge"; + name = "Bridge Shutters"; + desc = "A remote control switch for closing the bridge shutters. Perfect for windshield moths!" }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/obj/machinery/button/door{ + pixel_x = -7; + dir = 8; + pixel_y = -4; + id = "twinkle_external"; + name = "External Shutters"; + desc = "A remote control switch for shutters that block external view of the ship. Fauna won't see you through those!" }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Jg" = ( -/obj/effect/turf_decal/corner/transparent/bar{ +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Ap" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Jh" = ( +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"Aq" = ( /obj/machinery/atmospherics/pipe/manifold/purple/visible{ - dir = 1 + dir = 4 }, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Jk" = ( -/obj/machinery/power/terminal{ - dir = 1 +"At" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Ax" = ( /obj/structure/cable/yellow{ - icon_state = "0-2" + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"Js" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 1 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Jy" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -28 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/engineering) -"JB" = ( -/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 = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Ay" = ( +/obj/effect/turf_decal/corner/opaque/orange{ dir = 10 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"JC" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/ship/engineering/atmospherics) -"JD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"AB" = ( +/obj/effect/turf_decal/atmos/nitrogen{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"JI" = ( -/obj/machinery/light, -/obj/machinery/vending/security/marine/syndicate{ - all_items_free = 1 +/turf/open/floor/engine/n2, +/area/ship/engineering/atmospherics) +"AK" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 6 }, -/turf/open/floor/carpet/nanoweave/red, +/turf/open/floor/mineral/plastitanium/red, /area/ship/security) -"JJ" = ( -/obj/structure/cable{ - icon_state = "4-8" +"AL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"JP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/door/airlock/engineering/glass/critical{ + name = "Supermatter"; + req_access = list(150,10); + dir = 4 }, /turf/open/floor/engine, -/area/ship/engineering) -"JQ" = ( -/obj/effect/turf_decal/industrial/hatch/yellow, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"JV" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"JZ" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/area/ship/engineering/engine) +"AQ" = ( +/obj/structure/chair{ + dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"Kd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"Kk" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"Kn" = ( -/obj/structure/sign/departments/engineering{ - pixel_x = -32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/obj/machinery/camera/autoname{ + dir = 5 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"KA" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/medical) -"KG" = ( +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"AW" = ( /obj/effect/turf_decal/industrial/warning{ - dir = 4 + dir = 1 }, /turf/open/floor/pod/dark, /area/ship/cargo) -"KQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 +"Bc" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Bq" = ( +/obj/structure/chair/stool/bar{ dir = 1 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"KV" = ( -/obj/machinery/button/door{ - id = "sbccargo"; - name = "Blast Door Control"; - pixel_x = 5; - pixel_y = 23 - }, -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 5 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"Lb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"Lc" = ( -/obj/machinery/airalarm/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"Lf" = ( -/obj/machinery/light{ +/obj/machinery/camera/autoname{ dir = 8 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/ship/engineering) -"Lk" = ( -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"Bs" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/turf/open/floor/plating, -/area/ship/bridge) -"Ln" = ( -/obj/machinery/door/firedoor/border_only{ +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"BB" = ( +/obj/structure/reflector/box{ + anchored = 1; dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/obj/structure/cable{ +/turf/open/floor/engine, +/area/ship/engineering/engine) +"BE" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/warning, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"BG" = ( +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Lr" = ( -/obj/structure/railing, -/obj/structure/railing{ +/obj/structure/sign/poster/contraband/c20r{ + pixel_y = 32 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ dir = 1 }, -/turf/open/floor/plating/airless, -/area/ship/external) -"Lw" = ( -/obj/machinery/stasis, -/obj/machinery/defibrillator_mount/loaded{ - pixel_x = 32 +/obj/structure/rack, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 9 }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"LA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output, -/turf/open/floor/engine/o2, -/area/ship/engineering/atmospherics) -"LB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"LD" = ( -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"LG" = ( -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"LO" = ( -/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/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/structure/catwalk/over, -/turf/open/floor/plating, -/area/ship/cargo) -"LQ" = ( -/obj/machinery/door/airlock/grunge{ - name = "Bathroom"; - req_one_access_txt = "150" +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"BK" = ( +/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/effect/turf_decal/industrial/warning, /obj/machinery/door/firedoor/border_only{ dir = 1 }, /obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"LR" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/eight, -/obj/machinery/light{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"BL" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 6 }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"LS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/camera/autoname{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"BM" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 8 }, -/obj/structure/catwalk/over, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"BP" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/obj/structure/closet/firecloset/wall{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"BS" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ + dir = 4 + }, +/turf/open/floor/engine/plasma, +/area/ship/engineering/atmospherics) +"BT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 1 }, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"LU" = ( /obj/structure/table/reinforced, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -2; - pixel_y = 6 +/obj/machinery/recharger, +/obj/item/gun/energy/e_gun/mini{ + desc = "A small energy gun commonly used by syndicate officers, produced by Cybersun. It has two settings: disable and kill."; + name = "cybersun officer pistol" }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -2 +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 4 }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 6 +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"BU" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"BV" = ( +/obj/machinery/atmospherics/components/binary/passive_gate/layer4{ + hide = 1 }, -/turf/open/floor/plasteel/patterned/ridged, -/area/ship/engineering) -"Mc" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/effect/turf_decal/corner/opaque/white{ +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Cc" = ( +/obj/machinery/power/emitter/welded{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/effect/turf_decal/industrial/warning{ + dir = 9 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Me" = ( -/obj/effect/turf_decal/atmos/oxygen, -/turf/open/floor/engine/o2, -/area/ship/engineering/atmospherics) -"Mg" = ( -/obj/effect/turf_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) -"Mk" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - id_tag = "starfurybcsupermatter_bolt"; - name = "Supermatter Chamber"; - rad_insulation = 0.1; - req_access_txt = "150" +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/ship/engineering/engine) -"Ms" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"Cl" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 10 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"Cp" = ( +/obj/machinery/telecomms/processor/preset_three{ + network = "synd_commnet" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Mz" = ( +/turf/open/floor/circuit/red, +/area/ship/engineering/communications) +"Cw" = ( /obj/effect/turf_decal/industrial/warning{ - dir = 8 + dir = 1 }, -/obj/structure/table, -/obj/item/storage/firstaid, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"ME" = ( -/obj/machinery/door/window{ - req_access_txt = "3;150" +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"MF" = ( -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"MG" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"MO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/camera/autoname{ dir = 6 }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/cryopod, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"MR" = ( -/obj/structure/chair{ - dir = 4 +/turf/open/floor/engine, +/area/ship/engineering/engine) +"CF" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "twinkle_surgshutters" }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"MS" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/turf/open/floor/plating, +/area/ship/medical/surgery) +"CG" = ( +/obj/structure/sign/syndicate, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/cryo) +"CH" = ( +/obj/structure/reflector/box{ + anchored = 1; dir = 4 }, -/obj/structure/curtain/bounty, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Nc" = ( /obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/syndicate{ - auto_name = 1; - dir = 1; - pixel_y = 25 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, +/obj/effect/turf_decal/industrial/warning, /turf/open/floor/engine, /area/ship/engineering/engine) -"Nl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"No" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/power/terminal{ - dir = 8 +"CJ" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "0-4" +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"CQ" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/security) +"CR" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"Nt" = ( -/obj/machinery/door/airlock/engineering, -/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 + dir = 8 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"Nz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/effect/turf_decal/techfloor/orange{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/machinery/door/airlock/hatch{ + name = "Briefing"; dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"NB" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"CS" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"NE" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"NJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/light{ - dir = 8 +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 5 }, -/obj/machinery/button/door{ - dir = 4; - id = "bridgedoors"; - name = "bridge shutters"; - pixel_x = -22; - pixel_y = 9 +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"CU" = ( +/obj/machinery/light/directional/south, +/obj/structure/chair{ + dir = 1 }, -/obj/machinery/button/door{ - dir = 4; - id = "windows"; - name = "Window Shutters"; - pixel_x = -22; - pixel_y = -1 +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 1 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/tech/grid, /area/ship/bridge) -"NN" = ( +"CV" = ( /obj/effect/turf_decal/industrial/warning{ - dir = 8 + dir = 9 }, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/ship/engineering) -"NV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"Da" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad/emergency/engineering, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/engine, -/area/ship/engineering) -"NW" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/obj/machinery/light{ - dir = 4 +/area/ship/engineering/engine) +"Dh" = ( +/obj/machinery/smartfridge/bloodbank/preloaded{ + pixel_y = 32; + density = 0 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/structure/closet/wall/white/med{ + name = "medical locker"; + dir = 8; + pixel_x = 28 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 1 +/obj/item/clothing/gloves/color/latex/nitrile/evil, +/obj/item/clothing/gloves/color/latex/nitrile/evil, +/obj/item/clothing/glasses/hud/health/night, +/obj/item/clothing/glasses/hud/health/night, +/obj/item/clothing/suit/longcoat/roboblack{ + name = "syndicate medic's black longcoat" + }, +/obj/item/clothing/suit/longcoat/roboblack{ + name = "syndicate medic's black longcoat" + }, +/obj/item/clothing/under/rank/medical/doctor/red, +/obj/item/clothing/under/rank/medical/doctor/red, +/obj/item/clothing/under/syndicate/cybersun, +/obj/item/clothing/under/syndicate/cybersun, +/obj/item/storage/belt/medical/webbing, +/obj/item/storage/belt/medical/webbing, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"Dk" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"NZ" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/structure/table/reinforced, +/obj/item/geiger_counter{ + pixel_x = -4; + pixel_y = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/item/geiger_counter, +/obj/item/geiger_counter{ + pixel_x = 4; + pixel_y = -4 }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Dm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"Of" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_one_access_txt = "150"; dir = 4 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Oj" = ( -/obj/machinery/light{ - dir = 8 +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Dp" = ( +/obj/machinery/door/airlock/hatch{ + name = "Lieutenant's Office"; + req_access = list(3,150) }, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/mineral/plastitanium, /area/ship/security) -"OE" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/corner/opaque/black, -/obj/effect/turf_decal/corner/opaque/black{ +"Dt" = ( +/obj/machinery/air_sensor/atmos/air_tank, +/turf/open/floor/engine/air, +/area/ship/engineering/atmospherics) +"Dx" = ( +/obj/structure/chair{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/crew/dorm) -"OF" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"OH" = ( -/turf/open/floor/pod/dark, -/area/ship/cargo) -"ON" = ( -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"OS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"DF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/effect/turf_decal/arrows/red{ - color = "red"; - icon_state = "arrows" - }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"OT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/external) -"OX" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/power/terminal{ - dir = 1 +/obj/structure/sign/poster/official/moth/piping{ + desc = "This informational poster uses Safety Moth(TM) to tell atmospheric technicians correct types of piping to be used. Proper pipe placement prevents poor performance! It's signed by 'AspEv'."; + pixel_x = 32 }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_one_access_txt = "150"; + req_access = list(150,10) }, -/turf/open/floor/plasteel/tech, -/area/ship/cargo) -"Pe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"DQ" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 1 }, -/turf/open/floor/pod/dark, -/area/ship/crew/dorm) -"Pg" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ +/obj/effect/turf_decal/corner/opaque/orange{ dir = 10 }, -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, +/turf/open/floor/engine, /area/ship/engineering/engine) -"Pj" = ( -/obj/structure/closet/secure_closet{ - anchored = 1; - icon_state = "hos"; - name = "Captain's Locker"; - req_access_txt = "151" - }, -/obj/item/storage/lockbox/medal{ - req_access = null; - req_access_txt = "151" +"DW" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 }, -/obj/item/card/id/syndicate_command{ - access_txt = "150;151"; - desc = "The spare ID from the syndicate battlecruiser's captain himself."; - name = "captain's spare ID" +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/item/clothing/under/syndicate, -/obj/item/ammo_box/a357, -/obj/item/ammo_box/a357, -/obj/item/shield/riot/tele, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Pl" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/cable/yellow{ + icon_state = "2-4" }, /turf/open/floor/plating, -/area/ship/engineering/electrical) -"Po" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 +/area/ship/hallway/central) +"Ed" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 5 }, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - icon_state = "0-4" +/obj/machinery/airalarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"Eh" = ( +/obj/structure/chair{ + dir = 4 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"Ei" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/obj/structure/closet/emcloset/wall{ + dir = 4; + pixel_x = -28 }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"En" = ( +/obj/effect/turf_decal/industrial/warning, /turf/open/floor/engine, /area/ship/engineering/engine) -"Pq" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/obj/structure/curtain/bounty, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Pu" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/door/firedoor, -/obj/machinery/door/window{ - dir = 8; - name = "Security Desk"; - req_access_txt = "150" +"Eo" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_armory" }, -/obj/machinery/door/window{ - dir = 4; - name = "Security Desk"; - req_access_txt = "150;3" +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"Et" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"Pv" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, /turf/open/floor/engine, +/area/ship/engineering/engine) +"ED" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/dark, /area/ship/engineering) -"Pz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ +"EE" = ( +/obj/machinery/atmospherics/components/trinary/filter{ dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"EG" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ dir = 1 }, -/obj/effect/turf_decal/industrial/warning, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"PA" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/engineering/atmospherics) -"PD" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/effect/turf_decal/techfloor/orange{ - dir = 6 +/obj/machinery/button/flasher{ + pixel_x = 23; + dir = 8; + pixel_y = 6; + id = "twinkle_flash1" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"PG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/button/flasher{ + pixel_x = 23; + dir = 8; + pixel_y = -7; + id = "twinkle_flash2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ dir = 4 }, -/obj/effect/turf_decal/techfloor/orange{ +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"EH" = ( +/obj/item/trash/chips, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"EJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"PH" = ( -/obj/structure/chair/stool{ - dir = 1 +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"PI" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore{ - pixel_x = 3; - pixel_y = -3 +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"EN" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/hallway/central) +"EO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/item/storage/bag/ore, -/obj/item/t_scanner/adv_mining_scanner, -/obj/item/t_scanner/adv_mining_scanner{ - pixel_x = 3; - pixel_y = -3 +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"EQ" = ( +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"ER" = ( +/obj/machinery/air_sensor/atmos/nitrogen_tank, +/turf/open/floor/engine/n2, /area/ship/engineering/atmospherics) -"PK" = ( -/obj/structure/chair/office{ - dir = 8 +"ET" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/turf/open/floor/carpet/red, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 2 + }, +/turf/open/floor/mineral/plastitanium/red, /area/ship/security) -"PN" = ( -/obj/structure/rack, -/obj/effect/turf_decal/industrial/warning{ - dir = 5 +"EU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/radiation, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Fa" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 8 }, -/obj/item/clothing/suit/space/syndicate, -/obj/item/clothing/head/helmet/space/syndicate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"Fc" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ dir = 1 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"PO" = ( -/obj/machinery/door/airlock/engineering, -/obj/machinery/door/firedoor/border_only, +/obj/structure/rack, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Fh" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, /obj/machinery/door/firedoor/border_only{ - dir = 1 + dir = 8 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/crew/dorm) -"PR" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "starfurybcsupermatter"; - rad_insulation = 0.1 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/engineering/engine) -"PS" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/door/airlock/hatch{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Fi" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" }, -/turf/open/floor/engine, -/area/ship/engineering) -"PV" = ( -/obj/machinery/door/poddoor{ - id = "armory" +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm) +"Fl" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"Qb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/firecloset/wall{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Fm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/ship/engineering) -"Qc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"Qf" = ( +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"Fq" = ( /obj/structure/cable/yellow{ - icon_state = "1-4" + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Fr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, -/area/ship/engineering/electrical) -"Qk" = ( +/area/ship/hallway/central) +"Fs" = ( /obj/effect/turf_decal/industrial/warning{ dir = 4 }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, /obj/machinery/door/firedoor/border_only{ - dir = 4 + dir = 8 }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"Qn" = ( -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"Qr" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"Qt" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/sign/poster/contraband/space_cola{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4 +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"Ft" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 }, /turf/open/floor/engine, -/area/ship/engineering) -"Qv" = ( -/obj/machinery/light, -/obj/effect/turf_decal/borderfloor{ - dir = 8 +/area/ship/engineering/engine) +"Fu" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/effect/turf_decal/corner/opaque/red, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"QF" = ( -/obj/machinery/atmospherics/components/binary/volume_pump, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"QJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"QM" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +/area/ship/bridge) +"FE" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/surgery{ + pixel_y = 7; + pixel_x = -3 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/item/storage/backpack/duffelbag/syndie/surgery{ + pixel_y = 4; + pixel_x = 6 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/obj/effect/turf_decal/trimline/opaque/syndiered/line, +/turf/open/floor/plasteel/dark, +/area/ship/medical/surgery) +"FI" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/ship/crew/canteen) -"QN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"QO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/structure/table/wood/reinforced, -/obj/machinery/photocopier/faxmachine/longrange, -/turf/open/floor/mineral/plastitanium, /area/ship/crew/dorm) -"QP" = ( -/obj/effect/turf_decal/industrial/warning{ +"FS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ dir = 5 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/corner/opaque/syndiered, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"FV" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_bridge"; dir = 4 }, -/turf/open/floor/engine, -/area/ship/engineering) -"QR" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) +"FW" = ( +/obj/machinery/chem_dispenser, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/orange/full, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"Gg" = ( +/obj/effect/decal/cleanable/glass/plasma{ + pixel_y = -6 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/structure/sign/departments/restroom{ - pixel_y = 32 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/obj/machinery/light{ - dir = 1 +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Gi" = ( +/obj/structure/sign/directions/medical{ + pixel_y = 6 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Rp" = ( -/obj/machinery/firealarm{ +/obj/structure/sign/directions/command{ dir = 4; - pixel_x = 26 + pixel_y = -4 + }, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/medical) +"Gj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Gk" = ( +/obj/item/clothing/gloves/krav_maga/combatglovesplus, +/obj/item/ammo_box/magazine/m10mm/ap, +/obj/item/ammo_box/magazine/m10mm/ap, +/obj/item/clothing/head/HoS/beret/syndicate, +/obj/item/radio/headset/syndicate/alt/leader, +/obj/item/gun/ballistic/automatic/pistol/no_mag, +/obj/item/megaphone/sec, +/obj/item/clothing/under/syndicate/combat, +/obj/machinery/light/directional/north, +/obj/item/clothing/shoes/combat, +/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/structure/closet/secure_closet{ + anchored = 1; + icon_state = "syndicate"; + name = "lieutenant locker"; + req_access = list(3,150) }, /turf/open/floor/mineral/plastitanium/red, /area/ship/security) -"Rt" = ( -/obj/machinery/light/small{ - dir = 8 +"Gm" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Gn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + min_temperature = 1; + target_temperature = 1 }, -/obj/structure/cable{ +/turf/open/floor/plasteel/tech/grid, +/area/ship/engineering/engine) +"Go" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/yellow{ icon_state = "1-4" }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"Gq" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/external/dark) +"Gs" = ( +/obj/structure/table, +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/item/roller{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/roller{ + pixel_x = 7; + pixel_y = 7 + }, /turf/open/floor/plasteel/dark, -/area/ship/engineering) -"Ru" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/components/binary/volume_pump{ +/area/ship/medical) +"Gv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/engine, -/area/ship/engineering) -"Ry" = ( -/obj/machinery/light{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Gx" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Gy" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"Rz" = ( +/area/ship/hallway/central) +"GC" = ( /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-8" }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"GD" = ( +/obj/structure/rack, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"GE" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"RB" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"RD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"GG" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 +/obj/structure/sign/poster/contraband/aclf{ + pixel_y = -32 }, -/obj/structure/cable{ +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"GH" = ( +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"RF" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/obj/effect/turf_decal/borderfloor/full, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"RK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/structure/catwalk/over, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, +/obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, -/area/ship/crew/dorm) -"RR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/area/ship/hallway/central) +"GM" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 + dir = 8 }, -/obj/effect/turf_decal/techfloor/orange{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"RT" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"GN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/ship/engineering) -"RW" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"GO" = ( /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/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 }, /turf/open/floor/engine, -/area/ship/engineering) -"Sf" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus{ - pixel_x = 3; - pixel_y = 2 +/area/ship/engineering/engine) +"GU" = ( +/obj/effect/turf_decal/rechargefloor, +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/light/small{ +/obj/effect/turf_decal/corner/opaque/syndiered/half, +/obj/machinery/light/directional/north, +/obj/structure/mecha_wreckage/ripley/deathripley, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"GZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/opaque/syndiered/line, +/obj/structure/closet/crate/freezer, +/obj/item/bodypart/chest/robot, +/obj/item/bodypart/leg/right/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/leg/left/robot, +/obj/item/bodypart/l_arm/robot, +/obj/item/organ/ears/cat, +/obj/item/organ/tail/cat, +/obj/item/organ/liver/cybernetic/tier2, +/obj/item/organ/lungs/cybernetic/tier2, +/obj/item/organ/heart/cybernetic/tier2, +/obj/item/organ/ears/cybernetic, +/turf/open/floor/plasteel/dark, +/area/ship/medical/surgery) +"Hd" = ( +/obj/structure/railing{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/black, -/obj/effect/turf_decal/corner/opaque/black{ +/obj/structure/railing, +/obj/effect/turf_decal/industrial/warning{ dir = 8 }, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/ship/crew/dorm) -"Sh" = ( -/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 +/turf/open/floor/plating, +/area/ship/external/dark) +"He" = ( +/obj/structure/toilet{ + dir = 4 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/obj/structure/sink{ + dir = 8; + pixel_x = 12 }, -/turf/open/floor/plasteel/mono/dark, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, /area/ship/crew/dorm) -"Sk" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 9 +"Hj" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Hk" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/visible{ dir = 8 }, -/turf/open/floor/engine, -/area/ship/engineering) -"Sl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/industrial/outline, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) -"Sm" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"So" = ( -/obj/machinery/light{ +/obj/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"Sq" = ( -/obj/effect/turf_decal/industrial/outline, -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"Sr" = ( -/obj/machinery/light{ +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Ht" = ( +/obj/machinery/telecomms/receiver/preset_right{ + freq_listening = list(1347,1359,1213,1353); + network = "synd_commnet" + }, +/turf/open/floor/circuit/red, +/area/ship/engineering/communications) +"Hu" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"HF" = ( +/obj/structure/table, +/obj/item/wrench/medical{ + pixel_y = 2 + }, +/obj/item/crowbar, +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"HG" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 1 }, -/turf/open/floor/carpet/red, +/turf/open/floor/mineral/plastitanium/red, /area/ship/security) -"Sv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +"HH" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/structure/table, +/obj/item/clothing/head/warden/drill{ + name = "lieutenant's campaign hat"; + desc = "A special armored campaign hat with the Syndicate insignia emblazoned on it. Uses reinforced fabric to offer sufficient protection."; + pixel_x = 2; + pixel_y = -7 }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 +/obj/item/reagent_containers/food/snacks/donut/choco{ + pixel_x = 3; + pixel_y = 7 }, -/obj/effect/turf_decal/corner/opaque/red, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"Sw" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -7; + pixel_y = 6 }, -/obj/machinery/light/small, -/turf/open/floor/plating, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"HI" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) -"Sz" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor{ - id = "windows"; - name = "Cargo Bay Blast Door" +"HL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/plating, -/area/ship/crew/dorm) -"SA" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/ship/engineering) -"SF" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/catwalk/over/plated_catwalk/dark, /turf/open/floor/plating, -/area/ship/bridge) -"SL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ +/area/ship/hallway/central) +"HQ" = ( +/obj/structure/chair{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 +/obj/item/canvas/twentythreeXtwentythree{ + name = "Battleplan Board"; + desc = "Remember, no plan survives the battle."; + pixel_x = -25; + pixel_y = 5 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"HY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"SM" = ( -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering) -"SO" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"SR" = ( -/obj/structure/fireaxecabinet{ - pixel_x = -32 +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"SZ" = ( -/obj/effect/turf_decal/techfloor/orange{ +/obj/machinery/camera/autoname{ dir = 6 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Tb" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin/carbon, -/obj/item/storage/box/matches, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/pen/fountain/captain, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Td" = ( -/obj/structure/chair{ - dir = 8 +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Ib" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + req_one_access_txt = "150" }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/mass_driver{ + dir = 4; + id = "twinkle_rightmassdriver" }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Te" = ( -/obj/structure/toilet{ - dir = 4 +/obj/item/trash/can/food/peaches/maint, +/turf/open/floor/plasteel/elevatorshaft, +/area/ship/bridge) +"Id" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Ie" = ( +/obj/effect/turf_decal/trimline/opaque/orange/line{ + dir = 1 }, +/obj/effect/turf_decal/trimline/opaque/orange/filled/line, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"Th" = ( -/obj/structure/table/reinforced, -/obj/item/documents/syndicate, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Tr" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +/area/ship/medical) +"If" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/structure/chair/stool/bar, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Tx" = ( -/obj/machinery/suit_storage_unit/syndicate{ - name = "captain's suit storage unit"; - suit_type = /obj/item/clothing/suit/space/hardsuit/syndi/elite - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"TK" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access = list(150) +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Ig" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"TN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"TO" = ( -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"TR" = ( -/obj/structure/window/reinforced/spawner{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/corner/opaque/white{ +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"Ih" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 - }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Ii" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/structure/closet/secure_closet/freezer/kitchen/wall{ + dir = 4; + pixel_x = -28; + req_access = null + }, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/carnivore, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"TT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +"Il" = ( +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 1 + }, +/obj/effect/turf_decal/rechargefloor, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/mecha/combat/gygax/dark, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Im" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Ir" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Iw" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"IB" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 2 }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"TV" = ( -/obj/effect/turf_decal/industrial/warning{ +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"IC" = ( +/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/cable{ +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/engine, -/area/ship/engineering) -"TX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/machinery/door/airlock/hatch{ + name = "Security" }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/effect/turf_decal/borderfloor{ - dir = 8 +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"ID" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 }, -/obj/effect/turf_decal/corner/opaque/red, -/turf/open/floor/plasteel/white, -/area/ship/medical/surgery) -"Ui" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/obj/machinery/camera/autoname{ + dir = 6 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"UF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/obj/item/reagent_containers/spray/syndicate{ + pixel_y = 11; + pixel_x = -2 }, -/turf/open/floor/engine, -/area/ship/engineering) -"UI" = ( -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"UM" = ( +/turf/open/floor/wood/walnut, +/area/ship/crew/janitor) +"IE" = ( +/obj/item/tank/internals/plasma/full, /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/turf_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/circuit/green, +/area/ship/engineering/engine) +"IH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ dir = 8 }, -/turf/open/floor/engine, -/area/ship/engineering) -"UP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/table/wood/reinforced, -/obj/item/megaphone/command, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"US" = ( -/obj/machinery/light/small{ +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"IN" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"UY" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/ship/crew/dorm) -"UZ" = ( /obj/effect/turf_decal/industrial/warning, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"Va" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - min_temperature = 1; - target_temperature = 1 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Vd" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tech/techmaint, -/area/ship/engineering) -"Vn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/light, -/turf/open/floor/pod/dark, -/area/ship/crew/dorm) -"Vt" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"IT" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/engine, -/area/ship/engineering) -"Vz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"VB" = ( -/obj/machinery/door/firedoor, +/area/ship/engineering/engine) +"IU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/door/poddoor{ - id = "armory" +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"VD" = ( -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"VG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/carpet/red, -/area/ship/security) -"VJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"VU" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"IV" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) }, -/obj/structure/tank_dispenser/plasma, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"VW" = ( -/obj/machinery/door/airlock/engineering, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"Jd" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"Jf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering/engine) -"VZ" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "starfurybc_massleft" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/ship/bridge) -"Wc" = ( -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/bridge) -"Wd" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"Jh" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 6 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"We" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = -4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/medical) +"Jk" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "twinkle_sm" }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/catwalk/over, +/obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plating, -/area/ship/cargo) -"Wh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +/area/ship/engineering/engine) +"Jm" = ( +/obj/item/tank/internals/plasma/full, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/circuit/green, +/area/ship/engineering/engine) +"Jr" = ( +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/vomit/old{ + pixel_y = -6; + pixel_x = -6 }, -/turf/open/floor/mineral/plastitanium/red, -/area/ship/security) -"Wi" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/components/trinary/filter{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/turf/open/floor/engine, -/area/ship/engineering) -"Wp" = ( +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Jw" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/effect/turf_decal/spline/fancy/opaque/black/corner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Jy" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"Jz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/structure/sign/warning/radiation{ + pixel_y = 32 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/effect/turf_decal/trimline/opaque/orange/filled/warning, +/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{ + dir = 1 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/machinery/door/airlock/external{ + req_access = list(150,10); dir = 4 }, -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/turf/open/floor/plasteel/mono/dark, -/area/ship/cargo) -"Wx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"JA" = ( +/obj/effect/turf_decal/industrial/warning/corner, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "2-4" }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Wy" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/ship/engineering) -"WD" = ( -/obj/effect/turf_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"WI" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 - }, +/turf/open/floor/engine, /area/ship/engineering/engine) -"WR" = ( -/obj/machinery/door/airlock/public/glass, -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 +"JE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + dir = 5 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"JH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"WT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"JL" = ( +/obj/machinery/stasis, +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = 32 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"JN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"JT" = ( +/obj/docking_port/stationary{ + height = 15; + width = 15; + name = "main twink dock"; + dwidth = 4 }, -/obj/effect/turf_decal/industrial/warning, -/obj/effect/turf_decal/industrial/warning{ - dir = 1 +/turf/template_noop, +/area/template_noop) +"JY" = ( +/obj/structure/bed, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = 32 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/storage/box/syndie_kit/sleepytime, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" }, -/turf/open/floor/plasteel/mono/dark, +/obj/item/bedsheet/black, +/turf/open/floor/carpet/nanoweave/red, /area/ship/crew/dorm) -"WZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ +"Ke" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 10 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 - }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Xg" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 }, -/turf/closed/wall/r_wall/syndicate/nodiagonal{ - rad_insulation = 0.1 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/area/ship/engineering/engine) -"Xh" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Kg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Xj" = ( -/obj/effect/turf_decal/industrial/warning{ +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"Kk" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 8 }, -/turf/open/floor/engine, -/area/ship/engineering) -"Xk" = ( -/obj/machinery/power/apc/syndicate{ - auto_name = 1; - dir = 1; - pixel_y = 25 +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 }, -/obj/machinery/power/terminal{ - dir = 1 +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Ko" = ( +/obj/effect/turf_decal/corner/opaque/orange/three_quarters, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable{ - icon_state = "0-8" + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Xl" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/item/clothing/under/syndicate/sniper, -/obj/item/clothing/head/collectable/tophat, +/obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/plasteel/dark, -/area/ship/crew/canteen) -"Xr" = ( -/obj/structure/rack, -/obj/effect/turf_decal/industrial/warning{ - dir = 4 - }, -/obj/item/clothing/suit/space/syndicate/blue, -/obj/item/clothing/head/helmet/space/syndicate/blue, +/area/ship/engineering) +"Kq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Xu" = ( -/turf/template_noop, -/area/template_noop) -"Xv" = ( -/obj/machinery/air_sensor/atmos/toxin_tank, -/obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/engine/plasma, -/area/ship/engineering/atmospherics) -"Xy" = ( +/obj/effect/turf_decal/radiation, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Ks" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/corner/opaque/orange/full, /turf/open/floor/plasteel/dark, -/area/ship/bridge) -"XA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/area/ship/medical) +"Ku" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/tech, -/area/ship/crew/dorm) -"XD" = ( -/obj/effect/turf_decal/corner/transparent/bar{ - dir = 1 - }, -/obj/effect/turf_decal/corner/transparent/bar, +/obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Kw" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_external" }, +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) +"Kx" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/machinery/door/window/eastleft, /turf/open/floor/plasteel, /area/ship/crew/canteen) -"XK" = ( -/obj/structure/cable{ - icon_state = "1-2" +"Ky" = ( +/obj/structure/chair/stool/bar{ + dir = 1 }, -/turf/open/floor/engine, -/area/ship/engineering) -"XM" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks{ +/obj/effect/turf_decal/corner/opaque/syndiered/border{ dir = 1 }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/turf/open/floor/plasteel, /area/ship/crew/canteen) -"XR" = ( -/obj/effect/turf_decal/industrial/warning{ - dir = 8 +"Kz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"XZ" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/machinery/atmospherics/components/trinary/filter{ +/obj/machinery/button/door{ + pixel_y = -2; + name = "Surgery Shutters"; + id = "twinkle_surgshutters"; + pixel_x = 23; dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/ship/engineering) -"Ya" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/turf/open/floor/plating, -/area/ship/engineering/electrical) -"Yj" = ( -/obj/effect/turf_decal/corner/transparent/bar{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/trimline/opaque/syndiered/line, +/turf/open/floor/plasteel/dark, +/area/ship/medical/surgery) +"KA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/industrial/warning, +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/effect/turf_decal/corner/transparent/bar, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/door/airlock/hatch{ + name = "Cargo Bay" }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"Yp" = ( -/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{ + dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"Ys" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/mono/dark, -/area/ship/engineering) -"Yt" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ +/turf/open/floor/pod/dark, +/area/ship/cargo) +"KB" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/corner/opaque/syndiered{ dir = 6 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"Yu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/computer/camera_advanced{ + dir = 4; + icon_state = "computer-right"; + icon_keyboard = "syndie_key" + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"Yw" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics"; - req_one_access_txt = "150" +"KD" = ( +/obj/structure/table, +/obj/machinery/button/massdriver{ + pixel_x = 23; + dir = 8; + pixel_y = -10; + id = "twinkle_rightmassdriver" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/button/door{ + pixel_x = 26; + dir = 8; + id = "twinkle_rightmassdriver" }, -/turf/open/floor/plasteel/dark, -/area/ship/engineering/atmospherics) -"Yy" = ( -/obj/structure/table/reinforced, -/obj/item/wrench/medical, -/obj/item/crowbar, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -3; - pixel_y = -4 +/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster{ + pixel_x = -4 }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4 +/obj/effect/turf_decal/corner/opaque/syndiered/half, +/obj/effect/turf_decal/techfloor{ + dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +/obj/item/clothing/glasses/hud/diagnostic{ + pixel_y = -3; + pixel_x = 9 }, -/obj/effect/turf_decal/corner/opaque/red/diagonal, -/turf/open/floor/plasteel/white, -/area/ship/medical) -"YC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname{ + dir = 6 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"KF" = ( /obj/structure/table/wood/reinforced, -/obj/item/flashlight, -/turf/open/floor/mineral/plastitanium, -/area/ship/crew/dorm) -"YG" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 1 +/obj/item/disk/nuclear/fake/obvious{ + pixel_y = 5; + pixel_x = 6 }, -/obj/machinery/door/window/eastleft{ - dir = 1 +/obj/item/book/manual/nuclear{ + pixel_x = -8 }, -/turf/open/floor/plating, -/area/ship/engineering/atmospherics) -"YM" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/engineering/electrical) -"YN" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/engineering) -"YW" = ( -/obj/machinery/atmospherics/components/binary/volume_pump{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/office) +"KI" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ dir = 1 }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/engine, -/area/ship/engineering/engine) -"YY" = ( -/obj/machinery/door/window/eastright{ - dir = 8; - req_one_access_txt = "150" +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"KJ" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"KK" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"KM" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 }, -/obj/effect/turf_decal/corner/opaque/white{ +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"KQ" = ( +/obj/effect/turf_decal/industrial/warning{ dir = 1 }, -/obj/effect/turf_decal/corner/opaque/white{ - dir = 2 +/obj/effect/turf_decal/industrial/warning, +/obj/machinery/door/airlock/hatch{ + name = "Cargo Bay" }, -/turf/open/floor/plasteel, -/area/ship/crew/canteen) -"YZ" = ( -/obj/structure/chair{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"KU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/light{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"La" = ( +/obj/structure/chair/stool{ dir = 8 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/crew/dorm) -"Zc" = ( -/obj/structure/closet/secure_closet/brig{ - req_access = null; - req_access_txt = "3;150" +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Lp" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access = list(150,10); dir = 4 }, -/turf/open/floor/carpet/nanoweave/red, -/area/ship/security) -"Ze" = ( -/obj/machinery/light/floor, -/turf/open/floor/pod/dark, -/area/ship/cargo) -"Zf" = ( -/obj/machinery/light/small{ - dir = 1 +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Ls" = ( +/obj/structure/chair{ + dir = 4 }, -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, +/obj/item/canvas/twentythreeXtwentythree{ + name = "Battleplan Board"; + desc = "Remember, no plan survives the battle."; + pixel_x = -25; + pixel_y = -1 + }, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"LF" = ( +/obj/effect/turf_decal/atmos/air{ + dir = 8 + }, +/turf/open/floor/engine/air, /area/ship/engineering/atmospherics) -"Zg" = ( -/obj/structure/cable{ +"LG" = ( +/obj/machinery/door/airlock/hatch{ + name = "Restroom" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"LH" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"LJ" = ( +/obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/techfloor/orange{ - dir = 4 +/obj/structure/closet/secure_closet/armory1{ + populate = 0; + icon_state = "syndicate" }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"Zj" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/suit/armor/vest/bulletproof, +/obj/item/clothing/suit/armor/vest/bulletproof, +/obj/item/clothing/suit/armor/vest/bulletproof, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"LT" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/structure/sign/poster/contraband/atmosia_independence{ + pixel_x = -32 }, -/obj/machinery/door/firedoor/border_only{ +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/communications) +"LX" = ( +/obj/machinery/power/shuttle/engine/electric{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating/airless, +/area/ship/external/dark) +"Mb" = ( +/obj/effect/turf_decal/atmos/oxygen{ dir = 8 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"Mk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/shieldgen{ + anchored = 1; + req_access = list(150) }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/corner/opaque/syndiered/bordercee{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"Zo" = ( +"Mn" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"Mo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, /turf/open/floor/plating, /area/ship/engineering/atmospherics) -"Zq" = ( +"Mq" = ( +/obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ icon_state = "1-2" }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Mw" = ( +/obj/effect/turf_decal/industrial/caution/red, +/obj/effect/decal/cleanable/shreds{ + pixel_y = -9; + pixel_x = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"MC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"MK" = ( +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"ML" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_external" + }, +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"MP" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/airalarm/directional/north, /turf/open/floor/plasteel/dark, /area/ship/bridge) -"Zs" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +"MQ" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/engine) +"MU" = ( +/obj/machinery/telecomms/bus/preset_three{ + network = "synd_commnet"; + freq_listening = list(1213,1353,1459) + }, +/turf/open/floor/circuit/red, +/area/ship/engineering/communications) +"MZ" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_one_access_txt = "150"; + req_access = list(150,10); + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Na" = ( +/obj/effect/turf_decal/industrial/warning, /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/carpet/nanoweave/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Nj" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + req_access = list(3,150) + }, +/turf/open/floor/mineral/plastitanium, /area/ship/security) -"Zv" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/bridge) -"Zw" = ( -/obj/machinery/light{ +"Nm" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine/longrange, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/mineral/plastitanium, /area/ship/bridge) -"Zy" = ( -/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 +"No" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/machinery/holopad/emergency, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/door/airlock/hatch{ - name = "Syndicate Ship Airlock"; - req_one_access_txt = "150" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"Nr" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"NC" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 }, -/turf/open/floor/plasteel/dark, -/area/ship/bridge) -"ZC" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 28 +/turf/open/floor/plasteel/tech, +/area/ship/crew/office) +"NE" = ( +/obj/structure/sign/poster/contraband/bulldog{ + pixel_y = 32 }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/techfloor/orange{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plasteel/tech/grid, -/area/ship/engineering) -"ZF" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ship/crew/canteen) +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"NF" = ( +/obj/structure/closet/emcloset/wall{ + dir = 4; + pixel_x = -28 + }, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/effect/turf_decal/trimline/opaque/syndiered/warning, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"NI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"NK" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"NL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"NO" = ( +/obj/machinery/door/window/eastleft{ + name = "Engine Access" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters{ + id = "twinkle_engines"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"NS" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/item/clothing/under/suit/waiter/syndicate, +/obj/item/circuitboard/machine/deep_fryer, +/obj/item/circuitboard/machine/processor, +/obj/item/circuitboard/machine/gibber, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"NT" = ( +/obj/machinery/button/door{ + pixel_y = -10; + name = "Cargo Doors"; + id = "twinkle_cargo"; + pixel_x = 23; + dir = 8; + req_access = list(150) + }, +/obj/machinery/button/shieldwallgen{ + pixel_y = -1; + pixel_x = 22; + id = "twinkle_holobay"; + dir = 8 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"Oc" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Od" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Oj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"On" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"Op" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Ot" = ( +/obj/machinery/shieldgen{ + anchored = 1; + req_access = list(150) + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"Ow" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/orange/three_quarters{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Oz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"OG" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"OK" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"ON" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm/dormtwo) +"OP" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/orange/visible, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"OS" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 1 + }, +/obj/item/trash/pistachios, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"OY" = ( +/obj/structure/closet/secure_closet/brig/wall{ + pixel_y = 28; + req_access = list(3,150) + }, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 6 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"OZ" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Pa" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 6 + }, +/obj/machinery/computer/secure_data/laptop{ + dir = 8; + pixel_y = 6; + pixel_x = 2 + }, +/obj/structure/table, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"Pb" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"Pd" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Pe" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 4 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Pn" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/opaque/syndiered/warning, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"Pv" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 1 + }, +/obj/structure/table/optable, +/obj/machinery/camera/autoname{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/ship/medical/surgery) +"PA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"PB" = ( +/obj/machinery/door/airlock/hatch{ + name = "Mech Launcher #1"; + req_access = list(150); + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"PE" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/visible{ + dir = 1 + }, +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"PN" = ( +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"PQ" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"PY" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dorms" + }, +/obj/effect/turf_decal/corner/transparent/bar{ + dir = 5 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"Qa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"Qd" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/item/stack/sheet/mineral/plasma/twenty, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"Qg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + name = "Surgery"; + req_one_access_txt = "150"; + req_access = list(150,5) + }, +/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/syndiered/line, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/ship/medical/surgery) +"Qk" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Ql" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"Qv" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"Qx" = ( +/obj/structure/closet/secure_closet/brig/wall{ + pixel_y = 28; + req_access = list(3,150) + }, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"QD" = ( +/obj/machinery/door/window/eastright{ + name = "Engine Access" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/shuttle/precharged{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "twinkle_engines"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"QE" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_bridge" + }, +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/bridge) +"QF" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/dorm/dormtwo) +"QI" = ( +/obj/machinery/suit_storage_unit/syndicate{ + name = "captain's suit storage unit"; + suit_type = /obj/item/clothing/suit/space/hardsuit/syndi/elite + }, +/obj/structure/sign/poster/contraband/have_a_puff{ + pixel_x = -32 + }, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm/dormtwo) +"QR" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/structure/table/wood, +/obj/item/storage/photo_album/syndicate{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/camera{ + pixel_x = -2 + }, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"QT" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"QX" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/techfloor, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"QY" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/sign/poster/official/moth/hardhats{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"Rc" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Rh" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Rj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/light/directional/east, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-5" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Rl" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering) +"Ru" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Rv" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"Ry" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/sign/poster/syndicate/random{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/ship/crew/janitor) +"RA" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"RB" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced, +/obj/item/kitchen/knife, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"RC" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/office) +"RE" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/light/directional/south, +/obj/machinery/telecomms/server/presets/syndicate{ + network = "synd_commnet"; + freq_listening = list(1213,1459,1353) + }, +/turf/open/floor/circuit/red, +/area/ship/engineering/communications) +"RG" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/hypospray/medipen/penacid{ + pixel_y = 8 + }, +/obj/item/reagent_containers/hypospray/medipen/penacid{ + pixel_y = 4 + }, +/obj/item/reagent_containers/hypospray/medipen/penacid, +/obj/item/reagent_containers/hypospray/medipen/penacid{ + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"RT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/shieldgen{ + anchored = 1; + req_access = list(150) + }, +/obj/effect/turf_decal/corner/opaque/syndiered/bordercee{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"RU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"RW" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"Sa" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Sb" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"Sc" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/medical/surgery) +"Sd" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 1 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Sg" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Si" = ( +/obj/machinery/vending/security/marine/syndicate, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Sj" = ( +/obj/machinery/vending/boozeomat/syndicate_access, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"Sl" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"Sp" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/turf_decal/corner/opaque/orange/full, +/obj/machinery/shieldgen{ + anchored = 1; + req_access = list(150) + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"Sr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"Sv" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_one_access_txt = "150"; + req_access = list(150,10); + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-10" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Sy" = ( +/obj/structure/table/wood, +/obj/item/pizzabox/pineapple{ + pixel_y = 5 + }, +/obj/item/pizzabox/pineapple{ + pixel_y = 10 + }, +/obj/item/pizzabox/pineapple{ + pixel_y = 15 + }, +/obj/item/pizzabox/pineapple{ + pixel_y = 20 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/ship/crew/canteen) +"SA" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/closet/emcloset/wall{ + dir = 8; + pixel_x = 28 + }, +/obj/item/clothing/suit/space/syndicate/black/engie, +/obj/item/clothing/head/helmet/space/syndicate/black/engie, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"SD" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half, +/obj/structure/rack, +/obj/item/mecha_ammo/scattershot, +/obj/item/mecha_ammo/scattershot{ + pixel_y = 5 + }, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot{ + pixel_y = 5; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"SI" = ( +/obj/item/trash/syndi_cakes, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"SK" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/structure/closet/cardboard{ + name = "mot containment box"; + desc = "WARNING: Contains mot." + }, +/obj/item/storage/box/syndimaid, +/obj/item/trash/cheesie, +/mob/living/carbon/human/species/moth{ + name = "Secret Box Moth"; + real_name = "Box Moth"; + gender = "female"; + faction = list("neutral","PlayerSyndicate") + }, +/obj/item/reagent_containers/food/snacks/spacetwinkie{ + pixel_y = 12; + pixel_x = 10 + }, +/obj/item/reagent_containers/food/snacks/spacetwinkie{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/snacks/spacetwinkie{ + pixel_x = 7 + }, +/obj/item/reagent_containers/food/snacks/spacetwinkie{ + pixel_x = -2; + pixel_y = 14 + }, +/obj/item/reagent_containers/food/snacks/spacetwinkie{ + pixel_y = -5; + pixel_x = -6 + }, +/obj/structure/sign/poster/contraband/syndiemoth{ + pixel_x = -32; + desc = "A Syndicate-commissioned poster that uses Syndie Moth(TM?) to tell the viewer to keep the nuclear authentication disk unsecured. It's signed by 'AspEv'." + }, +/obj/item/toy/balloon/syndicate, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"SL" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/bridge) +"SM" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/sign/warning/radiation{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"SQ" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/machinery/nuclearbomb/beer{ + desc = "It's an old, decommissioned bomb, previously used by Nuclear Operatives during the Corporate War. It seems to have a tap drilled in."; + name = "\improper nuclear fission explosive" + }, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"SR" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryo" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/crew/cryo) +"SS" = ( +/obj/structure/sign/poster/official/moth/meth{ + pixel_y = -32 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/opaque/orange/line, +/obj/effect/turf_decal/trimline/opaque/orange/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"ST" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"SV" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"SZ" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + req_access = list(3,150) + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"Tl" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 + }, +/obj/machinery/camera/autoname{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Tn" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Tq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/pen, +/turf/open/floor/plasteel/tech, +/area/ship/engineering/atmospherics) +"Tt" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"TC" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security/armory) +"TE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/vending/tool, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"TI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/bedsheetbin/empty, +/turf/open/floor/wood/walnut, +/area/ship/crew/janitor) +"TM" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "twinkle_external" + }, +/turf/open/floor/plating, +/area/ship/security) +"TR" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"TT" = ( +/obj/machinery/vending/wallmed{ + pixel_y = -30 + }, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"TY" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Ua" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Uc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"Uf" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half, +/obj/structure/rack, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"Ug" = ( +/obj/machinery/power/emitter/welded, +/obj/effect/turf_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/yellow, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Um" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"Up" = ( +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security/armory) +"Uu" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2, +/obj/effect/turf_decal/corner/opaque/orange/full, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Ux" = ( +/obj/effect/turf_decal/corner/opaque/white/diagonal, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"UA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"UB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"UC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"UF" = ( +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/tech, +/area/ship/crew/canteen) +"UH" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"UI" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"UK" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"UV" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/obj/machinery/power/rad_collector/anchored{ + anchored = 1 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"UW" = ( +/obj/effect/turf_decal/corner/opaque/syndiered, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Vf" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/engineering/communications) +"Vj" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Vk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"Vu" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/ship/engineering/atmospherics) +"Vw" = ( +/obj/structure/sign/syndicate, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/cargo) +"Vy" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering/atmospherics) +"VA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"VB" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "twinkle_bridge"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/bridge) +"VC" = ( +/obj/machinery/door/poddoor{ + id = "twinkle_cargo"; + name = "Cargo Shutters" + }, +/turf/open/floor/plating, +/area/ship/cargo) +"VG" = ( +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/turf/open/floor/plasteel, +/area/ship/crew/canteen) +"VH" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"VJ" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/effect/turf_decal/syndicateemblem/middle/left{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"VM" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 25 + }, +/obj/effect/turf_decal/trimline/opaque/orange/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/opaque/orange/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"VO" = ( +/turf/open/floor/wood, +/area/ship/crew/canteen) +"VU" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/bordercorner, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 + }, +/obj/machinery/turretid{ + pixel_y = 32; + req_access = null; + req_access_txt = "150" + }, +/obj/effect/turf_decal/spline/fancy/opaque/black/corner, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"VY" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"VZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Wj" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ + pixel_y = 14; + pixel_x = 10 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/lighter{ + pixel_x = -10; + pixel_y = -2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/carpet/nanoweave/red, +/area/ship/crew/dorm/dormtwo) +"Wm" = ( +/obj/structure/table, +/obj/item/storage/bag/medical{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = 3 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_y = -1; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"Wo" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"Wr" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"Ws" = ( +/obj/effect/turf_decal/atmos/plasma{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/ship/engineering/atmospherics) +"Wy" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"WB" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/crew/office) +"WC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass/critical{ + name = "Supermatter"; + req_access = list(150,10); + dir = 4 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"WG" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/machinery/vending/cigarette/syndicate, +/obj/structure/sign/departments/restroom{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"WH" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/ship/engineering/atmospherics) +"WK" = ( +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 5 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"WL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"WR" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"WV" = ( +/obj/machinery/light/directional/north, +/obj/structure/bed, +/obj/item/toy/plush/beeplushie, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 2 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"WX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_one_access_txt = "150"; + req_access = list(150,10) + }, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"WZ" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/three_quarters{ + dir = 4 + }, +/obj/effect/turf_decal/syndicateemblem/top/right{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Xb" = ( +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced, +/obj/item/paper_bin/carbon, +/obj/item/pen/fountain, +/obj/effect/turf_decal/corner/opaque/syndiered, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Xc" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/turf_decal/corner/opaque/orange/three_quarters{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"Xf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/white/corners, +/obj/structure/closet/firecloset/wall{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/security) +"Xg" = ( +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/obj/structure/curtain/cloth/fancy{ + name = "blood-red curtains" + }, +/turf/open/floor/carpet/red, +/area/ship/crew/dorm/dormtwo) +"Xj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/ship/engineering/atmospherics) +"Xq" = ( +/obj/structure/table/wood/reinforced, +/obj/item/storage/fancy/donut_box{ + name = "suspicious donut box" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet/red, +/area/ship/crew/office) +"Xs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Xt" = ( +/obj/effect/turf_decal/techfloor{ + dir = 1 + }, +/obj/effect/turf_decal/corner/opaque/syndiered/half, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/mecha_ammo/missiles_br, +/obj/item/mecha_ammo/missiles_br{ + pixel_y = 5 + }, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/breaching{ + pixel_y = 13 + }, +/turf/open/floor/plasteel/tech/grid, +/area/ship/bridge) +"XE" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 6 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"XL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"XN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"XR" = ( +/obj/structure/catwalk/over/plated_catwalk/dark, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/ship/hallway/central) +"XU" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ship/medical) +"Ya" = ( +/obj/structure/closet/emcloset/wall{ + dir = 4; + pixel_x = -28 + }, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/item/clothing/suit/space/syndicate, +/obj/effect/turf_decal/trimline/opaque/syndiered/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"Yh" = ( +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Yj" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ship/hallway/central) +"Yl" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ship/crew/canteen) +"Ym" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ship/bridge) +"Yn" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Yo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Yp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_x = -8 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Yq" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/plasteel/telecomms_floor, +/area/ship/engineering/communications) +"Yz" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/moth/smokey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 5 + }, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"YB" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/inverse{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) +"YF" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 4 + }, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"YJ" = ( +/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/mono/dark, +/area/ship/medical) +"YL" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"YO" = ( +/obj/effect/turf_decal/corner/transparent/bar/diagonal, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ship/crew/dorm) +"YQ" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/light/directional/east, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/closet/crate{ + name = "Mining Crate" + }, +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"YR" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access = list(150,10) + }, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/obj/item/clothing/shoes/magboots/syndie, +/obj/item/clothing/head/helmet/space/syndicate/black/engie, +/obj/item/clothing/suit/space/syndicate/black/engie, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/ship/engineering) +"YT" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"YW" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/border{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/corner/opaque/syndiered/border, +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"YZ" = ( +/obj/effect/turf_decal/spline/fancy/opaque/black{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/spline/fancy/opaque/syndiered{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ship/security) +"Zc" = ( +/obj/effect/turf_decal/corner/opaque/syndiered{ + dir = 10 + }, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/tech, +/area/ship/hallway/central) +"Zg" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"Zk" = ( +/obj/effect/turf_decal/corner/opaque/syndiered/full, +/obj/effect/turf_decal/syndicateemblem/bottom/middle{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/ship/bridge) +"Zr" = ( +/obj/structure/sign/syndicate, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/crew/office) +"Zt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"Zw" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/obj/effect/turf_decal/corner/opaque/orange{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"Zz" = ( +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 8 + }, +/obj/effect/turf_decal/industrial/hatch/yellow, +/turf/open/floor/engine, +/area/ship/engineering/engine) +"ZC" = ( +/obj/effect/turf_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/pod/dark, +/area/ship/cargo) +"ZE" = ( +/obj/machinery/light/directional/south, +/obj/structure/reagent_dispensers/watertank, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/walnut, +/area/ship/crew/janitor) +"ZH" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ship/security) +"ZJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/catwalk/over/plated_catwalk/dark, +/turf/open/floor/plating, +/area/ship/hallway/central) +"ZO" = ( +/obj/effect/turf_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/turf_decal/industrial/warning, +/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/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/mono/dark, +/area/ship/hallway/central) +"ZQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/turf/open/floor/plating, +/area/ship/engineering/atmospherics) "ZV" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/docking_port/stationary{ + height = 2; + width = 3; + name = "upper right twink dock"; + dwidth = 2 + }, +/turf/template_noop, +/area/template_noop) +"ZY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/tech, /area/ship/engineering/atmospherics) (1,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -av -av -av -Xu -Xu -qz -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +Vf +Vf +Vf +Vf +Vf +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp "} (2,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Ey -AH -AH -AH -Ey -Ey -Ey -Ey -Ey -av -av -av -av -vb -av -Xu -Xu -Lr -Xu -Xu -PA -PA -PA -PA -PA -PA -PA -PA -PA -Xu -Xu +mp +mp +mp +mp +mp +mp +of +ae +LX +kS +kS +LX +ae +LX +Vf +MU +qF +Cp +Vf +LX +ae +LX +kS +kS +LX +ae +hu +mp +mp +mp +mp +mp +mp "} (3,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Ey -Ey -Ey -BR -qD -ri -dH -No -CK -up -ZF -qP -ba -Pl -Pl -qZ -av -Xu -Xu -Lr -Xu -PA -PA -aU -ZV -sI -PI -Zo -Yt -xf -Ds -Xu -Xu +mp +mp +ab +LX +ae +LX +kS +bq +QD +kS +kS +NO +iJ +wM +Vf +Ht +Yq +qQ +Vf +NO +iJ +wM +kS +kS +NO +mW +kS +LX +ae +LX +ab +mp +mp "} (4,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -rT -uY -uY -uY +mp +mp +kS +NO +iJ +wM +kS +PE +sj +SK +LH +Hk +iC +sj +LT +nk +NK +RE +ho uY +Aq uY -Hf -Hf -Ey -Te -ZF -QR -QM -Ie -ol -aR -aB -Xl -ZF -wA -Da -Jk -um -VU -av -Xu -PA -Fw -PA -PA -BX -Zo -Zo -Zo -Zo -Zo -Jh -YG -Ds -Xu -Xu +OS +nq +sj +aj +kS +NO +iJ +wM +kS +mp +mp "} (5,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -rT -gw -IQ -NB -NB -NB -NB -gY -ZF -kg -LQ -Jg -Wd -Tr -nL -aR -aB -XM -ZF -wA -Da -Jk -Qf -Ya -av -Xu -PA -XR -PA -PA -uh -Zo -Zo -Zo -Zo -Zo -Jh -xM -Ds -Xu -Xu +mp +mp +kS +TR +xh +XN +eg +OZ +cL +KU +Vk +xw +hZ +Rc +WX +Fm +nC +IU +DF +pw +Rj +YB +gv +KU +zi +Ke +zs +Ua +SI +TR +kS +mp +mp "} (6,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -rT -OF -Ze -OH -OH -DE -OH -UZ -ZF -Hm -ZF -FN -XD -Yj -pI -ON -aB -xu -ZF -qy -Da -Jk -Qf -Ya -av -OT -PA -Zo -ig -Zo -Zo -Zo -Zo -Zo -Zo -Zo -Sw -zk -PA -Xu -Xu +mp +mp +kS +iu +ks +Ku +zr +wm +tl +aG +Gx +tl +kS +MZ +Vf +Vf +Vf +Vf +Vf +Sv +kS +tl +jr +sY +ky +mo +lv +eQ +Mo +GC +kS +mp +mp "} (7,1,1) = {" -Xu -Xu -Xu -jP -jP -jP -jP -jP -jP -jP -jP -rT -LR -pw -tk -rv -EQ -OH -at -eq -eq -eq -eq -WR -Ii -ZF -YY -Mc -TR -ZF -YM -nf -vF -kz -Ya -av -rk -PA -ZV -ZV -nw -Zo -Zo -Zo -Zo -Zo -Zo -ga -bz -PA -PA -Xu +kS +kS +kS +kS +kS +Dm +kS +eR +JN +kS +eR +iz +kS +OG +Rh +Ug +CH +Cc +zI +zQ +kS +JN +JN +kS +JN +JN +kS +kS +wH +kS +kS +kS +kS "} (8,1,1) = {" -Xu -jP -jP -jP -dE -SF -mD -mD -Lk -mD -qj -lJ -lU -KG -WD -xn -OH -OH -zV -eq -MS -Pq -eq -ys -iP -IT -Aq -aa -aa -vQ -ZF -YM -YM -kY -fm -YM -rU -wX -Jy -YN -eS -hp -PA -PA -PA -PA -Zo -Zo -Jh -xf -Ds -Xu +qM +bY +lj +aE +NL +xq +kS +dQ +Af +kS +Ai +Xj +kS +wF +bU +tk +BB +xs +qS +ke +kS +mt +WH +kS +nj +tG +kS +EH +VA +qz +ni +BE +gh "} (9,1,1) = {" -ah -VZ -mD -bt -jV -mD -mD -ji -jP -bV -Zv -Zv -Zv -Zv -KV -TT -Qk -eo -sD -eq -MO -QJ -Nt -DU -XA -ZF -FY -NW -tW -sj -ZF -ZC -Kn -Rz -na -Of -RB -Gv -Gv -El -Gv -cC -ZV -ea -Xv -MG -Zo -Zo -Jh -YG -Ds -Xu +gh +xW +SA +ZQ +NL +JH +kS +Mb +Vu +kS +BS +Ws +kS +Ft +fH +En +Yh +Ft +fH +En +kS +AB +ER +kS +LF +Dt +kS +cp +mS +qz +aa +Pn +gh "} (10,1,1) = {" -Xu -jP -jP -jP -dK -SF -mD -jP -jP -Xy -qY -Zw -Xy -Zv -OX -BA -bv -bv -ER -eq -AV -Qn -PO -xc -dz -ZF -ZF -ZF -ZF -ZF -ZF -wp -CE -Ui -Zg -Nz -WZ -Xh -Xh -Xh -CX -gZ -tU -tw -FD -ui -QF -SO -cl -xM -Ds -Xu +kS +kS +xG +xG +xG +db +kS +kS +ST +kS +ST +eR +kS +ya +MQ +ip +ip +ip +MQ +Lp +kS +eR +eR +kS +kS +kS +kS +kS +fV +kS +kS +kS +kS "} (11,1,1) = {" -Xu -Xu -Xu -jP -jP -jP -jP -jP -ld -vr -pN -Yp -Yp -tB -LO -We -LO -LO -Bj -eq -Pq -Pq -eq -xz -sE -LG -LG -LG -wJ -Ae -hk -Sk -bl -FW -it -UM -zv -zv -zv -Ew -qe -aM -ZV -ZV -ZV -PA -Zo -Zo -Sw -PA -PA -Xu +mp +pF +Rl +Sp +Xc +ss +sD +Rl +Uu +Od +oV +bf +sC +Oc +EE +ht +rr +ht +bO +jJ +yy +rQ +lF +Gn +kS +Tq +ph +xk +yI +Ot +kS +mp +mp "} (12,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -jP -lV -Ay -DN -xQ -xQ -xQ -xQ -xQ -lJ -Im -Wp -eq -eq -eq -eq -Gp -dX -re -Et -Fu -st -OS -Ib -RW -Qb -JP -pj -Eu -oa -oa -UF -vH -em -hE -MG -Me -mK -MG -Zo -Zo -lj -PA -PA -Xu +mp +mp +xG +xG +ED +Sr +ug +xG +xG +gC +MC +JA +YL +BM +pt +Da +TY +ig +sk +Op +sI +OP +DQ +Gn +kS +dP +HI +jf +TE +kS +kS +mp +mp "} (13,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -jP -lV -Ay -Zv -xQ -vX -rF -RF -xQ -oC -LG -Ep -fX -Et -Et -Et -Et -ip -cv -LG -ej -ej -ej -ej -vq -HB -yl -ie -uV -ie -ie -jM -Qt -Bc -PD -tU -sS -LA -tC -QF -Vz -Jh -xf -Ds -Xu +mp +mp +mp +xG +Qd +bM +zH +bV +xG +hN +IT +wJ +Zz +Zz +MQ +MQ +WC +MQ +MQ +um +um +qb +DQ +qt +kS +iV +iI +cJ +Mn +kS +mp +mp +mp "} (14,1,1) = {" -Xu -Xu -Xu -Xu -Xu -CL -CL -jP -Zj -nO -Zv -tK -TX -Sv -Qv -xQ -Sf -LG -fO -Pz -If -LG -LG -cq -ex -fO -LG -eq -Pj -Tb -ej -AN -Dd -PR -Dd -uq -Sl -gV -wW -rH -GW -YN -ZV -ZV -ZV -PA -Zo -QN -Jh -YG -Ds -Xu +mp +mp +mp +xG +fz +zK +qK +YR +xG +RG +BV +gm +sW +sW +MQ +EU +er +EU +MQ +yr +yr +Pd +wZ +Gn +kS +sP +Oz +GE +UC +kS +mp +mp +mp "} (15,1,1) = {" -Xu -Xu -Xu -Xu -Xu -CL -hG -NJ -rf -mV -Zv -tT -Af -Cg -co -xQ -OE -LG -fO -eq -eq -eq -eq -eq -eq -dZ -wc -eq -Eb -Th -ej -AN -uB -HR -Hu -uq -Sl -gV -kV -PS -Wi -yU -JD -Rt -lI -Yw -Wx -tO -Jh -xM -Ds -Xu +mp +mp +mp +xG +WK +pB +wA +bQ +xG +Dk +NI +rb +MQ +MQ +MQ +MQ +AL +MQ +MQ +MQ +MQ +Cw +Zw +Gn +kS +rq +ZY +cw +UB +kS +mp +mp +mp "} (16,1,1) = {" -Xu -Xu -Xu -Xu -CL -CL -in -Yu -vd -Fn -Zv -xQ -xQ -xv -xQ -xQ -eq -NZ -pv -eq -YZ -MR -MR -YZ -eq -kR -LG -eq -Bn -Tx -ej -AN -Iz -ij -ij -zJ -uq -uq -im -IN -dJ -YN -of -SM -SM -ZV -rl -tS -Sw -PA -PA -PA +mp +mp +mp +xG +wP +oC +QY +Ko +rd +Ow +qr +Mq +xo +kJ +iB +Ih +lI +gU +wi +kJ +xo +Et +yf +qo +mX +Vy +Hu +Pb +yn +kS +mp +mp +mp "} (17,1,1) = {" -Xu -Xu -Xu -Xu -CL -gC -Gy -Yu -CU -fa -Wc -rt -wn -eU -Yy -KA -LG -LG -fO -eq -Qn -Qn -Qn -Qn -eq -dS -GT -xm -lN -TO -ej -AN -uy -uy -uy -Pg -YW -WI -DM -wT -XZ -fw -eb -hF -hF -ZV -rl -tS -Jh +of +sb +sb +sb +sb +sb +sb +sb +sb oB -xf -Ds +MQ +Na +vJ +Jm +ra +Ih +ti +gU +mr +IE +Jk +GO +Ay +xv +xv +xv +xv +xv +jA +ZH +ZH +ZH +hu "} (18,1,1) = {" -Xu -Xu -Xu -Xu -CL -gR -dy -yM -RD -gb -dQ -rt -wr -SL -mx -eH -gK -qi -bJ -eq -Kk -UP -YC -QJ -Sh -Kd -LG -ej -ej -ej -ej -AN -vo -vK -vo -Mk -vo -cb -EK -Pv -Wy -fw -JQ -aG -aG -ZV -Xk -tS -Jh -cl -YG -Ds +sb +RB +Sl +Ii +pj +xx +Fa +nE +sb +Kq +MQ +yB +sL +kJ +UV +Ih +th +gU +jX +kJ +xo +pc +TT +xv +Si +Sg +wR +xv +NE +yN +nr +ZH +ZH "} (19,1,1) = {" -Xu -Xu -Xu -Xu -CL -hs -Gy -lS -lV -oW -DF -rt -wK -UI -zr -rt -Ry -LG -LS -eq -LD -QO -rX -Qn -iT -fO -LG -PN -Xr -yf -ej -AN -Lb -Lb -Lb -Xg -EW -jS -Nc -oZ -Wy -fw -zG -bD -bD -ZV -Zo -tS -Jh -dO -xM -Ds +sb +sb +Ux +Kx +fN +SQ +Qa +Jd +sb +Jz +MQ +MQ +aU +aU +aU +aU +aU +aU +aU +aU +aU +MQ +MQ +xv +Si +si +sr +Eo +lT +da +vn +ZH +ZH "} (20,1,1) = {" -Xu -Xu -Xu -Xu -CL -CL -iH -lS -lV -Xy -Zv -rt -wN -UI -zY -rt -eq -NZ -wd -eq -Qn -Qn -Qn -Qn -eq -dS -GT -Pe -jq -Vn -ej -AN -Po -eJ -eJ -fC -uq -uq -ph -Pv -dJ -YN -of -SM +mp +sb +Sj +VO +wz +VG +qP +ma +sb +yF SM -ZV -Zo -tS -Sw -PA -PA -PA +sd +xP +xa +Ru +Ei +iq +BP +xa +xP +oX +PN +PN +xv +sG +ji +wg +gk +Kg +IB +fX +ZH +mp "} (21,1,1) = {" -Xu -Xu -Xu -Xu -Xu -CL -hG -jN -lV -pK -Zv -iy -UI -UI -As -rt -OE -LG -LS -eq -Td -At -At -Td -eq -px -LG -xI -uU -Mz -ej -AN -AR -Gr -nH -uq -Ys -Mg -Xj -hC -Ru -cs -lL -Bk -Qc -jr -Zo -tS -lj -xf -Ds -Xu +mp +ML +lY +VO +tU +VG +cD +ml +Yl +DW +YT +gW +cq +ag +Ax +kd +dO +jk +ag +cq +ea +tY +XR +xv +Si +Rv +TC +on +cX +AK +kH +ZH +mp "} (22,1,1) = {" -Xu -Xu -Xu -Xu -Xu -CL -CL -jP -Ln -gm -Zv -xH -UI -UI -zY -rt -ql -LG -LS -eq -eq -eq -eq -eq -eq -dY -rs -eq -eq -eq -ej -AN -Dd -PR -Dd -uq -Ys -Mg -mB -NE -bj -YN -ZV -ZV -ZV -ZV -Zo -tS -Jh -YG -Ds -Xu +mp +ML +sf +VO +ih +Ky +dU +Qv +UF +HL +lw +QF +QF +QF +uE +QF +QF +gX +ro +ro +ro +VH +oi +xv +Si +Up +hS +xv +LJ +MK +vE +ZH +mp "} (23,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -jP -lV -Xy -Zv -rt -Lw -Lw -Bb -rt -oC -LG -LS -ku -LG -So -Qr -LG -rJ -fO -LG -So -wJ -Ae -rE -fb -JZ -kt -NN -Lf -NN -NN -NV -Pv -RT -Va -PA -tR -pr -MG +mp +sb +dH +NS +Sy +Bq +gZ +zP +dp +WL +ru QF -oi -Jh -xM -Ds -Xu +Wj +bP +ON +QI +QF +vy +Ry +iv +ro +kR +Fr +xv +xv +jH +jH +xv +BG +da +Xf +ZH +mp "} (24,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -jP -lV -Xy -rG -rt -rt -rt -rt -rt -eq -LG -fz -Ip -hU -hU -hU -hU -WT -cf -hU -hU -st -oE -VW -TV -HO -Vt -mZ -XK -XK -XK -rA -eX -HS -Va -PA -Zf -cz -MG -Zo -tS -lj -PA -PA -Xu +mp +zD +zD +zD +zD +zD +zD +zD +zD +mG +lw +QF +dm +yM +ts +Xg +QF +ID +TI +ZE +ro +KJ +ox +IC +aD +oc +oc +oc +ln +ET +kc +ZH +mp "} (25,1,1) = {" -Xu -Xu -Xu -jP -jP -jP -jP -jP -ot -Zq -rM -Yp -Yp -Zy -hU -RK -bT -CI -sN -qG -qG -qG -qG -op -io -qG -qG -qG -qG -qG -qG -QP -nZ -nZ -aX -nZ -nZ -zA -Fv -SA -Js -Va -ZV -ZV -ZV -ZV -Zo -tS -lj -PA -PA -Xu -"} -(26,1,1) = {" -Xu -jP -jP -jP -et -SF -mD -Zv -Zv -Xy -sT -Xy -Xy -Zv +mp +zD +yP +He LG -Bg -Fm -TN -LG -vD -Zc -DI -eC -VD -Gm -dx -PV -MF -Oj -SR -qG -rm -Gv -Gv -uw -Gv -Gv -Ms -na -ii -sf -Va -PA -tA -xt -tC -LB -gv -Jh -xf -Ds -Xu +Nr +Wr +qI +PY +RU +Tt +RC +RC +Zr +RC +RC +RC +RC +RC +Zr +RC +VY +GH +ZH +Ed +ow +oG +pR +KK +AK +wC +ZH +mp "} -(27,1,1) = {" -ah -ai -mD -cp -kI -mD -mD -ji -Zv -bV -Zv -Zv -Zv -Zv -BK -Sm -yo -PH -Lc -vD -yV -JB -ME -VJ -Zs -EP -uL -Dm -Sq -xC -qG -wp -CE -CE -jL -dw -uM -PG -mG -RR -SZ -hp -PA -JC -tG -tC -JV -yt -Jh -YG -Ds -Xu +(26,1,1) = {" +mp +vb +vb +vb +vb +WG +Ql +QR +zD +oi +zO +RC +cC +ir +mm +Ls +HQ +AQ +oJ +NC +RC +Fl +cd +ZH +ZH +dq +ZH +ZH +pD +sc +pN +ZH +mp +"} +(27,1,1) = {" +mp +vb +gz +yO +vb +ps +No +aA +zD +tH +At +RC +qN +im +hE +kF +Xq +KF +WB +wa +RC +Gy +oi +ZH +pL +SV +pE +Dp +CJ +da +Eh +wh +mp "} (28,1,1) = {" -Xu -jP -jP -jP -dE -SF -mD -mD -Lk -mD -tv -jP -jP -jP -UY -Sz -Sz -Sz -UY -qG -qG -vD -vD -vD -KQ -Nl -VB -Wh -Sq -MF -qG -qG -YN -YN -wS -YN -LU -kB -xe -hp -YN -YN -ZV -ZV -ZV -ZV -Zo -Yt -dO -xM -Ds -Xu +mp +vb +fn +iG +SR +FI +YO +Fi +zD +Zt +pO +RC +pm +qT +rR +PQ +Ig +Dx +gL +GG +RC +Gy +nt +ZH +Gk +HH +Pa +ZH +HG +IB +hY +wh +mp "} (29,1,1) = {" -Xu -Xu -Xu -jP -jP -jP -jP -jP -jP -jP -jP -jP -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -qG -fe +mp +CG +vb +vb +vb +fb +JY +zD +zD +qY +Bs +RC +RC +Zr +RC +wV +CR +RC +RC +Zr +RC +kT +oi +ZH +ZH +ZH +ZH +ZH +YZ +AK fK -vD -gB -Pu -eC -hf -Sq -MF -JI -qG -uN -Vd -ev -YN -hp -PA -PA -PA -US -Zo -Zo -Zo -Zo -Zo -Zo -lj -Zo -PA -PA -Xu +TM +mp "} (30,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -qG -Sr -HZ -fW -qk -PK -eC -yk -Sq -MF -Ge -qG -TK -cX -DK -HE -hp -ZV -Zo -cD -Zo -Zo -Zo -Zo -Zo -Zo -yx -lj -PA -PA -Xu -Xu +mp +lo +CV +Go +rP +rP +rP +rP +Yz +hr +Id +BK +Yp +Xs +Id +UA +VZ +bH +pU +Yp +ZO +Id +lg +tn +Yn +ZH +GD +mB +EG +ia +ia +ZH +mp "} (31,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -qG -qG -qG -rj +mp +VC +AW +ZC +Um +pH +ep +rP +KJ +oi +UW +IN +wu +If +KM +KM yX -aj -eC -MF -Sq -MF -JI -qG -IC -By -JJ -fI -hp -ZV -Ac -ZV -ZV -Zo -Zo -Zo -Zo -Zo -Zo -Jh -xf -Ds -Xu -Xu +KM +kM +XE +sz +KM +Pe +oi +Gm +ZH +CQ +Nj +ZH +CQ +SZ +ZH +mp "} (32,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -qG -tr -wH -bH -vD -MF -AL -MF -Ge -qG -HL -BZ -mL -hp -hp -PA -ou -PA -PA -BX -Zo -Zo -Zo -Zo -Zo +JT +VC +AW +UK +EO +fQ +EQ +KQ +yz +ZJ +Zc +Gi +mQ +uh +uh +tg +uX +uh +uh +mQ +mQ Jh -YG -Ds -Xu -Xu +Tn +oi +lw +ZH +xe +MK +ZH +Qx +tp +ZH +mp "} (33,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -qG -qG -HM -VG -gM -yE -Rp -MF -JI -qG -jp -qE -qE -hp -Xu -Xu -Xu -Xu -PA -PA -aU -ZV -Em -CP -uh -ga -xM -Ds -Xu -Xu +mp +vQ +dg +NT +Wo +Uc +ng +KA +Wy +oj +eF +mQ +ii +XU +yd +UH +xu +nS +YJ +jM +vW +mQ +gI +fm +zZ +ZH +WV +xz +ZH +BL +qL +ZH +mp "} (34,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -qG -qG -qG -qG -qG -qG -qG -qG -qG -hp -hp -Eg -hp -Xu -Xu -Xu -Xu -Xu -PA -PA -PA -PA -PA -PA -PA -PA -PA -Xu -Xu +mp +Vw +rP +rP +YQ +gg +Zg +rP +dl +bR +hP +mQ +Dh +st +Jy +fT +CS +al +On +JE +vB +mQ +ak +Pe +cW +ZH +OY +MK +ZH +ZH +ZH +ZH +mp "} (35,1,1) = {" -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -hp -hp -hp -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu +mp +mp +mp +rP +rP +rP +rP +rP +GM +iL +Sc +Sc +Sc +Sc +Sc +Jf +HF +gq +Gs +uK +cr +mQ +mQ +Fs +qp +ZH +ZH +ZH +ZH +ZH +mp +mp +mp +"} +(36,1,1) = {" +mp +mp +mp +mp +IV +Ya +Sb +RW +fU +pO +Sc +KI +pp +FE +CF +dE +Wm +bN +eP +Ap +Ie +ck +mQ +Gy +XL +RW +GN +NF +IV +mp +mp +mp +mp +"} +(37,1,1) = {" +mp +mp +mp +ZV +IV +ql +Yj +RW +fU +kf +Sc +hb +jz +GZ +CF +zc +iA +IH +Cl +Ap +Ie +FW +mQ +Qk +XL +RW +lO +zk +IV +xZ +mp +mp +mp +"} +(38,1,1) = {" +mp +mp +mp +mp +xp +EN +EN +EN +gi +pO +Sc +zG +hW +Kz +Qg +oL +dV +vl +JL +WR +Ie +Ks +mQ +KJ +hd +EN +EN +EN +nW +mp +mp +mp +mp +"} +(39,1,1) = {" +mp +mp +mp +mp +mp +mp +mp +EN +HY +lw +Sc +iZ +Iw +SL +SL +SL +SL +SL +SL +SL +VM +SS +mQ +KJ +lx +EN +mp +mp +mp +mp +mp +mp +mp +"} +(40,1,1) = {" +mp +mp +mp +mp +mp +mp +SL +SL +Ym +SL +SL +Pv +pp +SL +Nm +Kk +KB +zp +np +SL +jv +hj +SL +SL +Fh +SL +SL +mp +mp +mp +mp +mp +mp +"} +(41,1,1) = {" +mp +mp +mp +mp +mp +mp +Kw +Hj +do +wL +SL +SL +SL +SL +Xb +vL +wb +vL +lG +SL +SL +SL +SL +MP +Oj +Vj +Kw +mp +mp +mp +mp +mp +mp +"} +(42,1,1) = {" +mp +mp +mp +mp +mp +mp +Kw +bo +Gv +RA +SL +Im +dL +zy +xg +pI +Zk +bd +PA +kE +wr +Yo +SL +BU +et +so +Kw +mp +mp +mp +mp +mp +mp +"} +(43,1,1) = {" +mp +mp +mp +mp +mp +mp +Kw +eL +Fq +QT +en +oD +Bc +Bc +ie +VJ +aX +vO +hU +dk +dk +dk +vA +yg +Ir +La +Kw +mp +mp +mp +mp +mp +mp +"} +(44,1,1) = {" +mp +mp +mp +mp +mp +mp +SL +SL +PB +SL +SL +Tl +vL +OK +FS +kV +mx +WZ +tZ +vL +OK +Fu +SL +SL +hR +SL +SL +mp +mp +mp +mp +mp +mp +"} +(45,1,1) = {" +mp +mp +mp +mp +mp +mp +SL +Uf +Jr +Fc +SL +VB +SL +VU +cj +EJ +UI +YF +Sd +Jw +SL +FV +SL +SD +hw +dC +SL +mp +mp +mp +mp +mp +mp +"} +(46,1,1) = {" +mp +mp +mp +mp +mp +mp +SL +iK +jG +Fc +SL +mp +QE +uo +pr +Sa +Gj +tS +tr +YW +QE +mp +SL +Xt +Gg +QX +SL +mp +mp +mp +mp +mp +mp +"} +(47,1,1) = {" +mp +mp +mp +mp +mp +mp +SL +GU +Mw +CU +SL +mp +QE +Mk +BT +jh +zf +oP +Ao +RT +QE +mp +SL +ad +iW +Il +SL +mp +mp +mp +mp +mp +mp +"} +(48,1,1) = {" +mp +mp +mp +mp +mp +mp +SL +pl +zJ +oM +SL +mp +SL +VB +VB +VB +VB +VB +VB +VB +SL +mp +SL +KD +Ah +bI +SL +mp +mp +mp +mp +mp +mp +"} +(49,1,1) = {" +mp +mp +mp +mp +mp +mp +SL +SL +nn +SL +SL +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +SL +SL +Ib +SL +SL +mp +mp +mp +mp +mp +mp +"} +(50,1,1) = {" +mp +mp +mp +mp +mp +mp +mp +SL +rW +SL +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +SL +xH +SL +mp +mp +mp +mp +mp +mp +mp +"} +(51,1,1) = {" +mp +mp +mp +mp +mp +mp +mp +zT +Hd +zT +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +zT +fO +zT +mp +mp +mp +mp +mp +mp +mp +"} +(52,1,1) = {" +mp +mp +mp +mp +mp +mp +mp +mp +bg +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +mp +Gq +mp +mp +mp +mp +mp +mp +mp +mp "} diff --git a/_maps/shuttles/shiptest/wizard_lamia.dmm b/_maps/shuttles/shiptest/wizard_lamia.dmm deleted file mode 100644 index af1a4d3d6cfa..000000000000 --- a/_maps/shuttles/shiptest/wizard_lamia.dmm +++ /dev/null @@ -1,3195 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/machinery/door/poddoor/shutters{ - id = "wizardship_bridge" - }, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/bridge) -"ac" = ( -/obj/machinery/computer/helm, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"af" = ( -/obj/structure/chair/bronze{ - dir = 1 - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"ag" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "wizardship_bridge"; - name = "bridge shutters"; - pixel_y = 31 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"ai" = ( -/obj/structure/showcase{ - desc = "A historical figure of great importance to the wizard federation. He spent his long life learning magic, stealing artifacts, and harassing idiots with swords. May he rest forever, Rodney."; - icon = 'icons/mob/mob.dmi'; - icon_state = "nim"; - name = "wizard of yendor showcase" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"aj" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Cockpit" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"am" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/central) -"an" = ( -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"ao" = ( -/obj/structure/chair/wood/wings, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"aq" = ( -/obj/structure/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"ar" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/figure/wizard, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"as" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"at" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Archives" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/hallway/central) -"au" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Game Room" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/ship/hallway/central) -"av" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"ay" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/hallway/central) -"az" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/ship/hallway/central) -"aA" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/ship/hallway/central) -"aB" = ( -/obj/machinery/vending/games, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"aC" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck/tarot{ - pixel_y = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"aF" = ( -/obj/machinery/vending/snack/random, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/ship/hallway/central) -"aG" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, -/area/ship/hallway/central) -"aI" = ( -/obj/machinery/light, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"aJ" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Study" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/science) -"aK" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Bar" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"aL" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/autolathe, -/obj/structure/spider/stickyweb, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"aM" = ( -/obj/structure/chair/wood/wings, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/spider/stickyweb, -/obj/item/soulstone/anybody, -/turf/open/floor/engine/cult, -/area/ship/science) -"aO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"aP" = ( -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"aR" = ( -/obj/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"aS" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"aT" = ( -/obj/structure/frame/machine, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/engine/cult, -/area/ship/science) -"aU" = ( -/obj/structure/destructible/cult/tome, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/box/matches{ - pixel_x = -5 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"aV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/ship/hallway/central) -"aW" = ( -/obj/machinery/chem_master/condimaster{ - name = "HoochMaster 3000" - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"aY" = ( -/obj/structure/chair/stool/bar{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"ba" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - name = "essence extractor"; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"bb" = ( -/obj/structure/frame/computer, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/engine/cult, -/area/ship/science) -"bd" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/ship/hallway/central) -"bf" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Personal Quarters" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"bh" = ( -/obj/structure/table, -/obj/machinery/microwave{ - name = "phlogiston excitor"; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"bi" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"bl" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"bm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/candle, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/engine/cult, -/area/ship/science) -"bn" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/sord{ - desc = "This thing is so unspeakably powerful you are having a hard time even holding it." - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine/cult, -/area/ship/science) -"bo" = ( -/obj/machinery/vending/boozeomat/all_access, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"bp" = ( -/obj/machinery/light, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"bq" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"bs" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"bu" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/storage/box/ingredients/wildcard, -/obj/item/storage/box/ingredients/wildcard, -/obj/item/storage/box/ingredients/exotic, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"by" = ( -/turf/open/floor/carpet/royalblue, -/area/ship/hallway/aft) -"bA" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Cargo" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/storage) -"bB" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Bathroom" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/toilet) -"bC" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/ship/storage) -"bF" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 27 - }, -/obj/machinery/cryopod{ - close_state = "bscanner_green"; - icon_state = "bscanner_open"; - name = "suspension sanctum"; - open_state = "bscanner_open" - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"bG" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"bH" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"bI" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/item/razor{ - desc = "The latest and greatest magic razor born from the science of shaving."; - name = "wand of hair slaying"; - pixel_x = 11; - pixel_y = 7 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/mirror/magic/lesser{ - pixel_y = 31 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"bJ" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - name = "mining car" - }, -/obj/item/pickaxe/emergency{ - attack_verb = list("hit","spelled","cantripped","ensorceled"); - desc = "Forged by the greatest smiths of the academy, enchanted by the archmagus council, this is a TRUE boulder eradicator."; - icon = 'icons/obj/guns/magic.dmi'; - icon_state = "staffofflight"; - name = "staff of rock removal" - }, -/obj/item/pickaxe/emergency{ - attack_verb = list("hit","spelled","cantripped","ensorceled"); - desc = "Forged by the greatest smiths of the academy, enchanted by the archmagus council, this is a TRUE boulder eradicator."; - icon = 'icons/obj/guns/magic.dmi'; - icon_state = "staffofflight"; - name = "staff of rock removal" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ship/storage) -"bK" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/closet/crate/engineering, -/obj/item/stack/sheet/mineral/plasma/five, -/obj/item/stack/sheet/mineral/plasma/five, -/obj/item/stack/cable_coil/red, -/obj/item/clothing/gloves/color/yellow{ - desc = "These enchanted gloves provide protection against electric shock."; - icon_state = "wizard"; - name = "gloves of shock resistance" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/storage) -"bL" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"bM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"bN" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"bO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"bQ" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/window/survival_pod, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/ship/storage) -"bR" = ( -/obj/item/bedsheet/wiz, -/obj/structure/bed, -/obj/structure/curtain/cloth/fancy, -/obj/item/toy/plush/slimeplushie, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"bT" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain, -/obj/item/soap/deluxe, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"bV" = ( -/obj/structure/table/wood/fancy, -/obj/item/skub{ - pixel_y = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"bW" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/bronze, -/area/ship/cargo) -"bX" = ( -/turf/open/floor/bronze, -/area/ship/cargo) -"bY" = ( -/obj/machinery/mineral/ore_redemption{ - name = "arcane smelter" - }, -/turf/open/floor/bronze, -/area/ship/cargo) -"bZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/machinery/door/poddoor/shutters{ - id = "wizardship_bridge" - }, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/science) -"ca" = ( -/obj/machinery/power/smes{ - name = "mana crystal bank" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"cb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"cc" = ( -/obj/machinery/power/port_gen/pacman{ - name = "mana pylon" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"cd" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "External Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/bronze, -/area/ship/cargo) -"ce" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Engine" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/bronze, -/area/ship/maintenance/aft) -"cf" = ( -/obj/effect/decal/cleanable/squid_ink{ - name = "motor oil" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"cg" = ( -/obj/machinery/suit_storage_unit/open, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/suit/space/hardsuit/wizard, -/obj/machinery/airalarm/directional/south, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/bronze, -/area/ship/cargo) -"ch" = ( -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"cj" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1; - piping_layer = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"ck" = ( -/obj/machinery/power/smes/shuttle/precharged, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/door/poddoor{ - id = "wizardship_thrusters" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"cl" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ship/external) -"cr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"cA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"cD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"dd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"do" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"dH" = ( -/turf/open/floor/wood, -/area/ship/crew/canteen) -"ee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/maintenance/aft) -"en" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"eN" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"fx" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/hallway/aft) -"fJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet/secret{ - dir = 1; - name = "chamber of secrets"; - secret_type = null - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"gz" = ( -/mob/living/simple_animal/hostile/carp/ranged{ - desc = "A wizard's favorite familiar, the Magicarp!"; - faction = list("neutral"); - name = "Melchom" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/dogbed/cayenne{ - name = "Melchom's bed" - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"gB" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"gF" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/structure/closet/crate/science, -/obj/machinery/airalarm/directional/west, -/obj/structure/window/reinforced/survival_pod, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/item/storage/box/rndciv, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/ship/storage) -"gL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/gun/magic/wand/nothing{ - desc = "A clever little artifact, devised to help with engine failures. You're not so confident about it, though."; - name = "emergency engine ignition wand" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"hh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/green, -/area/ship/hallway/central) -"hq" = ( -/obj/structure/destructible/cult/tome, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/book/codex_gigas, -/turf/open/floor/engine/cult, -/area/ship/science) -"hA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/hallway/aft) -"if" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/ship/crew/library) -"io" = ( -/obj/structure/chair/bronze{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/radio/intercom/wideband{ - pixel_x = -29; - pixel_y = 25 - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"iu" = ( -/obj/structure/sign/poster/contraband/shamblers_juice, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/canteen) -"iT" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"iU" = ( -/mob/living/carbon/monkey/punpun, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"je" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"jA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"jC" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/maintenance/aft) -"jQ" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/cargo) -"kC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/bronze, -/area/ship/cargo) -"kN" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"kO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/autodrobe/all_access, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"kP" = ( -/obj/structure/chair/wood/wings{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"lq" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"mr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"mv" = ( -/obj/structure/sign/poster/official/high_class_martini, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/hallway/starboard) -"mH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/machinery/door/poddoor/shutters{ - id = "wizardship_bridge" - }, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/crew/canteen/kitchen) -"ni" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/hallway/starboard) -"nl" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/library) -"nC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"nQ" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/clothing/head/collectable/wizard{ - pixel_y = 3 - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"oz" = ( -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"oB" = ( -/obj/structure/frame/machine, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/engine/cult, -/area/ship/science) -"oD" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/cargo) -"oE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"pf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/bronze, -/area/ship/cargo) -"pj" = ( -/obj/structure/chair/bronze{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"pn" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Bar" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"pR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"qJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/hallway/central) -"qN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/docking_port/mobile{ - dir = 4; - launch_status = 0; - port_direction = 8 - }, -/obj/machinery/door/poddoor/shutters{ - id = "wizardship_bridge" - }, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/science) -"qT" = ( -/obj/structure/sign/poster/official/no_erp, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/toilet) -"qU" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"qY" = ( -/obj/item/reagent_containers/food/snacks/pizzaslice/dank{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/table/wood/fancy/purple, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"rg" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"rh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/structure/table/wood/fancy/royalblack, -/obj/item/paper_bin/bundlenatural{ - pixel_y = 5 - }, -/obj/item/mining_scanner{ - desc = "A grimoire penned by the mighty magus Antoras. Revelations of Rock is regarded as one of the most important and influential tomes to ever grace the Federation, granting it's reader the ability to divine minerals. And we mean REALLY divine. The book contains detailed information on hundreds of thousands of types of soil, minerals, gemstones, and more. A wizard wielding this tome could indeed, within seconds, precisely deduce how many individual grains of sand were on a planet. This tome alone is touted as the grandfather of the modern Wizard Federation, and certainly is responsible for your gem-encrusted hardsuits and your emerald-plated vessel. Your operations will, through the power of this stony grimoire, surely proceed smooth as slate and clear as crystal. That.. being said... It would appear that some, okay well, MOST of the pages have been ripped out of this copy. Through your wizardly intellect however, you deduce that missing pages will not lessen it's power. After all, tomes don't ACTUALLY utilize those pages, right?"; - icon = 'icons/obj/library.dmi'; - icon_state = "book"; - name = "The Grimoire of Rock Revelation" - }, -/turf/open/floor/wood, -/area/ship/crew/library) -"rp" = ( -/obj/machinery/computer/bookmanagement{ - name = "archival servitor"; - pixel_y = 1 - }, -/obj/structure/table/wood/fancy/royalblack, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"rH" = ( -/obj/structure/spider/stickyweb, -/obj/item/relic, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"rV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/machinery/door/poddoor/shutters{ - id = "wizardship_bridge" - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"sJ" = ( -/obj/structure/sign/poster/contraband/power, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/science) -"sX" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"tv" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/dorm) -"ud" = ( -/obj/structure/sign/poster/contraband/backdoor_xeno_babes_6, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/toilet) -"uh" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/spiderling, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"ui" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/jukebox{ - name = "altar of rhythm" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"vk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "wizardship_thrusters"; - name = "thruster shutters"; - pixel_y = 31 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"wj" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/storage) -"wq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"wE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/candle, -/turf/open/floor/engine/cult, -/area/ship/science) -"wT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"wX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"xc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"xn" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_y = 8 - }, -/obj/item/storage/box/donkpockets/donkpocketgondola, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/shovel/spoon{ - desc = "This mighty silver staff seems to have irreversibly lost it's luster."; - name = "staff of sustenance" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"xC" = ( -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"yQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/bridge) -"zn" = ( -/obj/machinery/processor, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"zA" = ( -/obj/structure/sign/plaques/kiddie/library, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/hallway/central) -"zN" = ( -/obj/machinery/light, -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"zT" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/candle, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"An" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/library) -"Ar" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/bronze, -/area/ship/cargo) -"BB" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"Cc" = ( -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -1 - }, -/obj/structure/table/wood/fancy/purple, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"Cq" = ( -/obj/structure/sign/poster/official/fruit_bowl, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/library) -"Cy" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/head/wizard/yellow, -/obj/item/clothing/head/wizard/red, -/obj/item/clothing/head/wizard/marisa, -/obj/item/clothing/head/wizard/black, -/obj/item/clothing/head/wizard, -/obj/item/clothing/suit/wizrobe/yellow, -/obj/item/clothing/suit/wizrobe/red, -/obj/item/clothing/suit/wizrobe/marisa, -/obj/item/clothing/suit/wizrobe/black, -/obj/item/clothing/suit/wizrobe, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"CF" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/toilet) -"CH" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/canteen/kitchen) -"Db" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/terminal, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"Dg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/bronze, -/area/ship/cargo) -"DP" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/spider/stickyweb, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"Ee" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/hallway/central) -"Ek" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"El" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/item/book/granter/spell/smoke/lesser, -/turf/open/floor/wood, -/area/ship/crew/library) -"Es" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"Eu" = ( -/obj/structure/table/wood/fancy/purple, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"Ez" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/ship/crew/library) -"Fu" = ( -/obj/item/statuebust{ - pixel_y = 12 - }, -/obj/structure/table/wood/fancy/royalblack, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"FQ" = ( -/obj/structure/chair/stool/bar{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"FX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ship/storage) -"Ge" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"Gf" = ( -/obj/effect/decal/cleanable/food/egg_smudge, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"Gh" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/canteen/kitchen) -"GA" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Study" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"GL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/candy, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"GM" = ( -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"Hr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ship/storage) -"HQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/machinery/door/poddoor/shutters{ - id = "wizardship_bridge" - }, -/turf/open/floor/plating, -/area/ship/hallway/aft) -"HS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"HV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"Ia" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"Ig" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"Ix" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"IJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/spider/stickyweb, -/obj/item/clothing/head/jackbros{ - pixel_y = 7 - }, -/obj/item/clothing/shoes/jackbros{ - pixel_y = -8 - }, -/obj/item/clothing/under/costume/jackbros{ - pixel_x = -1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"IN" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/hallway/aft) -"Jn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/hallway/aft) -"Jo" = ( -/obj/item/trash/can, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/hallway/central) -"JB" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/library) -"JP" = ( -/obj/item/storage/bag/tray, -/obj/item/reagent_containers/food/snacks/burger/spell, -/obj/structure/table/wood/fancy/cyan, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"JS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/obj/item/cigbutt{ - pixel_x = -9; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"Ke" = ( -/obj/item/trash/popcorn, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"Ki" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"Kj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/structure/sink{ - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"Kz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/hallway/aft) -"KS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"KW" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"Ll" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"LZ" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/dorm) -"Mb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"Me" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"Mf" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/hallway/aft) -"Mn" = ( -/obj/structure/table/wood/fancy/royalblue, -/obj/item/areaeditor/shuttle, -/obj/item/clothing/shoes/sandal/magic{ - pixel_y = -7 - }, -/obj/item/clothing/suit/wizrobe/magusblue{ - pixel_y = 5 - }, -/obj/item/clothing/head/wizard/magus{ - pixel_y = 11 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"Mq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"MA" = ( -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 4 - }, -/obj/structure/table/wood/fancy/purple, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"MX" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/hallway/aft) -"Nm" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"No" = ( -/turf/template_noop, -/area/space) -"Np" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/ship/hallway/central) -"Ny" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/bronze, -/area/ship/cargo) -"NF" = ( -/obj/machinery/chem_dispenser/drinks{ - dir = 4 - }, -/obj/structure/table/wood/fancy/purple, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"NI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"NN" = ( -/obj/structure/bookcase/random, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"Ot" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/bookcase/random/religion, -/obj/structure/spider/stickyweb, -/turf/open/floor/engine/cult, -/area/ship/science) -"OC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/wood/fancy/royalblue, -/obj/item/book/granter/spell/charge{ - pixel_y = 4 - }, -/obj/item/gun/energy/e_gun/mini{ - desc = "The small and submissive wand of wizards-in-training, firing bursts of raw magical energy to disable or kill foes. Comes with built-in nightlight!"; - gunlight_state = "nothingwand"; - icon = 'icons/obj/guns/magic.dmi'; - icon_state = "nothingwand"; - name = "acolyte's training wand of duality"; - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/obj/item/spacecash/bundle/c1000, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"OQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/libraryscanner, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/wood, -/area/ship/crew/library) -"OW" = ( -/obj/machinery/modular_computer/console/preset/command, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"PT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/maintenance/aft) -"Ql" = ( -/obj/machinery/bookbinder, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"QD" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ship/external) -"QJ" = ( -/obj/machinery/deepfryer{ - name = "cauldron of savour" - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"Ro" = ( -/obj/machinery/computer/cargo/express, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"RD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "#008000" - }, -/obj/structure/curtain/cloth/fancy, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ship/crew/canteen/kitchen) -"RE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/library) -"Sc" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Kitchen" - }, -/obj/effect/decal/cleanable/food/pie_smudge, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen/kitchen) -"Sf" = ( -/obj/effect/turf_decal/industrial/warning, -/obj/structure/closet/crate, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/structure/window/reinforced/survival_pod, -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/ship/storage) -"Si" = ( -/obj/structure/cable{ - icon_state = "4-9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/hallway/aft) -"So" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/science) -"Sq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"St" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet/orange, -/area/ship/crew/library) -"SC" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/cable{ - icon_state = "2-8" - }, -/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-4" - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"Tc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/item/cigbutt/roach, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/ship/crew/toilet) -"Tn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/semki, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"Tt" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/bridge) -"TQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"TY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/engine/cult, -/area/ship/science) -"Uu" = ( -/obj/structure/sign/poster/official/ue_no, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/canteen) -"Va" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine/cult, -/area/ship/science) -"Vc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ship/crew/canteen) -"Vy" = ( -/turf/open/floor/wood, -/area/ship/hallway/aft) -"VC" = ( -/obj/structure/closet/cabinet, -/obj/item/gun/ballistic/shotgun/doublebarrel{ - desc = "Despite the fact you're on a ship meant for wizards, with spells and all that, a bartender is still never far from a double-barreled twelve-gauge shotgun."; - sawn_desc = "Gooblamaphous's coming!" - }, -/obj/item/storage/box/beanbag, -/obj/item/clothing/suit/armor/vest/alt, -/obj/item/clothing/glasses/sunglasses/reagent, -/obj/item/clothing/head/wizard/black{ - desc = "Strange-looking black hat-wear that most certainly belongs to a real bartender."; - name = "beer wizard hat" - }, -/obj/item/roulette_wheel_beacon, -/obj/item/etherealballdeployer, -/obj/item/storage/belt/bandolier, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"VP" = ( -/obj/item/storage/pill_bottle/dice{ - icon_state = "magicdicebag"; - pixel_y = 4 - }, -/obj/structure/table/wood/fancy/green, -/obj/item/table_bell/brass{ - pixel_x = -8 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"VR" = ( -/obj/machinery/suit_storage_unit/open, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/suit/space/hardsuit/wizard, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/bronze, -/area/ship/cargo) -"We" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/hallway/aft) -"Wp" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/cigbutt/cigarbutt, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/royalblack, -/area/ship/hallway/starboard) -"WE" = ( -/obj/item/bedsheet/wiz, -/obj/structure/bed, -/obj/structure/curtain/cloth/fancy, -/obj/item/toy/plush/plushvar, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"WV" = ( -/obj/machinery/door/window/southright{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/purple, -/area/ship/crew/canteen) -"Xm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/bronze, -/area/ship/cargo) -"Xz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ship/hallway/central) -"XG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"XS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/hallway/aft) -"XX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/classicbeats, -/turf/open/floor/wood, -/area/ship/hallway/aft) -"Yn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/green, -/area/ship/hallway/central) -"Yx" = ( -/turf/closed/wall/mineral/uranium/safe{ - desc = "A wall plated with emerald."; - name = "emerald wall" - }, -/area/ship/crew/canteen) -"YD" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/ship/crew/dorm) -"YF" = ( -/obj/machinery/holopad/emergency/command, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/carpet/stellar, -/area/ship/bridge) -"Zj" = ( -/obj/machinery/suit_storage_unit/open, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/suit/space/hardsuit/wizard, -/turf/open/floor/bronze, -/area/ship/cargo) -"ZW" = ( -/obj/effect/turf_decal/industrial/outline/yellow, -/obj/structure/closet/crate{ - name = "alchemical supplies" - }, -/obj/item/slimepotion/genderchange{ - name = "potion of gender"; - pixel_x = 5 - }, -/obj/item/dyespray, -/obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter{ - pixel_x = -5 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = -9 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/ship/storage) - -(1,1,1) = {" -No -No -No -No -No -No -No -No -No -No -So -So -bZ -qN -bZ -So -IN -No -No -No -No -No -No -No -No -No -No -No -No -No -No -"} -(2,1,1) = {" -No -No -No -No -No -No -No -nl -nl -nl -So -aL -aT -bb -aT -oB -IN -HQ -HQ -IN -No -No -No -No -No -No -No -No -No -No -No -"} -(3,1,1) = {" -No -No -No -No -No -No -nl -Cq -qU -if -aJ -Va -rH -zT -Ki -DP -GA -Es -gB -MX -IN -No -No -No -No -No -No -No -No -No -No -"} -(4,1,1) = {" -No -No -No -No -No -nl -JB -NN -GM -OQ -So -bm -uh -TY -IJ -wE -IN -KS -Si -XX -IN -wj -wj -wj -jQ -oD -cd -jQ -jQ -No -No -"} -(5,1,1) = {" -No -No -No -No -nl -nl -El -Ez -An -rh -sJ -aM -aU -Ot -hq -bn -IN -Vy -Ge -Vy -IN -bC -bJ -gF -bW -Ar -bX -cg -jQ -No -No -"} -(6,1,1) = {" -No -No -No -No -nl -NN -dd -RE -St -rp -So -So -So -So -So -So -We -kN -fx -cD -bA -FX -Hr -bQ -Dg -pf -Ny -Zj -jQ -No -No -"} -(7,1,1) = {" -No -Tt -Tt -Tt -Tt -iT -Ke -RE -Ql -Fu -Yx -VC -aW -MA -NF -bo -IN -xC -Ge -KS -wj -ZW -bK -Sf -bY -kC -Xm -VR -jQ -No -No -"} -(8,1,1) = {" -Tt -Tt -OC -Mn -Tt -ay -zA -at -ay -ay -Yx -aO -aP -aP -HS -bp -IN -KS -Jn -Tn -tv -tv -LZ -tv -jC -jC -ce -jC -jC -jC -No -"} -(9,1,1) = {" -ab -OW -io -Mb -yQ -aV -Ee -Xz -az -aF -Uu -WV -qY -nQ -Cc -Eu -IN -Ix -Sq -TQ -tv -Cy -bL -bR -jC -ca -cf -en -Ig -ck -cl -"} -(10,1,1) = {" -ab -ac -pj -YF -aj -am -Np -Yn -hh -am -aK -NI -aY -aY -aY -FQ -Kz -Vy -hA -cD -bf -YD -mr -WE -PT -cb -Ll -oE -Db -ck -cl -"} -(11,1,1) = {" -ab -Ro -af -wq -yQ -bd -qJ -Jo -aA -aG -Yx -SC -do -je -Vc -Mq -pn -cD -pR -Vy -tv -bF -bM -JP -jC -vk -gL -ch -Db -ck -cl -"} -(12,1,1) = {" -Tt -Tt -ag -ai -Tt -ay -ay -au -ay -ay -iu -ui -Me -iU -wT -zN -IN -KW -XS -Vy -CF -CF -qT -CF -jC -cc -Ia -HV -cj -ee -QD -"} -(13,1,1) = {" -No -Tt -Tt -Tt -Tt -BB -kP -Ek -aB -VP -Yx -aR -dH -cr -JS -bq -IN -gz -Ge -Vy -CF -bG -bN -bT -jC -jC -rV -jC -jC -jC -No -"} -(14,1,1) = {" -No -No -No -No -ni -ao -ar -lq -wX -aI -Gh -Gh -RD -Sc -RD -Gh -We -GL -Mf -cD -bB -bH -Tc -fJ -CF -No -No -No -No -No -No -"} -(15,1,1) = {" -No -No -No -No -ni -ni -as -Wp -aq -an -Gh -aS -cA -jA -oz -zn -IN -Vy -Vy -KS -IN -bI -bO -bV -CF -No -No -No -No -No -No -"} -(16,1,1) = {" -No -No -No -No -No -ni -mv -ao -aC -av -CH -oz -QJ -xn -xc -bs -IN -Vy -by -kO -IN -CF -ud -CF -CF -No -No -No -No -No -No -"} -(17,1,1) = {" -No -No -No -No -No -No -ni -ni -eN -sX -Gh -Gf -ba -bh -bl -rg -IN -KS -XG -IN -IN -No -No -No -No -No -No -No -No -No -No -"} -(18,1,1) = {" -No -No -No -No -No -No -No -ni -ni -ni -Gh -Kj -Nm -bi -nC -bu -IN -HQ -HQ -IN -No -No -No -No -No -No -No -No -No -No -No -"} -(19,1,1) = {" -No -No -No -No -No -No -No -No -No -No -Gh -Gh -mH -Gh -mH -Gh -Gh -No -No -No -No -No -No -No -No -No -No -No -No -No -No -"} diff --git a/_maps/shuttles/subshuttles/independent_blackpill.dmm b/_maps/shuttles/subshuttles/independent_blackpill.dmm index 156ff3eab629..01993377b332 100644 --- a/_maps/shuttles/subshuttles/independent_blackpill.dmm +++ b/_maps/shuttles/subshuttles/independent_blackpill.dmm @@ -28,9 +28,7 @@ density = 0; desc = "A medium-capacity, high transfer superconducting magnetic energy storage unit specially made for use with shuttle engines. This one seems to be woven into the floor by a mix of desperate and clever engineering" }, -/obj/machinery/power/apc/auto_name/west{ - pixel_x = -25 - }, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-8" }, diff --git a/_maps/shuttles/subshuttles/independent_kunai.dmm b/_maps/shuttles/subshuttles/independent_kunai.dmm index ab5baca325c3..e160d0201c18 100644 --- a/_maps/shuttles/subshuttles/independent_kunai.dmm +++ b/_maps/shuttles/subshuttles/independent_kunai.dmm @@ -19,11 +19,7 @@ "ac" = ( /obj/docking_port/mobile{ dir = 4; - dwidth = 3; - height = 12; name = "hunter shuttle"; - rechargeTime = 1800; - width = 7; port_direction = 2; preferred_direction = 4 }, @@ -35,7 +31,8 @@ }, /obj/machinery/door/poddoor/shutters{ id = "Interpolship"; - name = "Bay Shutters" + name = "Bay Shutters"; + dir = 4 }, /turf/open/floor/plasteel/rockvault, /area/ship/storage) @@ -87,9 +84,7 @@ "aj" = ( /obj/structure/closet/crate/eva, /obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/electrical, /turf/open/floor/engine/hull/interior, @@ -152,7 +147,8 @@ /obj/structure/cable, /obj/machinery/door/poddoor/shutters{ id = "Interpolship"; - name = "Bay Shutters" + name = "Bay Shutters"; + dir = 4 }, /obj/machinery/power/shieldwallgen/atmos/roundstart{ id = "polshield"; @@ -168,6 +164,16 @@ /obj/structure/chair/comfy/shuttle, /turf/open/floor/engine/hull/interior, /area/ship/storage) +"cF" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id = "polwindow"; + name = "Blast Shield"; + dir = 4 + }, +/turf/open/floor/plating, +/area/ship/bridge) "fa" = ( /obj/structure/cable{ icon_state = "4-8" @@ -186,17 +192,17 @@ /area/ship/storage) "gi" = ( /obj/structure/table, -/obj/item/radio/intercom{ - dir = 8; +/obj/machinery/light/floor, +/obj/item/radio/intercom/directional{ pixel_y = 2; - pixel_x = -9 + dir = 4; + pixel_x = 16 }, -/obj/item/radio/intercom{ - dir = 8; +/obj/item/radio/intercom/directional{ pixel_y = 2; + dir = 4; pixel_x = 4 }, -/obj/machinery/light/floor, /turf/open/floor/plasteel/tech, /area/ship/bridge) "gs" = ( @@ -302,9 +308,7 @@ }, /obj/machinery/power/smes/engineering, /obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/engine/hull/interior, /area/ship/storage) "nP" = ( @@ -323,11 +327,7 @@ "qn" = ( /obj/machinery/power/terminal, /obj/structure/cable, -/obj/item/radio/intercom/wideband{ - dir = 4; - pixel_y = 4; - pixel_x = -26 - }, +/obj/item/radio/intercom/wideband/directional/west, /obj/effect/turf_decal/corner_techfloor_grid, /obj/effect/turf_decal/corner_techfloor_grid{ dir = 9 @@ -351,7 +351,8 @@ dir = 4 }, /obj/machinery/door/airlock/command{ - name = "Bridge" + name = "Bridge"; + dir = 4 }, /turf/open/floor/plasteel/tech, /area/ship/bridge) @@ -361,7 +362,8 @@ }, /obj/machinery/door/poddoor/shutters{ id = "Interpolship"; - name = "Bay Shutters" + name = "Bay Shutters"; + dir = 4 }, /obj/machinery/power/shieldwallgen/atmos/roundstart{ id = "polshield" @@ -375,7 +377,7 @@ /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/engine/hull/interior, /area/ship/storage) "DP" = ( @@ -477,9 +479,7 @@ /area/ship/storage) "SE" = ( /obj/structure/chair/comfy/shuttle, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/engine/hull/interior, /area/ship/storage) "Wx" = ( @@ -612,9 +612,9 @@ Pq (12,1,1) = {" Pq Wx -DP -DP -DP +cF +cF +cF Wx Pq "} diff --git a/_maps/shuttles/subshuttles/independent_pill.dmm b/_maps/shuttles/subshuttles/independent_pill.dmm index bd0bdac3fbb2..6a6449d0fad9 100644 --- a/_maps/shuttles/subshuttles/independent_pill.dmm +++ b/_maps/shuttles/subshuttles/independent_pill.dmm @@ -23,9 +23,7 @@ dir = 1 }, /obj/structure/window/reinforced/spawner, -/obj/machinery/power/apc/auto_name/west{ - pixel_x = -25 - }, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-8" }, diff --git a/_maps/shuttles/subshuttles/independent_sugarcube.dmm b/_maps/shuttles/subshuttles/independent_sugarcube.dmm index 977dca755367..9879c6eead1b 100644 --- a/_maps/shuttles/subshuttles/independent_sugarcube.dmm +++ b/_maps/shuttles/subshuttles/independent_sugarcube.dmm @@ -16,10 +16,9 @@ /obj/effect/decal/cleanable/oil/slippery, /obj/docking_port/mobile{ can_move_docking_ports = 1; - dir = 2; - launch_status = 0; + preferred_direction = 4; port_direction = 8; - preferred_direction = 4 + dir = 2 }, /turf/open/floor/plating, /area/ship/storage) @@ -69,7 +68,7 @@ dir = 4 }, /obj/structure/window/reinforced/spawner/west, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -88,9 +87,7 @@ }, /obj/structure/window/reinforced/spawner/west, /obj/structure/window/reinforced/spawner/east, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/ship/storage) "l" = ( @@ -99,9 +96,7 @@ /area/ship/storage) "m" = ( /obj/structure/window/reinforced/spawner/west, -/obj/item/radio/intercom/wideband{ - pixel_y = 26 - }, +/obj/item/radio/intercom/wideband/directional/north, /obj/structure/chair/comfy/shuttle{ dir = 4 }, @@ -125,9 +120,7 @@ /turf/open/floor/plating, /area/ship/engineering) "p" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/cable{ icon_state = "1-8" }, @@ -172,7 +165,7 @@ pixel_x = -7; pixel_y = 5 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -193,7 +186,9 @@ /turf/open/floor/plating, /area/ship/engineering) "w" = ( -/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, @@ -280,7 +275,7 @@ }, /obj/structure/window/reinforced/spawner/west, /obj/structure/window/reinforced/spawner/east, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/ship/storage) "H" = ( diff --git a/_maps/shuttles/subshuttles/independent_superpill.dmm b/_maps/shuttles/subshuttles/independent_superpill.dmm index ebab615cc397..9677aeafed5e 100644 --- a/_maps/shuttles/subshuttles/independent_superpill.dmm +++ b/_maps/shuttles/subshuttles/independent_superpill.dmm @@ -28,19 +28,6 @@ /obj/structure/catwalk, /turf/open/floor/plating/rust, /area/ship/storage) -"c" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer4, -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer2, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - layer = 3; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible/layer1{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/open/floor/plating/rust, -/area/ship/storage) "f" = ( /obj/machinery/power/emitter/welded{ dir = 4 @@ -58,6 +45,28 @@ /obj/structure/catwalk, /turf/open/floor/plating/rust, /area/ship/storage) +"h" = ( +/obj/machinery/power/shuttle/engine/electric{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/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 + }, +/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{ @@ -107,13 +116,36 @@ /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 + }, +/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/machinery/atmospherics/pipe/simple/general/visible/layer1{ + dir = 9 + }, +/obj/structure/catwalk, /turf/open/floor/plating/rust, /area/ship/storage) -"q" = ( +"x" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/open/floor/plating/rust, +/area/ship/storage) +"C" = ( /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc/auto_name/west{ +/obj/machinery/power/apc/auto_name/directional/west{ pixel_x = -25 }, /obj/structure/window/reinforced/tinted, @@ -128,37 +160,21 @@ }, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) -"x" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/open/floor/plating/rust, -/area/ship/storage) -"z" = ( -/obj/machinery/power/shuttle/engine/electric{ - dir = 4 - }, +"R" = ( +/obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/general/visible/layer4{ + dir = 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/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer4, +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w, /obj/structure/catwalk, -/obj/docking_port/mobile{ - can_move_docking_ports = 1; - dir = 4; - launch_status = 0; - port_direction = 2; - preferred_direction = 4 - }, +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer2, /turf/open/floor/plating/rust, /area/ship/storage) -"A" = ( +"W" = ( /obj/item/clothing/mask/gas, /obj/structure/bed, /obj/machinery/light/floor, @@ -192,35 +208,21 @@ /obj/item/tank/internals/plasma/full, /turf/open/floor/plasteel/tech/grid, /area/ship/storage) -"R" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible/layer4{ - 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, -/turf/open/floor/plating/rust, -/area/ship/storage) (1,1,1) = {" l -z +h a "} (2,1,1) = {" x -q +C b "} (3,1,1) = {" f -A -c +W +s "} (4,1,1) = {" i diff --git a/_maps/templates/holodeck_skatepark.dmm b/_maps/templates/holodeck_skatepark.dmm index 92a468db9df2..21388e50a289 100644 --- a/_maps/templates/holodeck_skatepark.dmm +++ b/_maps/templates/holodeck_skatepark.dmm @@ -6,10 +6,6 @@ /obj/structure/table, /turf/open/floor/holofloor/plating, /area/template_noop) -"H" = ( -/obj/structure/table, -/turf/open/floor/holofloor/plating, -/area/template_noop) (1,1,1) = {" a @@ -25,8 +21,8 @@ a "} (2,1,1) = {" a -H -H +t +t a a a @@ -37,24 +33,24 @@ a "} (3,1,1) = {" a -H -H -H -H +t +t +t +t a -H -H +t +t a a "} (4,1,1) = {" a a -H -H -H -H -H +t +t +t +t +t a a a @@ -62,11 +58,11 @@ a (5,1,1) = {" a a -H +t t a -H -H +t +t a a a @@ -74,10 +70,10 @@ a (6,1,1) = {" a a -H -H -H -H +t +t +t +t a a a @@ -85,25 +81,25 @@ a "} (7,1,1) = {" a -H -H -H -H +t +t +t +t a -H -H +t +t a a "} (8,1,1) = {" a -H +t a a a a -H -H +t +t a a "} diff --git a/_maps/templates/shelter_2.dmm b/_maps/templates/shelter_2.dmm index 86bf7fc16cbc..4a6de9bbf07d 100644 --- a/_maps/templates/shelter_2.dmm +++ b/_maps/templates/shelter_2.dmm @@ -103,8 +103,7 @@ /turf/open/floor/carpet/black, /area/survivalpod) "s" = ( -/obj/machinery/light{ - dir = 4; +/obj/machinery/light/directional/east{ light_color = "#DDFFD3" }, /obj/structure/table/wood/fancy/black, @@ -173,7 +172,7 @@ /turf/open/floor/carpet/black, /area/survivalpod) "z" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/carpet/black, /area/survivalpod) "A" = ( diff --git a/_maps/templates/shelter_3.dmm b/_maps/templates/shelter_3.dmm index 05c7affdd216..164018096972 100644 --- a/_maps/templates/shelter_3.dmm +++ b/_maps/templates/shelter_3.dmm @@ -31,9 +31,7 @@ "g" = ( /obj/structure/table/wood/fancy/black, /obj/machinery/chem_dispenser/drinks/beer, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/pod/dark, /area/survivalpod) "h" = ( @@ -71,9 +69,7 @@ /area/survivalpod) "m" = ( /obj/structure/closet/secure_closet/bar, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/pod/dark, /area/survivalpod) "n" = ( @@ -215,9 +211,7 @@ dir = 8; pixel_x = 11 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/pod/light, /area/survivalpod) "J" = ( @@ -237,16 +231,14 @@ /turf/open/floor/carpet/black, /area/survivalpod) "M" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/carpet/black, /area/survivalpod) "N" = ( /obj/structure/toilet{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/pod/light, /area/survivalpod) "O" = ( diff --git a/auxmos.dll b/auxmos.dll new file mode 100644 index 000000000000..499c125baa87 Binary files /dev/null and b/auxmos.dll differ diff --git a/auxtools/auxmos.dll b/auxtools/auxmos.dll deleted file mode 100644 index 217fc11a369e..000000000000 Binary files a/auxtools/auxmos.dll and /dev/null differ diff --git a/code/__DEFINES/chat.dm b/code/__DEFINES/chat.dm index fcf8d2b8b7cd..e0609d54baec 100644 --- a/code/__DEFINES/chat.dm +++ b/code/__DEFINES/chat.dm @@ -18,3 +18,21 @@ #define MESSAGE_TYPE_ADMINLOG "adminlog" #define MESSAGE_TYPE_ATTACKLOG "attacklog" #define MESSAGE_TYPE_DEBUG "debug" + +//debug printing macros (for development and testing) +/// Used for debug messages to the world +#define debug2_world(msg) if (GLOB.Debug2) to_chat(world, \ + type = MESSAGE_TYPE_DEBUG, \ + text = "DEBUG: [msg]") +/// Used for debug messages to the player +#define debug2_usr(msg) if (GLOB.Debug2&&usr) to_chat(usr, \ + type = MESSAGE_TYPE_DEBUG, \ + text = "DEBUG: [msg]") +/// Used for debug messages to the admins +#define debug2_admins(msg) if (GLOB.Debug2) to_chat(GLOB.admins, \ + type = MESSAGE_TYPE_DEBUG, \ + text = "DEBUG: [msg]") +/// Used for debug messages to the server +#define debug2_world_log(msg) if (GLOB.Debug2) log_world("DEBUG: [msg]") +/// Adds a generic box around whatever message you're sending in chat. Really makes things stand out. +#define examine_block(str) ("
" + str + "
") diff --git a/code/__DEFINES/colors.dm b/code/__DEFINES/colors.dm index d8142a85c13c..8c81b94e8435 100644 --- a/code/__DEFINES/colors.dm +++ b/code/__DEFINES/colors.dm @@ -70,6 +70,7 @@ #define COLOR_PINK "#FFC0CB" #define COLOR_MOSTLY_PURE_PINK "#E4005B" #define COLOR_BLUSH_PINK "#D84C59" +#define COLOR_BLUSH_TEAL "#009696" #define COLOR_MAGENTA "#FF00FF" #define COLOR_STRONG_MAGENTA "#B800B8" #define COLOR_PURPLE "#800080" @@ -164,3 +165,6 @@ #define LIGHT_COLOR_TUNGSTEN "#FAE1AF" /// Barely visible cyan-ish hue, as the doctor prescribed. rgb(240, 250, 250) #define LIGHT_COLOR_HALOGEN "#F0FAFA" + +/// Color used for default blood +#define COLOR_BLOOD "#CC0000" diff --git a/code/__DEFINES/dcs/helpers.dm b/code/__DEFINES/dcs/helpers.dm index d235cf8df071..3fff74907c4b 100644 --- a/code/__DEFINES/dcs/helpers.dm +++ b/code/__DEFINES/dcs/helpers.dm @@ -10,6 +10,10 @@ /// Every proc you pass to RegisterSignal must have this. #define SIGNAL_HANDLER SHOULD_NOT_SLEEP(TRUE) +/// Signifies that this proc is used to handle signals, but also sleeps. +/// Do not use this for new work. +#define SIGNAL_HANDLER_DOES_SLEEP + /// A wrapper for _AddElement that allows us to pretend we're using normal named arguments #define AddElement(arguments...) _AddElement(list(##arguments)) /// A wrapper for _RemoveElement that allows us to pretend we're using normal named arguments diff --git a/code/__DEFINES/dcs/signals.dm b/code/__DEFINES/dcs/signals.dm index 827cc044f2f7..dea22d0169a5 100644 --- a/code/__DEFINES/dcs/signals.dm +++ b/code/__DEFINES/dcs/signals.dm @@ -27,6 +27,8 @@ /// from SSsun when the sun changes position : (azimuth) #define COMSIG_SUN_MOVED "sun_moved" + + ////////////////////////////////////////////////////////////////// // /datum signals @@ -230,6 +232,8 @@ #define COMSIG_TURF_MULTIZ_DEL "turf_multiz_del" ///from base of turf/multiz_turf_new: (turf/source, direction) #define COMSIG_TURF_MULTIZ_NEW "turf_multiz_new" +//! from base of turf/proc/afterShuttleMove: (turf/new_turf) +#define COMSIG_TURF_AFTER_SHUTTLE_MOVE "turf_after_shuttle_move" // /atom/movable signals @@ -443,6 +447,9 @@ #define COMSIG_CARBON_EQUIP_HAT "carbon_equip_hat" ///from /mob/living/carbon/doUnEquip(obj/item/I, force, newloc, no_move, invdrop, silent) #define COMSIG_CARBON_UNEQUIP_HAT "carbon_unequip_hat" +///from /mob/living/carbon/doUnEquip(obj/item/I, force, newloc, no_move, invdrop, silent) +#define COMSIG_CARBON_UNEQUIP_SHOECOVER "carbon_unequip_shoecover" +#define COMSIG_CARBON_EQUIP_SHOECOVER "carbon_equip_shoecover" ///defined twice, in carbon and human's topics, fired when interacting with a valid embedded_object to pull it out (mob/living/carbon/target, /obj/item, /obj/item/bodypart/L) #define COMSIG_CARBON_EMBED_RIP "item_embed_start_rip" ///called when removing a given item from a mob, from mob/living/carbon/remove_embedded_object(mob/living/carbon/target, /obj/item) @@ -600,6 +607,9 @@ ///Called on an object to "clean it", such as removing blood decals/overlays, etc. The clean types bitfield is sent with it. Return TRUE if any cleaning was necessary and thus performed. #define COMSIG_COMPONENT_CLEAN_ACT "clean_act" +///from base of datum/component/forensics/wipe_blood_dna(): () +#define COMSIG_WIPE_BLOOD_DNA "wipe_blood_dna" + //Creamed #define COMSIG_COMPONENT_CLEAN_FACE_ACT "clean_face_act" //called when you wash your face at a sink: (num/strength) @@ -609,6 +619,9 @@ //Gibs #define COMSIG_GIBS_STREAK "gibs_streak" // from base of /obj/effect/decal/cleanable/blood/gibs/streak(): (list/directions, list/diseases) +/// Called on mobs when they step in blood. (blood_amount, blood_state, list/blood_DNA) +#define COMSIG_STEP_ON_BLOOD "step_on_blood" + //Mood #define COMSIG_ADD_MOOD_EVENT "add_mood" //Called when you send a mood event from anywhere in the code. #define COMSIG_ADD_MOOD_EVENT_RND "RND_add_mood" //Mood event that only RnD members listen for diff --git a/code/__DEFINES/directional.dm b/code/__DEFINES/directional.dm new file mode 100644 index 000000000000..49d3705ce2f9 --- /dev/null +++ b/code/__DEFINES/directional.dm @@ -0,0 +1,33 @@ +// Byond direction defines, because I want to put them somewhere. +// #define NORTH 1 +// #define SOUTH 2 +// #define EAST 4 +// #define WEST 8 + +#define TEXT_NORTH "[NORTH]" +#define TEXT_SOUTH "[SOUTH]" +#define TEXT_EAST "[EAST]" +#define TEXT_WEST "[WEST]" + +/// Inverse direction, taking into account UP|DOWN if necessary. +#define REVERSE_DIR(dir) (((dir & 85) << 1) | ((dir & 170) >> 1)) + + +/// Create directional subtypes for a path to simplify mapping. + +#define MAPPING_DIRECTIONAL_HELPERS(path, offset) ##path/directional/north {\ + dir = NORTH; \ + pixel_y = offset; \ +} \ +##path/directional/south {\ + dir = SOUTH; \ + pixel_y = -offset; \ +} \ +##path/directional/east {\ + dir = EAST; \ + pixel_x = offset; \ +} \ +##path/directional/west {\ + dir = WEST; \ + pixel_x = -offset; \ +} diff --git a/code/__DEFINES/icon_smoothing.dm b/code/__DEFINES/icon_smoothing.dm index 344a713e3820..86210c73acf6 100644 --- a/code/__DEFINES/icon_smoothing.dm +++ b/code/__DEFINES/icon_smoothing.dm @@ -11,6 +11,10 @@ #define SMOOTH_QUEUED (1<<4) /// Smooths with objects, and will thus need to scan turfs for contents. #define SMOOTH_OBJ (1<<5) +/// When smoothing, this atom will also use "connectors" if the atom being smoothed into is not one of a set of approved types. +/// Only works when SMOOTH_BITMASK is also set. +#define SMOOTH_CONNECTORS (1<<6) + DEFINE_BITFIELD(smoothing_flags, list( "SMOOTH_CORNERS" = SMOOTH_CORNERS, @@ -19,6 +23,7 @@ DEFINE_BITFIELD(smoothing_flags, list( "SMOOTH_BORDER" = SMOOTH_BORDER, "SMOOTH_QUEUED" = SMOOTH_QUEUED, "SMOOTH_OBJ" = SMOOTH_OBJ, + "SMOOTH_CONNECTORS" = SMOOTH_CONNECTORS, )) diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index 37f24905f17e..5222c3c653d0 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -49,7 +49,6 @@ #define HIGH_SIGIL_LAYER 2.56 #define BELOW_OPEN_DOOR_LAYER 2.6 -#define BLASTDOOR_LAYER 2.65 #define OPEN_DOOR_LAYER 2.7 #define DOOR_HELPER_LAYER 2.71 //keep this above OPEN_DOOR_LAYER #define PROJECTILE_HIT_THRESHHOLD_LAYER 2.75 //projectiles won't hit objects at or below this layer if possible @@ -58,12 +57,13 @@ #define BELOW_OBJ_LAYER 2.9 #define LOW_ITEM_LAYER 2.95 //#define OBJ_LAYER 3 //For easy recordkeeping; this is a byond define -#define CLOSED_BLASTDOOR_LAYER 3.05 +#define RAILING_LAYER 3.08 #define UNDERDOOR 3.09 //Just under a closed door #define CLOSED_DOOR_LAYER 3.1 #define CLOSED_FIREDOOR_LAYER 3.11 -#define SHUTTER_LAYER 3.12 // HERE BE DRAGONS #define ABOVE_OBJ_LAYER 3.2 +#define BLASTDOOR_LAYER 3.21 +#define ABOVE_BLASTDOOR_LAYER 3.22 #define ABOVE_WINDOW_LAYER 3.3 #define SIGN_LAYER 3.4 #define NOT_HIGH_OBJ_LAYER 3.5 diff --git a/code/__DEFINES/machines.dm b/code/__DEFINES/machines.dm index afb8bed8ea04..06e659329788 100644 --- a/code/__DEFINES/machines.dm +++ b/code/__DEFINES/machines.dm @@ -126,3 +126,8 @@ //these flags are used to tell the DNA modifier if a plant gene cannot be extracted or modified. #define PLANT_GENE_REMOVABLE (1<<0) #define PLANT_GENE_EXTRACTABLE (1<<1) + +//used to determine what rotation mode the ore redemption machine is in +#define ORM_BOTH 0 +#define ORM_INPUT 1 +#define ORM_OUTPUT 2 diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index 6b4de277a28a..5d8bda8b1613 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -1,17 +1,3 @@ -// Byond direction defines, because I want to put them somewhere. -// #define NORTH 1 -// #define SOUTH 2 -// #define EAST 4 -// #define WEST 8 - -#define TEXT_NORTH "[NORTH]" -#define TEXT_SOUTH "[SOUTH]" -#define TEXT_EAST "[EAST]" -#define TEXT_WEST "[WEST]" - -/// Inverse direction, taking into account UP|DOWN if necessary. -#define REVERSE_DIR(dir) (((dir & 85) << 1) | ((dir & 170) >> 1)) - //Human Overlays Indexes///////// #define MUTATIONS_LAYER 31 //mutations. Tk headglows, cold resistance glow, etc #define HANDS_UNDER_BODY_LAYER 30 //Held items that render underneath the user due to perspective @@ -124,12 +110,11 @@ GLOBAL_LIST_EMPTY(bloody_footprints_cache) //Bloody shoes/footprints -#define MAX_SHOE_BLOODINESS 100 -#define BLOODY_FOOTPRINT_BASE_ALPHA 150 -#define BLOOD_GAIN_PER_STEP 100 -#define BLOOD_LOSS_PER_STEP 5 -#define BLOOD_LOSS_IN_SPREAD 20 -#define BLOOD_AMOUNT_PER_DECAL 20 +#define BLOODY_FOOTPRINT_BASE_ALPHA 80 /// Minimum alpha of footprints +#define BLOOD_AMOUNT_PER_DECAL 50 /// How much blood a regular blood splatter contains +#define BLOOD_ITEM_MAX 200 /// How much blood an item can have stuck on it +#define BLOOD_POOL_MAX 300 /// How much blood a blood decal can contain +#define BLOOD_FOOTPRINTS_MIN 5 /// How much blood a footprint need to at least contain //Bloody shoe blood states #define BLOOD_STATE_HUMAN "blood" @@ -282,19 +267,6 @@ GLOBAL_LIST_INIT(pda_styles, sortList(list(MONO, VT, ORBITRON, SHARE))) #define SHELTER_DEPLOY_BAD_AREA "bad area" #define SHELTER_DEPLOY_ANCHORED_OBJECTS "anchored objects" -//debug printing macros -//_world and _usr should really never be used. -#define debug2_world(msg) if (GLOB.Debug2) to_chat(world, \ - type = MESSAGE_TYPE_DEBUG, \ - text = "DEBUG: [msg]") -#define debug2_usr(msg) if (GLOB.Debug2&&usr) to_chat(usr, \ - type = MESSAGE_TYPE_DEBUG, \ - text = "DEBUG: [msg]") -#define debug2_admins(msg) if (GLOB.Debug2) to_chat(GLOB.admins, \ - type = MESSAGE_TYPE_DEBUG, \ - text = "DEBUG: [msg]") -#define debug2_world_log(msg) if (GLOB.Debug2) log_world("DEBUG: [msg]") - #define INCREMENT_TALLY(L, stat) if(L[stat]){L[stat]++}else{L[stat] = 1} /// Removes characters incompatible with file names. diff --git a/code/__DEFINES/rust_g.dm b/code/__DEFINES/rust_g.dm index 29b4c13e4643..cab4430a88df 100644 --- a/code/__DEFINES/rust_g.dm +++ b/code/__DEFINES/rust_g.dm @@ -38,8 +38,15 @@ #define RUST_G (__rust_g || __detect_rust_g()) #endif +// Handle 515 call() -> call_ext() changes +#if DM_VERSION >= 515 +#define RUSTG_CALL call_ext +#else +#define RUSTG_CALL call +#endif + /// Gets the version of rust_g -/proc/rustg_get_version() return call(RUST_G, "get_version")() +/proc/rustg_get_version() return RUSTG_CALL(RUST_G, "get_version")() /** @@ -51,7 +58,7 @@ * * patterns - A non-associative list of strings to search for * * replacements - Default replacements for this automaton, used with rustg_acreplace */ -#define rustg_setup_acreplace(key, patterns, replacements) call(RUST_G, "setup_acreplace")(key, json_encode(patterns), json_encode(replacements)) +#define rustg_setup_acreplace(key, patterns, replacements) RUSTG_CALL(RUST_G, "setup_acreplace")(key, json_encode(patterns), json_encode(replacements)) /** * Sets up the Aho-Corasick automaton using supplied options. @@ -63,7 +70,7 @@ * * patterns - A non-associative list of strings to search for * * replacements - Default replacements for this automaton, used with rustg_acreplace */ -#define rustg_setup_acreplace_with_options(key, options, patterns, replacements) call(RUST_G, "setup_acreplace")(key, json_encode(options), json_encode(patterns), json_encode(replacements)) +#define rustg_setup_acreplace_with_options(key, options, patterns, replacements) RUSTG_CALL(RUST_G, "setup_acreplace")(key, json_encode(options), json_encode(patterns), json_encode(replacements)) /** * Run the specified replacement engine with the provided haystack text to replace, returning replaced text. @@ -72,7 +79,7 @@ * * key - The key for the automaton * * text - Text to run replacements on */ -#define rustg_acreplace(key, text) call(RUST_G, "acreplace")(key, text) +#define rustg_acreplace(key, text) RUSTG_CALL(RUST_G, "acreplace")(key, text) /** * Run the specified replacement engine with the provided haystack text to replace, returning replaced text. @@ -82,7 +89,7 @@ * * text - Text to run replacements on * * replacements - Replacements for this call. Must be the same length as the set-up patterns */ -#define rustg_acreplace_with_replacements(key, text, replacements) call(RUST_G, "acreplace_with_replacements")(key, text, json_encode(replacements)) +#define rustg_acreplace_with_replacements(key, text, replacements) RUSTG_CALL(RUST_G, "acreplace_with_replacements")(key, text, json_encode(replacements)) /** * This proc generates a cellular automata noise grid which can be used in procedural generation methods. @@ -98,24 +105,26 @@ * * height: The height of the grid. */ #define rustg_cnoise_generate(percentage, smoothing_iterations, birth_limit, death_limit, width, height) \ - call(RUST_G, "cnoise_generate")(percentage, smoothing_iterations, birth_limit, death_limit, width, height) + RUSTG_CALL(RUST_G, "cnoise_generate")(percentage, smoothing_iterations, birth_limit, death_limit, width, height) -#define rustg_dmi_strip_metadata(fname) call(RUST_G, "dmi_strip_metadata")(fname) -#define rustg_dmi_create_png(path, width, height, data) call(RUST_G, "dmi_create_png")(path, width, height, data) -#define rustg_dmi_resize_png(path, width, height, resizetype) call(RUST_G, "dmi_resize_png")(path, width, height, resizetype) +#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) -#define rustg_file_read(fname) call(RUST_G, "file_read")(fname) -#define rustg_file_exists(fname) call(RUST_G, "file_exists")(fname) -#define rustg_file_write(text, fname) call(RUST_G, "file_write")(text, fname) -#define rustg_file_append(text, fname) call(RUST_G, "file_append")(text, 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) +#define rustg_file_write(text, fname) RUSTG_CALL(RUST_G, "file_write")(text, fname) +#define rustg_file_append(text, fname) RUSTG_CALL(RUST_G, "file_append")(text, fname) +#define rustg_file_get_line_count(fname) text2num(RUSTG_CALL(RUST_G, "file_get_line_count")(fname)) +#define rustg_file_seek_line(fname, line) RUSTG_CALL(RUST_G, "file_seek_line")(fname, "[line]") #ifdef RUSTG_OVERRIDE_BUILTINS #define file2text(fname) rustg_file_read("[fname]") #define text2file(text, fname) rustg_file_append(text, "[fname]") #endif -#define rustg_git_revparse(rev) call(RUST_G, "rg_git_revparse")(rev) -#define rustg_git_commit_date(rev) call(RUST_G, "rg_git_commit_date")(rev) +#define rustg_git_revparse(rev) RUSTG_CALL(RUST_G, "rg_git_revparse")(rev) +#define rustg_git_commit_date(rev) RUSTG_CALL(RUST_G, "rg_git_commit_date")(rev) #define RUSTG_HTTP_METHOD_GET "get" #define RUSTG_HTTP_METHOD_PUT "put" @@ -123,36 +132,55 @@ #define RUSTG_HTTP_METHOD_PATCH "patch" #define RUSTG_HTTP_METHOD_HEAD "head" #define RUSTG_HTTP_METHOD_POST "post" -#define rustg_http_request_blocking(method, url, body, headers, options) call(RUST_G, "http_request_blocking")(method, url, body, headers, options) -#define rustg_http_request_async(method, url, body, headers, options) call(RUST_G, "http_request_async")(method, url, body, headers, options) -#define rustg_http_check_request(req_id) call(RUST_G, "http_check_request")(req_id) +#define rustg_http_request_blocking(method, url, body, headers, options) RUSTG_CALL(RUST_G, "http_request_blocking")(method, url, body, headers, options) +#define rustg_http_request_async(method, url, body, headers, options) RUSTG_CALL(RUST_G, "http_request_async")(method, url, body, headers, options) +#define rustg_http_check_request(req_id) RUSTG_CALL(RUST_G, "http_check_request")(req_id) #define RUSTG_JOB_NO_RESULTS_YET "NO RESULTS YET" #define RUSTG_JOB_NO_SUCH_JOB "NO SUCH JOB" #define RUSTG_JOB_ERROR "JOB PANICKED" -#define rustg_json_is_valid(text) (call(RUST_G, "json_is_valid")(text) == "true") +#define rustg_json_is_valid(text) (RUSTG_CALL(RUST_G, "json_is_valid")(text) == "true") + +#define rustg_log_write(fname, text, format) RUSTG_CALL(RUST_G, "log_write")(fname, text, format) +/proc/rustg_log_close_all() return RUSTG_CALL(RUST_G, "log_close_all")() + +#define rustg_noise_get_at_coordinates(seed, x, y) RUSTG_CALL(RUST_G, "noise_get_at_coordinates")(seed, x, y) -#define rustg_log_write(fname, text, format) call(RUST_G, "log_write")(fname, text, format) -/proc/rustg_log_close_all() return call(RUST_G, "log_close_all")() +#define rustg_sql_connect_pool(options) RUSTG_CALL(RUST_G, "sql_connect_pool")(options) +#define rustg_sql_query_async(handle, query, params) RUSTG_CALL(RUST_G, "sql_query_async")(handle, query, params) +#define rustg_sql_query_blocking(handle, query, params) RUSTG_CALL(RUST_G, "sql_query_blocking")(handle, query, params) +#define rustg_sql_connected(handle) RUSTG_CALL(RUST_G, "sql_connected")(handle) +#define rustg_sql_disconnect_pool(handle) RUSTG_CALL(RUST_G, "sql_disconnect_pool")(handle) +#define rustg_sql_check_query(job_id) RUSTG_CALL(RUST_G, "sql_check_query")("[job_id]") -#define rustg_noise_get_at_coordinates(seed, x, y) call(RUST_G, "noise_get_at_coordinates")(seed, x, y) +#define rustg_time_microseconds(id) text2num(RUSTG_CALL(RUST_G, "time_microseconds")(id)) +#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) -#define rustg_sql_connect_pool(options) call(RUST_G, "sql_connect_pool")(options) -#define rustg_sql_query_async(handle, query, params) call(RUST_G, "sql_query_async")(handle, query, params) -#define rustg_sql_query_blocking(handle, query, params) call(RUST_G, "sql_query_blocking")(handle, query, params) -#define rustg_sql_connected(handle) call(RUST_G, "sql_connected")(handle) -#define rustg_sql_disconnect_pool(handle) call(RUST_G, "sql_disconnect_pool")(handle) -#define rustg_sql_check_query(job_id) call(RUST_G, "sql_check_query")("[job_id]") +/proc/rustg_unix_timestamp() + return text2num(RUSTG_CALL(RUST_G, "unix_timestamp")()) -#define rustg_time_microseconds(id) text2num(call(RUST_G, "time_microseconds")(id)) -#define rustg_time_milliseconds(id) text2num(call(RUST_G, "time_milliseconds")(id)) -#define rustg_time_reset(id) call(RUST_G, "time_reset")(id) +#define rustg_raw_read_toml_file(path) json_decode(RUSTG_CALL(RUST_G, "toml_file_to_json")(path) || "null") -#define rustg_read_toml_file(path) json_decode(call(RUST_G, "toml_file_to_json")(path) || "null") +/proc/rustg_read_toml_file(path) + var/list/output = rustg_raw_read_toml_file(path) + if (output["success"]) + return json_decode(output["content"]) + else + CRASH(output["content"]) + +#define rustg_raw_toml_encode(value) json_decode(RUSTG_CALL(RUST_G, "toml_encode")(json_encode(value))) + +/proc/rustg_toml_encode(value) + var/list/output = rustg_raw_toml_encode(value) + if (output["success"]) + return output["content"] + else + CRASH(output["content"]) -#define rustg_url_encode(text) call(RUST_G, "url_encode")("[text]") -#define rustg_url_decode(text) call(RUST_G, "url_decode")(text) +#define rustg_url_encode(text) RUSTG_CALL(RUST_G, "url_encode")("[text]") +#define rustg_url_decode(text) RUSTG_CALL(RUST_G, "url_decode")(text) #ifdef RUSTG_OVERRIDE_BUILTINS #define url_encode(text) rustg_url_encode(text) diff --git a/code/__DEFINES/tgs.dm b/code/__DEFINES/tgs.dm index c8ef71112b33..d7f7deec743e 100644 --- a/code/__DEFINES/tgs.dm +++ b/code/__DEFINES/tgs.dm @@ -1,6 +1,6 @@ // tgstation-server DMAPI -#define TGS_DMAPI_VERSION "6.4.2" +#define TGS_DMAPI_VERSION "6.4.5" // All functions and datums outside this document are subject to change with any version and should not be relied on. @@ -104,6 +104,12 @@ #define TGS_EVENT_WORLD_PRIME 21 // DMAPI also doesnt implement this // #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 +#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 // OTHER ENUMS diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm index d78c309f2cd3..43e090ecb0f0 100644 --- a/code/__HELPERS/_lists.dm +++ b/code/__HELPERS/_lists.dm @@ -29,6 +29,16 @@ #define LAZYREMOVEASSOC(L, K, V) if(L) { if(L[K]) { L[K] -= V; if(!length(L[K])) L -= K; } if(!length(L)) L = null; } #define LAZYACCESSASSOC(L, I, K) L ? L[I] ? L[I][K] ? L[I][K] : null : null : null #define QDEL_LAZYLIST(L) for(var/I in L) qdel(I); L = null; +/// ORs two lazylists together without inserting errant nulls, returning a new list and not modifying the existing lists. +#define LAZY_LISTS_OR(left_list, right_list)\ + (length(left_list)\ + ? length(right_list)\ + ? (left_list | right_list)\ + : left_list.Copy()\ + : length(right_list)\ + ? right_list.Copy()\ + : null\ + ) /// Performs an insertion on the given lazy list with the given key and value. If the value already exists, a new one will not be made. #define LAZYORASSOCLIST(lazy_list, key, value) \ diff --git a/code/__HELPERS/icon_smoothing.dm b/code/__HELPERS/icon_smoothing.dm index 72a3fc79c9d9..4f8a0a5e28e0 100644 --- a/code/__HELPERS/icon_smoothing.dm +++ b/code/__HELPERS/icon_smoothing.dm @@ -54,12 +54,13 @@ DEFINE_BITFIELD(smoothing_junction, list( #define DEFAULT_UNDERLAY_ICON_STATE "plating" -#define SET_ADJ_IN_DIR(source, junction, direction, direction_flag) \ +#define SET_ADJ_IN_DIR(source, junction, conn_junction, direction, direction_flag) \ do { \ var/turf/neighbor = get_step(source, direction); \ if(!neighbor) { \ if(source.smoothing_flags & SMOOTH_BORDER) { \ junction |= direction_flag; \ + conn_junction |= direction_flag; \ }; \ }; \ else { \ @@ -69,6 +70,9 @@ DEFINE_BITFIELD(smoothing_junction, list( continue; \ }; \ junction |= direction_flag; \ + if(!is_type_in_typecache(neighbor, source.no_connector_typecache)) { \ + conn_junction |= direction_flag; \ + }; \ break; \ }; \ }; \ @@ -82,6 +86,9 @@ DEFINE_BITFIELD(smoothing_junction, list( continue; \ }; \ junction |= direction_flag; \ + if(!is_type_in_typecache(thing, source.no_connector_typecache)) { \ + conn_junction |= direction_flag; \ + }; \ break; \ }; \ if(junction & direction_flag) { \ @@ -317,30 +324,42 @@ DEFINE_BITFIELD(smoothing_junction, list( */ /atom/proc/bitmask_smooth() var/new_junction = NONE + var/new_conn_junction = NONE for(var/direction in GLOB.cardinals) //Cardinal case first. - SET_ADJ_IN_DIR(src, new_junction, direction, direction) + SET_ADJ_IN_DIR(src, new_junction, new_conn_junction, direction, direction) if(!(new_junction & (NORTH|SOUTH)) || !(new_junction & (EAST|WEST))) set_smoothed_icon_state(new_junction) + if(smoothing_flags & SMOOTH_CONNECTORS) + set_connector_overlay(new_conn_junction) return if(new_junction & NORTH_JUNCTION) if(new_junction & WEST_JUNCTION) - SET_ADJ_IN_DIR(src, new_junction, NORTHWEST, NORTHWEST_JUNCTION) + SET_ADJ_IN_DIR(src, new_junction, new_conn_junction, NORTHWEST, NORTHWEST_JUNCTION) if(new_junction & EAST_JUNCTION) - SET_ADJ_IN_DIR(src, new_junction, NORTHEAST, NORTHEAST_JUNCTION) + SET_ADJ_IN_DIR(src, new_junction, new_conn_junction, NORTHEAST, NORTHEAST_JUNCTION) if(new_junction & SOUTH_JUNCTION) if(new_junction & WEST_JUNCTION) - SET_ADJ_IN_DIR(src, new_junction, SOUTHWEST, SOUTHWEST_JUNCTION) + SET_ADJ_IN_DIR(src, new_junction, new_conn_junction, SOUTHWEST, SOUTHWEST_JUNCTION) if(new_junction & EAST_JUNCTION) - SET_ADJ_IN_DIR(src, new_junction, SOUTHEAST, SOUTHEAST_JUNCTION) + SET_ADJ_IN_DIR(src, new_junction, new_conn_junction, SOUTHEAST, SOUTHEAST_JUNCTION) set_smoothed_icon_state(new_junction) - + if(smoothing_flags & SMOOTH_CONNECTORS) + if(new_conn_junction & NORTH_JUNCTION) + new_conn_junction |= new_junction & (NORTHEAST_JUNCTION | NORTHWEST_JUNCTION) + if(new_conn_junction & SOUTH_JUNCTION) + new_conn_junction |= new_junction & (SOUTHEAST_JUNCTION | SOUTHWEST_JUNCTION) + if(new_conn_junction & EAST_JUNCTION) + new_conn_junction |= new_junction & (NORTHEAST_JUNCTION | SOUTHEAST_JUNCTION) + if(new_conn_junction & WEST_JUNCTION) + new_conn_junction |= new_junction & (NORTHWEST_JUNCTION | SOUTHWEST_JUNCTION) + set_connector_overlay(new_conn_junction) ///Changes the icon state based on the new junction bitmask. Returns the old junction value. /atom/proc/set_smoothed_icon_state(new_junction) @@ -348,6 +367,18 @@ DEFINE_BITFIELD(smoothing_junction, list( smoothing_junction = new_junction icon_state = "[base_icon_state]-[smoothing_junction]" +/atom/proc/set_connector_overlay(new_conn_junction) + if(new_conn_junction == connector_junction) + return + cut_overlay(connector_overlay) + + connector_junction = new_conn_junction + if(!connector_junction) + connector_overlay = null + return + + connector_overlay = iconstate2appearance(connector_icon, "[connector_icon_state]-[connector_junction]") + add_overlay(connector_overlay) /turf/closed/set_smoothed_icon_state(new_junction) . = ..() diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 37c68ea21db5..6fb205e3e2fd 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -1,6 +1,3 @@ -/proc/random_blood_type() - return pick(4;"O-", 36;"O+", 3;"A-", 28;"A+", 1;"B-", 20;"B+", 1;"AB-", 5;"AB+") - /proc/random_prosthetic() . = list(BODY_ZONE_L_ARM = PROSTHETIC_NORMAL, BODY_ZONE_R_ARM = PROSTHETIC_NORMAL, BODY_ZONE_L_LEG = PROSTHETIC_NORMAL, BODY_ZONE_R_LEG = PROSTHETIC_NORMAL) .[pick(.)] = PROSTHETIC_ROBOTIC diff --git a/code/_compile_options.dm b/code/_compile_options.dm index 4546683816f2..b4a6ececc0da 100644 --- a/code/_compile_options.dm +++ b/code/_compile_options.dm @@ -72,14 +72,15 @@ // If you think you need more, rethink it #define MAX_ATOM_OVERLAYS 100 -#define AUXMOS (world.system_type == MS_WINDOWS ? "auxtools/auxmos.dll" : __detect_auxmos()) +#define AUXMOS (world.system_type == MS_WINDOWS ? "auxmos.dll" : __detect_auxmos()) /proc/__detect_auxmos() - if (fexists("./libauxmos.so")) - return "./libauxmos.so" - else if (fexists("./auxtools/libauxmos.so")) - return "./auxtools/libauxmos.so" - else if (fexists("[world.GetConfig("env", "HOME")]/.byond/bin/libauxmos.so")) - return "[world.GetConfig("env", "HOME")]/.byond/bin/libauxmos.so" - else - CRASH("Could not find libauxmos.so") + var/static/auxmos_path + if(!auxmos_path) + if (fexists("./libauxmos.so")) + auxmos_path = "./libauxmos.so" + else if (fexists("[world.GetConfig("env", "HOME")]/.byond/bin/libauxmos.so")) + auxmos_path = "[world.GetConfig("env", "HOME")]/.byond/bin/libauxmos.so" + else + CRASH("Could not find libauxmos.so") + return auxmos_path diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index c4cd9da0fd0c..70d11991aa48 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -199,7 +199,7 @@ GLOBAL_LIST_EMPTY(female_clothing_icons) //Alternate species icons GLOBAL_LIST_EMPTY(species_clothing_icons) -GLOBAL_LIST_INIT(scarySounds, list('sound/weapons/thudswoosh.ogg','sound/weapons/taser.ogg','sound/weapons/armbomb.ogg','sound/voice/hiss1.ogg','sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg','sound/voice/hiss5.ogg','sound/voice/hiss6.ogg','sound/effects/glassbr1.ogg','sound/effects/glassbr2.ogg','sound/effects/glassbr3.ogg','sound/items/welder.ogg','sound/items/welder2.ogg','sound/machines/airlock.ogg','sound/effects/clownstep1.ogg','sound/effects/clownstep2.ogg')) +GLOBAL_LIST_INIT(scarySounds, list('sound/weapons/thudswoosh.ogg','sound/weapons/taser.ogg','sound/weapons/armbomb.ogg','sound/voice/hiss1.ogg','sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg','sound/voice/hiss5.ogg','sound/voice/hiss6.ogg','sound/effects/glassbr1.ogg','sound/effects/glassbr2.ogg','sound/effects/glassbr3.ogg','sound/items/welder.ogg','sound/items/welder2.ogg','sound/machines/airlocks/standard/open.ogg','sound/effects/clownstep1.ogg','sound/effects/clownstep2.ogg')) // Reference list for disposal sort junctions. Set the sortType variable on disposal sort junctions to diff --git a/code/_globalvars/lists/mobs.dm b/code/_globalvars/lists/mobs.dm index 4fbd94b64561..7aac542b763f 100644 --- a/code/_globalvars/lists/mobs.dm +++ b/code/_globalvars/lists/mobs.dm @@ -46,6 +46,14 @@ GLOBAL_LIST_EMPTY(mob_config_movespeed_type_lookup) GLOBAL_LIST_EMPTY(emote_list) +GLOBAL_LIST_INIT(blood_types, generate_blood_types()) + +/proc/generate_blood_types() + . = list() + for(var/path in subtypesof(/datum/blood_type)) + var/datum/blood_type/new_type = new path() + .[new_type.name] = new_type + /proc/update_config_movespeed_type_lookup(update_mobs = TRUE) var/list/mob_types = list() var/list/entry_value = CONFIG_GET(keyed_list/multiplicative_movespeed) diff --git a/code/_globalvars/lists/names.dm b/code/_globalvars/lists/names.dm index 6f8cb774b698..0b517e50160c 100644 --- a/code/_globalvars/lists/names.dm +++ b/code/_globalvars/lists/names.dm @@ -4,6 +4,7 @@ GLOBAL_LIST_INIT(wizard_second, world.file2list("strings/names/wizardsecond.txt" GLOBAL_LIST_INIT(ninja_titles, world.file2list("strings/names/ninjatitle.txt")) GLOBAL_LIST_INIT(ninja_names, world.file2list("strings/names/ninjaname.txt")) GLOBAL_LIST_INIT(commando_names, world.file2list("strings/names/death_commando.txt")) +GLOBAL_LIST_INIT(twinkle_names, world.file2list("strings/names/twinkle.txt")) GLOBAL_LIST_INIT(first_names, world.file2list("strings/names/first.txt")) GLOBAL_LIST_INIT(first_names_male, world.file2list("strings/names/first_male.txt")) GLOBAL_LIST_INIT(first_names_female, world.file2list("strings/names/first_female.txt")) diff --git a/code/_onclick/hud/_defines.dm b/code/_onclick/hud/_defines.dm index b236a4a41d5c..12b475a0f37e 100644 --- a/code/_onclick/hud/_defines.dm +++ b/code/_onclick/hud/_defines.dm @@ -134,7 +134,6 @@ #define ui_ai_track_with_camera "SOUTH:6,WEST+2" #define ui_ai_camera_light "SOUTH:6,WEST+3" #define ui_ai_crew_monitor "SOUTH:6,WEST+4" -#define ui_ai_crew_manifest "SOUTH:6,WEST+5" #define ui_ai_alerts "SOUTH:6,WEST+6" #define ui_ai_announcement "SOUTH:6,WEST+7" #define ui_ai_shuttle "SOUTH:6,WEST+8" @@ -155,7 +154,6 @@ #define ui_pai_light "SOUTH:6,WEST+4" #define ui_pai_newscaster "SOUTH:6,WEST+5" #define ui_pai_host_monitor "SOUTH:6,WEST+6" -#define ui_pai_crew_manifest "SOUTH:6,WEST+7" #define ui_pai_state_laws "SOUTH:6,WEST+8" #define ui_pai_pda_send "SOUTH:6,WEST+9" #define ui_pai_pda_log "SOUTH:6,WEST+10" diff --git a/code/_onclick/hud/ai.dm b/code/_onclick/hud/ai.dm index 4be7d857b540..3c4a160be811 100644 --- a/code/_onclick/hud/ai.dm +++ b/code/_onclick/hud/ai.dm @@ -56,16 +56,6 @@ var/mob/living/silicon/ai/AI = usr GLOB.crewmonitor.show(AI,AI) -/atom/movable/screen/ai/crew_manifest - name = "Crew Manifest" - icon_state = "manifest" - -/atom/movable/screen/ai/crew_manifest/Click() - if(..()) - return - var/mob/living/silicon/ai/AI = usr - AI.ai_roster() - /atom/movable/screen/ai/alerts name = "Show Alerts" icon_state = "alerts" @@ -215,12 +205,6 @@ using.hud = src static_inventory += using -//Crew Manifest - using = new /atom/movable/screen/ai/crew_manifest() - using.screen_loc = ui_ai_crew_manifest - using.hud = src - static_inventory += using - //Alerts using = new /atom/movable/screen/ai/alerts() using.screen_loc = ui_ai_alerts diff --git a/code/_onclick/hud/pai.dm b/code/_onclick/hud/pai.dm index 40c93d2db2c7..7e439b4a9db0 100644 --- a/code/_onclick/hud/pai.dm +++ b/code/_onclick/hud/pai.dm @@ -92,16 +92,6 @@ to_chat(src, "You are not being carried by anyone!") return 0 -/atom/movable/screen/pai/crew_manifest - name = "Crew Manifest" - icon_state = "manifest" - -/atom/movable/screen/pai/crew_manifest/Click() - if(!..()) - return - var/mob/living/silicon/pai/pAI = usr - pAI.ai_roster() - /atom/movable/screen/pai/state_laws name = "State Laws" icon_state = "state_laws" @@ -209,11 +199,6 @@ using.screen_loc = ui_pai_host_monitor static_inventory += using -// Crew Manifest - using = new /atom/movable/screen/pai/crew_manifest() - using.screen_loc = ui_pai_crew_manifest - static_inventory += using - // Laws using = new /atom/movable/screen/pai/state_laws() using.screen_loc = ui_pai_state_laws diff --git a/code/controllers/subsystem/icon_smooth.dm b/code/controllers/subsystem/icon_smooth.dm index 1623aa10422b..9695be30e5ef 100644 --- a/code/controllers/subsystem/icon_smooth.dm +++ b/code/controllers/subsystem/icon_smooth.dm @@ -9,6 +9,11 @@ SUBSYSTEM_DEF(icon_smooth) var/list/smooth_queue = list() var/list/deferred = list() + /// An associative list matching atom types to their typecaches of connector exceptions. Their no_connector_typecache var is overridden to the + /// element in this list associated with their type; if no such element exists, and their no_connector_typecache is nonempty, the typecache is created + /// according to the type's default value for no_connector_typecache, that typecache is added to this list, and the variable is set to that typecache. + var/list/type_no_connector_typecaches = list() + /datum/controller/subsystem/icon_smooth/fire() var/list/cached = smooth_queue while(cached.len) @@ -60,3 +65,12 @@ SUBSYSTEM_DEF(icon_smooth) thing.smoothing_flags &= ~SMOOTH_QUEUED smooth_queue -= thing deferred -= thing + +/datum/controller/subsystem/icon_smooth/proc/get_no_connector_typecache(cache_key, list/no_connector_types, connector_strict_typing) + var/list/cached_typecache = type_no_connector_typecaches[cache_key] + if(cached_typecache) + return cached_typecache + + var/list/new_typecache = typecacheof(no_connector_types, only_root_path = connector_strict_typing) + type_no_connector_typecaches[cache_key] = new_typecache + return new_typecache diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm index 03bd6d3d4948..34a2133e31fb 100644 --- a/code/controllers/subsystem/shuttle.dm +++ b/code/controllers/subsystem/shuttle.dm @@ -64,6 +64,7 @@ SUBSYSTEM_DEF(shuttle) else var/obj/docking_port/mobile/M = requester message_admins("Shuttle [M] repeatedly failed to create transit zone.") + log_runtime("Shuttle [M] repeatedly failed to create transit zone.") if(MC_TICK_CHECK) break @@ -413,13 +414,26 @@ SUBSYSTEM_DEF(shuttle) data["shuttles"] = list() for(var/obj/docking_port/mobile/M as anything in mobile) var/list/L = list() + + if(M.current_ship) + L["type"] = "[M.current_ship.source_template ? (M.current_ship.source_template.short_name ? M.current_ship.source_template.short_name : M.current_ship.source_template.name) : "Custom"]" + else + L["type"] = "???" + L["name"] = M.name L["id"] = REF(M) L["timer"] = M.timer L["can_fly"] = TRUE if (M.mode != SHUTTLE_IDLE) L["mode"] = capitalize(M.mode) - L["status"] = M.getDbgStatusText() + + if(M.current_ship) + if(M.current_ship.docked_to) + L["position"] = "Docked at [M.current_ship.docked_to.name] ([M.current_ship.docked_to.x], [M.current_ship.docked_to.y])" + else + L["position"] = "Flying At ([M.current_ship.x], [M.current_ship.y])" + else + L["position"] = "???" data["shuttles"] += list(L) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index cfb250c607f9..5fd2805507b7 100644 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -358,7 +358,7 @@ SUBSYSTEM_DEF(ticker) m = pick(memetips) if(m) - to_chat(world, "Tip of the round: [html_encode(m)]") + to_chat(world, span_purple(examine_block("Tip of the round: [html_encode(m)]"))) /datum/controller/subsystem/ticker/proc/check_queue() if(!queued_players.len) diff --git a/code/datums/blood_type.dm b/code/datums/blood_type.dm new file mode 100644 index 000000000000..9541699db92c --- /dev/null +++ b/code/datums/blood_type.dm @@ -0,0 +1,70 @@ +/datum/blood_type + /// Displayed name of the blood type. + var/name = "?" + /// Shown color of the blood type. + var/color = COLOR_BLOOD + /// Blood types that are safe to use with people that have this blood type. + var/compatible_types = list() + +/datum/blood_type/a_minus + name = "A-" + compatible_types = list(/datum/blood_type/a_minus, /datum/blood_type/o_minus) + +/datum/blood_type/a_plus + name = "A+" + compatible_types = list(/datum/blood_type/a_minus, /datum/blood_type/a_plus, /datum/blood_type/o_minus, /datum/blood_type/o_plus) + +/datum/blood_type/b_minus + name = "B-" + compatible_types = list(/datum/blood_type/b_minus, /datum/blood_type/o_minus) + +/datum/blood_type/b_plus + name = "B+" + compatible_types = list(/datum/blood_type/b_minus, /datum/blood_type/b_plus, /datum/blood_type/o_minus, /datum/blood_type/o_plus) + +/datum/blood_type/ab_minus + name = "AB-" + compatible_types = list(/datum/blood_type/b_minus, /datum/blood_type/a_minus, /datum/blood_type/ab_minus, /datum/blood_type/o_minus) + +/datum/blood_type/ab_plus + name = "AB+" + compatible_types = list(/datum/blood_type/b_minus, /datum/blood_type/a_minus, /datum/blood_type/ab_minus, /datum/blood_type/o_minus) + +/datum/blood_type/o_minus + name = "O-" + compatible_types = list(/datum/blood_type/o_minus) + +/datum/blood_type/o_plus + name = "O+" + compatible_types = list(/datum/blood_type/o_minus, /datum/blood_type/o_plus) + +/datum/blood_type/xenomorph //for xenomorph gib dna + name = "X" + color = rgb(0, 255, 0) + compatible_types = list(/datum/blood_type/xenomorph) + +/datum/blood_type/animal //for simplemob gib dna + name = "Y-" + compatible_types = list(/datum/blood_type/animal) + +/datum/blood_type/lizard + name = "L" + color = "#009696" + compatible_types = list(/datum/blood_type/lizard) + +/datum/blood_type/elzuosa + name = "E" + color = "#7fff7f" + compatible_types = list(/datum/blood_type/elzuosa) + +/datum/blood_type/synthetic //Blood for synthetic/robotic species + name = "Coolant" + color = "#dddeff" + compatible_types = list(/datum/blood_type/synthetic) + +/datum/blood_type/universal + name = "U" + +/datum/blood_type/universal/New() + . = ..() + compatible_types = subtypesof(/datum/blood_type) diff --git a/code/datums/components/bloodysoles.dm b/code/datums/components/bloodysoles.dm new file mode 100644 index 000000000000..5f16085b7927 --- /dev/null +++ b/code/datums/components/bloodysoles.dm @@ -0,0 +1,289 @@ + + +//Component for clothing items that can pick up blood from decals and spread it around everywhere when walking, such as shoes or suits with integrated shoes. + +/datum/component/bloodysoles + /// The type of the last grub pool we stepped in, used to decide the type of footprints to make + var/last_blood_state = BLOOD_STATE_NOT_BLOODY + + /// How much of each grubby type we have on our feet + var/list/bloody_shoes = list(BLOOD_STATE_HUMAN = 0,BLOOD_STATE_XENO = 0, BLOOD_STATE_OIL = 0, BLOOD_STATE_NOT_BLOODY = 0) + + /// The ITEM_SLOT_* slot the item is equipped on, if it is. + var/equipped_slot + + /// The parent item but casted into atom type for easier use. + var/atom/parent_atom + + /// Either the mob carrying the item, or the mob itself for the /feet component subtype + var/mob/living/carbon/wielder + + /// The world.time when we last picked up blood + var/last_pickup + +/datum/component/bloodysoles/Initialize() + if(!isclothing(parent)) + return COMPONENT_INCOMPATIBLE + parent_atom = parent + + RegisterSignal(parent, COMSIG_ITEM_EQUIPPED, .proc/on_equip) + RegisterSignal(parent, COMSIG_ITEM_DROPPED, .proc/on_drop) + RegisterSignal(parent, COMSIG_COMPONENT_CLEAN_ACT, .proc/on_clean) + +//Unregisters from the wielder if necessary + +/datum/component/bloodysoles/proc/unregister() + if(!QDELETED(wielder)) + UnregisterSignal(wielder, COMSIG_MOVABLE_MOVED) + UnregisterSignal(wielder, COMSIG_STEP_ON_BLOOD) + wielder = null + equipped_slot = null + + +//Returns true if the parent item is obscured by something else that the wielder is wearing + +/datum/component/bloodysoles/proc/is_obscured() + return equipped_slot in wielder.check_obscured_slots(TRUE) + +//Run to update the icon of the parent + +/datum/component/bloodysoles/proc/update_icon() + var/obj/item/parent_item = parent + parent_item.update_slot_icon() + +//Run to equally share the blood between us and a decal +/datum/component/bloodysoles/proc/share_blood(obj/effect/decal/cleanable/pool) + last_blood_state = pool.blood_state + + // Share the blood between our boots and the blood pool + var/total_bloodiness = pool.bloodiness + bloody_shoes[last_blood_state] + + // We can however be limited by how much blood we can hold + var/new_our_bloodiness = min(BLOOD_ITEM_MAX, total_bloodiness / 2) + + bloody_shoes[last_blood_state] = new_our_bloodiness + pool.bloodiness = total_bloodiness - new_our_bloodiness // Give the pool the remaining blood incase we were limited + + parent_atom.add_blood_DNA(pool.return_blood_DNA()) + update_icon() + +//Find a blood decal on a turf that matches our last_blood_state + +/datum/component/bloodysoles/proc/find_pool_by_blood_state(turf/turfLoc, typeFilter = null) + for(var/obj/effect/decal/cleanable/blood/pool in turfLoc) + if(pool.blood_state == last_blood_state && (!typeFilter || istype(pool, typeFilter))) + return pool + + +//Adds the parent type to the footprint's shoe_types var + +/datum/component/bloodysoles/proc/add_parent_to_footprint(obj/effect/decal/cleanable/blood/footprints/FP) + FP.shoe_types |= parent.type + +/* +Called when the parent item is equipped by someone +Used to register our wielder +*/ +/datum/component/bloodysoles/proc/on_equip(datum/source, mob/equipper, slot) + SIGNAL_HANDLER + + if(!iscarbon(equipper)) + return + var/obj/item/parent_item = parent + if(!(parent_item.slot_flags & slot)) + unregister() + return + + equipped_slot = slot + wielder = equipper + RegisterSignal(wielder, COMSIG_MOVABLE_MOVED, .proc/on_moved) + RegisterSignal(wielder, COMSIG_STEP_ON_BLOOD, .proc/on_step_blood) + +/* +Called when the parent item has been dropped +Used to deregister our wielder +*/ +/datum/component/bloodysoles/proc/on_drop(datum/source, mob/dropper) + SIGNAL_HANDLER + + unregister() + +/* +Called when the wielder has moved +Used to make bloody footprints on the ground +*/ +/datum/component/bloodysoles/proc/on_moved(datum/source, OldLoc, Dir, Forced) + SIGNAL_HANDLER + + if(bloody_shoes[last_blood_state] == 0) + return + if(QDELETED(wielder) || is_obscured()) + return + if(!(wielder.mobility_flags & MOBILITY_STAND) || !wielder.has_gravity(wielder.loc)) + return + + var/half_our_blood = bloody_shoes[last_blood_state] / 2 + + // Add footprints in old loc if we have enough cream + if(half_our_blood >= BLOOD_FOOTPRINTS_MIN) + var/turf/oldLocTurf = get_turf(OldLoc) + var/obj/effect/decal/cleanable/blood/footprints/oldLocFP = find_pool_by_blood_state(oldLocTurf, /obj/effect/decal/cleanable/blood/footprints) + if(oldLocFP) + // Footprints found in the tile we left, add us to it + add_parent_to_footprint(oldLocFP) + if (!(oldLocFP.exited_dirs & wielder.dir)) + oldLocFP.exited_dirs |= wielder.dir + oldLocFP.update_icon() + else if(find_pool_by_blood_state(oldLocTurf)) + // No footprints in the tile we left, but there was some other blood pool there. Add exit footprints on it + bloody_shoes[last_blood_state] -= half_our_blood + update_icon() + + + oldLocFP = new(oldLocTurf) + if(!QDELETED(oldLocFP)) ///prints merged + oldLocFP.blood_state = last_blood_state + oldLocFP.exited_dirs |= wielder.dir + add_parent_to_footprint(oldLocFP) + oldLocFP.bloodiness = half_our_blood + oldLocFP.add_blood_DNA(parent_atom.return_blood_DNA()) + oldLocFP.update_icon() + + half_our_blood = bloody_shoes[last_blood_state] / 2 + + // If we picked up the blood on this tick in on_step_blood, don't make footprints at the same place + if(last_pickup && last_pickup == world.time) + return + + // Create new footprints + if(half_our_blood >= BLOOD_FOOTPRINTS_MIN) + bloody_shoes[last_blood_state] -= half_our_blood + update_icon() + + var/obj/effect/decal/cleanable/blood/footprints/FP = new(get_turf(parent_atom)) + if(!QDELETED(FP)) ///prints merged + FP.blood_state = last_blood_state + FP.entered_dirs |= wielder.dir + add_parent_to_footprint(FP) + FP.bloodiness = half_our_blood + FP.add_blood_DNA(parent_atom.return_blood_DNA()) + FP.update_icon() + + +/* +Called when the wielder steps in a pool of blood +Used to make the parent item bloody +*/ +/datum/component/bloodysoles/proc/on_step_blood(datum/source, obj/effect/decal/cleanable/pool) + SIGNAL_HANDLER + + if(QDELETED(wielder) || is_obscured()) + return + + if(istype(pool, /obj/effect/decal/cleanable/blood/footprints) && pool.blood_state == last_blood_state) + // The pool we stepped in was actually footprints with the same type + var/obj/effect/decal/cleanable/blood/footprints/pool_FP = pool + add_parent_to_footprint(pool_FP) + if((bloody_shoes[last_blood_state] / 2) >= BLOOD_FOOTPRINTS_MIN && !(pool_FP.entered_dirs & wielder.dir)) + // If our feet are bloody enough, add an entered dir + pool_FP.entered_dirs |= wielder.dir + pool_FP.update_icon() + + share_blood(pool) + + last_pickup = world.time + +/* +Called when the parent item is being washed +*/ +/datum/component/bloodysoles/proc/on_clean(datum/source, clean_types) + SIGNAL_HANDLER + + if(!(clean_types & CLEAN_TYPE_BLOOD) || last_blood_state == BLOOD_STATE_NOT_BLOODY) + return + + bloody_shoes = list(BLOOD_STATE_HUMAN = 0, BLOOD_STATE_XENO = 0, BLOOD_STATE_OIL = 0, BLOOD_STATE_NOT_BLOODY = 0) + last_blood_state = BLOOD_STATE_NOT_BLOODY + update_icon() + return TRUE + + +/* +Like its parent but can be applied to carbon mobs instead of clothing items +*/ + +/datum/component/bloodysoles/feet + var/static/mutable_appearance/bloody_feet + +/datum/component/bloodysoles/feet/Initialize() + if(!iscarbon(parent)) + return COMPONENT_INCOMPATIBLE + parent_atom = parent + wielder = parent + + if(!bloody_feet) + bloody_feet = mutable_appearance('icons/effects/blood.dmi', "shoeblood", SHOES_LAYER) + + RegisterSignal(parent, COMSIG_COMPONENT_CLEAN_ACT, .proc/on_clean) + RegisterSignal(parent, COMSIG_MOVABLE_MOVED, .proc/on_moved) + RegisterSignal(parent, COMSIG_STEP_ON_BLOOD, .proc/on_step_blood) + RegisterSignal(parent, COMSIG_CARBON_UNEQUIP_SHOECOVER, .proc/unequip_shoecover) + RegisterSignal(parent, COMSIG_CARBON_EQUIP_SHOECOVER, .proc/equip_shoecover) + +/datum/component/bloodysoles/feet/update_icon() + . = list() + if(ishuman(wielder))// Monkeys get no bloody feet :( + if(HAS_BLOOD_DNA(wielder)) + bloody_feet.color = bloody_feet.color = get_blood_dna_color(wielder.return_blood_DNA()) + . += bloody_feet + if(bloody_shoes[BLOOD_STATE_HUMAN] > 0 && !is_obscured()) + wielder.remove_overlay(SHOES_LAYER) + wielder.overlays_standing[SHOES_LAYER] = bloody_feet + wielder.apply_overlay(SHOES_LAYER) + else + wielder.update_inv_shoes() + +/datum/component/bloodysoles/feet/add_parent_to_footprint(obj/effect/decal/cleanable/blood/footprints/FP) + if(ismonkey(wielder)) + FP.species_types |= "monkey" + return + + if(!ishuman(wielder)) + FP.species_types |= "unknown" + return + + // Find any leg of our human and add that to the footprint, instead of the default which is to just add the human type + for(var/X in wielder.bodyparts) + var/obj/item/bodypart/affecting = X + if(affecting.body_part == LEG_RIGHT || affecting.body_part == LEG_LEFT) + if(!affecting.bodypart_disabled) + FP.species_types |= affecting.limb_id + break + + +/datum/component/bloodysoles/feet/is_obscured() + if(wielder.shoes) + return TRUE + return ITEM_SLOT_FEET in wielder.check_obscured_slots(TRUE) + +/datum/component/bloodysoles/feet/on_moved(datum/source, OldLoc, Dir, Forced) + if(wielder.num_legs < 2) + return + + ..() + +/datum/component/bloodysoles/feet/on_step_blood(datum/source, obj/effect/decal/cleanable/pool) + if(wielder.num_legs < 2) + return + + ..() + +/datum/component/bloodysoles/feet/proc/unequip_shoecover(datum/source) + SIGNAL_HANDLER + + update_icon() + +/datum/component/bloodysoles/feet/proc/equip_shoecover(datum/source) + SIGNAL_HANDLER + + update_icon() diff --git a/code/datums/components/decal.dm b/code/datums/components/decal.dm deleted file mode 100644 index 943248ecc58d..000000000000 --- a/code/datums/components/decal.dm +++ /dev/null @@ -1,96 +0,0 @@ -/datum/component/decal - dupe_mode = COMPONENT_DUPE_ALLOWED - can_transfer = TRUE - var/cleanable - var/description - var/mutable_appearance/pic - - var/first_dir // This only stores the dir arg from init - -/datum/component/decal/Initialize(_icon, _icon_state, _dir, _cleanable=FALSE, _color, _layer=TURF_LAYER, _description, _alpha=255) - if(!isatom(parent) || !generate_appearance(_icon, _icon_state, _dir, _layer, _color, _alpha)) - return COMPONENT_INCOMPATIBLE - first_dir = _dir - description = _description - cleanable = _cleanable - - apply() - -/datum/component/decal/RegisterWithParent() - if(first_dir) - RegisterSignal(parent, COMSIG_ATOM_DIR_CHANGE, .proc/rotate_react) - if(cleanable != FALSE) - RegisterSignal(parent, COMSIG_COMPONENT_CLEAN_ACT, .proc/clean_react) - if(description) - RegisterSignal(parent, COMSIG_PARENT_EXAMINE, .proc/examine) - -/datum/component/decal/UnregisterFromParent() - UnregisterSignal(parent, list(COMSIG_ATOM_DIR_CHANGE, COMSIG_COMPONENT_CLEAN_ACT, COMSIG_PARENT_EXAMINE)) - -/datum/component/decal/Destroy() - remove() - return ..() - -/datum/component/decal/PreTransfer() - remove() - -/datum/component/decal/PostTransfer() - remove() - apply() - -/datum/component/decal/proc/generate_appearance(_icon, _icon_state, _dir, _layer, _color, _alpha) - if(!_icon || !_icon_state) - return FALSE - // It has to be made from an image or dir breaks because of a byond bug - var/temp_image = image(_icon, null, _icon_state, _layer, _dir) - pic = new(temp_image) - pic.color = _color - pic.alpha = _alpha - pic.appearance_flags = RESET_COLOR - return TRUE - -/datum/component/decal/proc/apply(atom/thing) - var/atom/master = thing || parent - RegisterSignal(master,COMSIG_ATOM_UPDATE_OVERLAYS,.proc/apply_overlay) - if(master.flags_1 & INITIALIZED_1) - master.update_icon() //could use some queuing here now maybe. - else - RegisterSignal(master,COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZE,.proc/late_update_icon) - if(isitem(master)) - addtimer(CALLBACK(master, /obj/item/.proc/update_slot_icon), 0, TIMER_UNIQUE) - -/datum/component/decal/proc/late_update_icon(atom/source) - if(source && istype(source)) - source.update_icon() - UnregisterSignal(source,COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZE) - -/datum/component/decal/proc/apply_overlay(atom/source, list/overlay_list) - overlay_list += pic - -/datum/component/decal/proc/remove(atom/thing) - var/atom/master = thing || parent - UnregisterSignal(master,COMSIG_ATOM_UPDATE_OVERLAYS) - master.update_icon() - if(isitem(master)) - addtimer(CALLBACK(master, /obj/item/.proc/update_slot_icon), 0, TIMER_UNIQUE) - -/datum/component/decal/proc/rotate_react(datum/source, old_dir, new_dir) - SIGNAL_HANDLER - - if(old_dir == new_dir) - return - remove() - pic.dir = turn(pic.dir, dir2angle(old_dir) - dir2angle(new_dir)) - apply() - -/datum/component/decal/proc/clean_react(datum/source, clean_types) - SIGNAL_HANDLER - - if(clean_types & cleanable) - qdel(src) - return TRUE - -/datum/component/decal/proc/examine(datum/source, mob/user, list/examine_list) - SIGNAL_HANDLER - - examine_list += description diff --git a/code/datums/components/decals/blood.dm b/code/datums/components/decals/blood.dm deleted file mode 100644 index e06c563f0d79..000000000000 --- a/code/datums/components/decals/blood.dm +++ /dev/null @@ -1,41 +0,0 @@ -/datum/component/decal/blood - dupe_mode = COMPONENT_DUPE_UNIQUE - -/datum/component/decal/blood/Initialize(_icon, _icon_state, _dir, _cleanable=CLEAN_TYPE_BLOOD, _color, _layer=ABOVE_OBJ_LAYER) - if(!isitem(parent)) - return COMPONENT_INCOMPATIBLE - . = ..() - RegisterSignal(parent, COMSIG_ATOM_GET_EXAMINE_NAME, .proc/get_examine_name) - -/datum/component/decal/blood/generate_appearance(_icon, _icon_state, _dir, _layer, _color) - var/obj/item/I = parent - if(!_icon) - _icon = 'icons/effects/blood.dmi' - if(!_icon_state) - _icon_state = "itemblood" - var/icon = initial(I.icon) - var/icon_state = initial(I.icon_state) - if(!icon || !icon_state) - // It's something which takes on the look of other items, probably - icon = I.icon - icon_state = I.icon_state - var/static/list/blood_splatter_appearances = list() - //try to find a pre-processed blood-splatter. otherwise, make a new one - var/index = "[REF(icon)]-[icon_state]" - pic = blood_splatter_appearances[index] - - if(!pic) - var/icon/blood_splatter_icon = icon(initial(I.icon), initial(I.icon_state), , 1) //we only want to apply blood-splatters to the initial icon_state for each object - blood_splatter_icon.Blend("#fff", ICON_ADD) //fills the icon_state with white (except where it's transparent) - blood_splatter_icon.Blend(icon(_icon, _icon_state), ICON_MULTIPLY) //adds blood and the remaining white areas become transparant - pic = mutable_appearance(blood_splatter_icon, initial(I.icon_state)) - blood_splatter_appearances[index] = pic - return TRUE - -/datum/component/decal/blood/proc/get_examine_name(datum/source, mob/user, list/override) - SIGNAL_HANDLER - - var/atom/A = parent - override[EXAMINE_POSITION_ARTICLE] = A.gender == PLURAL? "some" : "a" - override[EXAMINE_POSITION_BEFORE] = " blood-stained " - return COMPONENT_EXNAME_CHANGED diff --git a/code/datums/components/forensics.dm b/code/datums/components/forensics.dm index d7cb4b009f4d..cac8fb8eb42b 100644 --- a/code/datums/components/forensics.dm +++ b/code/datums/components/forensics.dm @@ -7,10 +7,10 @@ var/list/fibers //assoc print = print /datum/component/forensics/InheritComponent(datum/component/forensics/F, original) //Use of | and |= being different here is INTENTIONAL. - fingerprints = fingerprints | F.fingerprints - hiddenprints = hiddenprints | F.hiddenprints - blood_DNA = blood_DNA | F.blood_DNA - fibers = fibers | F.fibers + fingerprints = LAZY_LISTS_OR(fingerprints, F.fingerprints) + hiddenprints = LAZY_LISTS_OR(hiddenprints, F.hiddenprints) + blood_DNA = LAZY_LISTS_OR(blood_DNA, F.blood_DNA) + fibers = LAZY_LISTS_OR(fibers, F.fibers) check_blood() return ..() @@ -43,10 +43,14 @@ /datum/component/forensics/proc/wipe_blood_DNA() blood_DNA = null - if(isitem(parent)) - qdel(parent.GetComponent(/datum/component/decal/blood)) return TRUE +/datum/component/forensics/proc/is_bloody(datum/source, clean_types) + if(!isitem(parent)) + return FALSE + + return length(blood_DNA) > 0 + /datum/component/forensics/proc/wipe_fibers() fibers = null return TRUE @@ -186,4 +190,4 @@ return if(!length(blood_DNA)) return - parent.LoadComponent(/datum/component/decal/blood) + parent.AddElement(/datum/element/decal/blood, _color = get_blood_dna_color(blood_DNA)) diff --git a/code/datums/components/mood.dm b/code/datums/components/mood.dm index f5b6ac47640c..d3a4ec9c30b2 100644 --- a/code/datums/components/mood.dm +++ b/code/datums/components/mood.dm @@ -44,7 +44,7 @@ RegisterSignal(parent, COMSIG_ADD_MOOD_EVENT_RND, .proc/add_event) //Mood events that are only for RnD members /datum/component/mood/proc/print_mood(mob/user) - var/msg = "*---------*\nMy current mental status:\n" + var/msg = "[span_info("My current mental status:")]\n" msg += "My current sanity: " //Long term switch(sanity) if(SANITY_GREAT to INFINITY) @@ -88,7 +88,7 @@ msg += event.description else msg += "I don't have much of a reaction to anything right now.\n" - to_chat(user, msg) + to_chat(user, examine_block(msg)) ///Called after moodevent/s have been added/removed. /datum/component/mood/proc/update_mood() diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index 3b1c74236280..342fbe9e722e 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -264,7 +264,7 @@ var/datum/data/record/M = new() M.fields["id"] = id M.fields["name"] = H.real_name - M.fields["blood_type"] = H.dna.blood_type + M.fields["blood_type"] = H.dna.blood_type.name M.fields["b_dna"] = H.dna.unique_enzymes M.fields["mi_dis"] = "None" M.fields["mi_dis_d"] = "No minor disabilities have been declared." diff --git a/code/datums/dna.dm b/code/datums/dna.dm index fc1f8a0e1ed7..718eba629bf8 100644 --- a/code/datums/dna.dm +++ b/code/datums/dna.dm @@ -3,7 +3,7 @@ /datum/dna var/unique_enzymes var/uni_identity - var/blood_type + var/datum/blood_type/blood_type var/datum/species/species = new /datum/species/human //The type of mutant race the player is if applicable (i.e. potato-man) var/list/features = list("FFF") //first value is mutant color var/real_name //Stores the real name of the person who originally got this dna datum. Used primarely for changelings, diff --git a/code/datums/elements/_element.dm b/code/datums/elements/_element.dm index ea78b3ebd10b..55abf0a85de1 100644 --- a/code/datums/elements/_element.dm +++ b/code/datums/elements/_element.dm @@ -23,7 +23,15 @@ return ELEMENT_INCOMPATIBLE SEND_SIGNAL(target, COMSIG_ELEMENT_ATTACH, src) if(element_flags & ELEMENT_DETACH) - RegisterSignal(target, COMSIG_PARENT_QDELETING, .proc/OnTargetDelete, override = TRUE) + RegisterSignal(target, COMSIG_PARENT_QDELETING, .proc/Detach, override = TRUE) + + /* + The override = TRUE here is to suppress runtimes happening because of the blood decal element + being applied multiple times to a same thing every time there is some bloody attacks, + which happens due to ludicrous use of check_blood() in forensics.dm, + and how elements system is design and coded; there isn't exactly a not-hacky + way to determine whether a datum has this particular element before adding it... + */ /datum/element/proc/OnTargetDelete(datum/source, force) SIGNAL_HANDLER diff --git a/code/datums/elements/decals/_decals.dm b/code/datums/elements/decals/_decals.dm new file mode 100644 index 000000000000..d0062da29224 --- /dev/null +++ b/code/datums/elements/decals/_decals.dm @@ -0,0 +1,106 @@ +/datum/element/decal + element_flags = ELEMENT_BESPOKE|ELEMENT_DETACH + id_arg_index = 2 + /// Whether this decal can be cleaned. + var/cleanable + /// A description this decal appends to the target's examine message. + var/description + /// The overlay applied by this decal to the target. + var/mutable_appearance/pic + /* + A short lecture on decal element collision on rotation + If a given decal's rotated version is identical to one of existing (at a same target), pre-rotation decals, + then the rotated decal won't stay after when the colliding pre-rotation decal gets rotated, + resulting in some decal elements colliding into nonexistence. This internal tick-tock prevents + such collision by forcing a non-collision. + */ + var/rotated + +/datum/element/decal/Attach(atom/target, _icon, _icon_state, _dir, _cleanable=FALSE, _color, _layer=TURF_LAYER, _description, _alpha=255, _rotated=FALSE) + . = ..() + if(!isatom(target) || (pic ? FALSE : !generate_appearance(_icon, _icon_state, _dir, _layer, _color, _alpha, target))) + return ELEMENT_INCOMPATIBLE + description = _description + cleanable = _cleanable + rotated = _rotated + + RegisterSignal(target,COMSIG_ATOM_UPDATE_OVERLAYS,.proc/apply_overlay, TRUE) + if(isturf(target)) + RegisterSignal(target,COMSIG_TURF_AFTER_SHUTTLE_MOVE,.proc/shuttlemove_react, TRUE) + if(target.flags_1 & INITIALIZED_1) + target.update_icon() //could use some queuing here now maybe. + else + RegisterSignal(target,COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZE,.proc/late_update_icon, TRUE) + if(isitem(target)) + INVOKE_ASYNC(target, /obj/item/.proc/update_slot_icon, TRUE) + if(_dir) + RegisterSignal(target, COMSIG_ATOM_DIR_CHANGE, .proc/rotate_react,TRUE) + if(_cleanable) + RegisterSignal(target, COMSIG_COMPONENT_CLEAN_ACT, .proc/clean_react,TRUE) + if(_description) + RegisterSignal(target, COMSIG_PARENT_EXAMINE, .proc/examine,TRUE) + +/** + * ## generate_appearance + * + * If the decal was not given an appearance, it will generate one based on the other given arguments. + * element won't be compatible if it cannot do either + * all args are fed into creating an image, they are byond vars for images you'll recognize in the byond docs + * (except source, source is the object whose appearance we're copying.) + */ + +/datum/element/decal/proc/generate_appearance(_icon, _icon_state, _dir, _layer, _color, _alpha, source) + if(!_icon || !_icon_state) + return FALSE + var/temp_image = image(_icon, null, _icon_state, _layer, _dir) + pic = new(temp_image) + pic.color = _color + pic.alpha = _alpha + pic.appearance_flags |= RESET_COLOR + return TRUE + +/datum/element/decal/Detach(atom/source, force) + UnregisterSignal(source, list(COMSIG_ATOM_DIR_CHANGE, COMSIG_COMPONENT_CLEAN_ACT, COMSIG_PARENT_EXAMINE, COMSIG_ATOM_UPDATE_OVERLAYS, COMSIG_TURF_AFTER_SHUTTLE_MOVE)) + source.update_icon() + if(isitem(source)) + INVOKE_ASYNC(source, /obj/item/.proc/update_slot_icon) + return ..() + +/datum/element/decal/proc/late_update_icon(atom/source) + SIGNAL_HANDLER + + if(source && istype(source)) + source.update_icon() + UnregisterSignal(source,COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZE) + + +/datum/element/decal/proc/apply_overlay(atom/source, list/overlay_list) + SIGNAL_HANDLER + + overlay_list += pic + +/datum/element/decal/proc/shuttlemove_react(datum/source, turf/newT) + SIGNAL_HANDLER + Detach(source) + newT.AddElement(/datum/element/decal, pic.icon, pic.icon_state, pic.dir, cleanable, pic.color, pic.layer, description, pic.alpha, rotated) + +/datum/element/decal/proc/rotate_react(datum/source, old_dir, new_dir) + SIGNAL_HANDLER + + if(old_dir == new_dir) + return + Detach(source) + source.AddElement(/datum/element/decal, pic.icon, pic.icon_state, angle2dir(dir2angle(pic.dir)+dir2angle(new_dir)-dir2angle(old_dir)), cleanable, pic.color, pic.layer, description, pic.alpha, !rotated) + +/datum/element/decal/proc/clean_react(datum/source, clean_types) + SIGNAL_HANDLER + + if(clean_types & cleanable) + Detach(source) + return TRUE + return NONE + +/datum/element/decal/proc/examine(datum/source, mob/user, list/examine_list) + SIGNAL_HANDLER + + examine_list += description diff --git a/code/datums/elements/decals/blood.dm b/code/datums/elements/decals/blood.dm new file mode 100644 index 000000000000..d5f30c4d0c57 --- /dev/null +++ b/code/datums/elements/decals/blood.dm @@ -0,0 +1,44 @@ +/datum/element/decal/blood + +/datum/element/decal/blood/Attach(datum/target, _icon, _icon_state, _dir, _cleanable=CLEAN_TYPE_BLOOD, _color, _layer=ABOVE_OBJ_LAYER) + if(!isitem(target)) + return ELEMENT_INCOMPATIBLE + + . = ..() + RegisterSignal(target, COMSIG_ATOM_GET_EXAMINE_NAME, .proc/get_examine_name, TRUE) + +/datum/element/decal/blood/Detach(atom/source, force) + UnregisterSignal(source, COMSIG_ATOM_GET_EXAMINE_NAME) + return ..() + +/datum/element/decal/blood/generate_appearance(_icon, _icon_state, _dir, _layer, _color, _alpha, source) + var/obj/item/I = source + if(!_icon) + _icon = 'icons/effects/blood.dmi' + if(!_icon_state) + _icon_state = "itemblood" + if(!_color) + _color = COLOR_BLOOD + var/item_icon = I.icon + var/item_icon_state = I.icon_state + var/static/list/blood_splatter_appearances = list() + //try to find a pre-processed blood-splatter. otherwise, make a new one + var/index = "[REF(item_icon)]-[item_icon_state]" + pic = blood_splatter_appearances[index] + + if(!pic) + var/icon/blood_splatter_icon = icon(I.icon, I.icon_state, null, 1) //we only want to apply blood-splatters to the initial icon_state for each object + blood_splatter_icon.Blend("#fff", ICON_ADD) //fills the icon_state with white (except where it's transparent) + blood_splatter_icon.Blend(icon(_icon, _icon_state), ICON_MULTIPLY) //adds blood and the remaining white areas become transparant + pic = mutable_appearance(blood_splatter_icon, initial(I.icon_state)) + pic.color = _color + blood_splatter_appearances[index] = pic + return TRUE + +/datum/element/decal/blood/proc/get_examine_name(datum/source, mob/user, list/override) + SIGNAL_HANDLER + + var/atom/A = source + override[EXAMINE_POSITION_ARTICLE] = A.gender == PLURAL? "some" : "a" + override[EXAMINE_POSITION_BEFORE] = " blood-stained " + return COMPONENT_EXNAME_CHANGED diff --git a/code/datums/ert.dm b/code/datums/ert.dm index c087575d5a31..c7038330974d 100644 --- a/code/datums/ert.dm +++ b/code/datums/ert.dm @@ -87,12 +87,3 @@ mission = "Create entertainment for the crew." polldesc = "a Code Rainbow Nanotrasen Emergency Response Party" code = "Rainbow" - -/datum/ert/solgov - roles = list(/datum/antagonist/ert/solgov) - leader_role = /datum/antagonist/ert/solgov/leader - teamsize = 7 - opendoors = FALSE - rename_team = "Hired SolGov Marines" - mission = "Assist in conflict resolution." - polldesc = "a military squad hired by Nanotrasen" diff --git a/code/datums/mapgen/planetary/JungleGenerator.dm b/code/datums/mapgen/planetary/JungleGenerator.dm index f3b3026693b9..b40f26b12a88 100644 --- a/code/datums/mapgen/planetary/JungleGenerator.dm +++ b/code/datums/mapgen/planetary/JungleGenerator.dm @@ -97,7 +97,11 @@ ) flora_spawn_chance = 90 mob_spawn_chance = 0.3 - mob_spawn_list = list(/mob/living/carbon/monkey = 5) + mob_spawn_list = list( + /mob/living/carbon/monkey = 10, + /mob/living/simple_animal/hostile/retaliate/chicken = 10, + /obj/effect/spawner/lootdrop/chicken/jungle/flock = 1 + ) /datum/biome/jungle/dense flora_spawn_chance = 100 @@ -115,13 +119,21 @@ /obj/structure/flora/ash/garden = 1, ) mob_spawn_chance = 0.6 - mob_spawn_list = list(/mob/living/simple_animal/hostile/gorilla = 1, /mob/living/carbon/monkey = 3) + mob_spawn_list = list( + /mob/living/simple_animal/hostile/gorilla = 1, + /mob/living/carbon/monkey = 6, + /mob/living/simple_animal/hostile/retaliate/chicken = 4, + /obj/effect/spawner/lootdrop/chicken/jungle/flock = 1 + ) /datum/biome/jungle/plains open_turf_types = list(/turf/open/floor/plating/grass/jungle/lit = 1) flora_spawn_chance = 50 mob_spawn_chance = 1 - mob_spawn_list = list(/mob/living/carbon/monkey = 1) + mob_spawn_list = list( + /mob/living/carbon/monkey = 1, + /mob/living/simple_animal/hostile/retaliate/chicken = 1 + ) /datum/biome/mudlands open_turf_types = list(/turf/open/floor/plating/dirt/jungle/dark/lit = 1) @@ -160,9 +172,16 @@ /obj/structure/flora/ash/puce = 1, ) mob_spawn_chance = 1 - mob_spawn_list = list(/mob/living/simple_animal/hostile/asteroid/wolf/random = 1, /mob/living/simple_animal/hostile/retaliate/bat = 1, /mob/living/simple_animal/hostile/retaliate/poison/snake) + mob_spawn_list = list( + /mob/living/simple_animal/hostile/asteroid/wolf/random = 1, + /mob/living/simple_animal/hostile/retaliate/bat = 1, + /mob/living/simple_animal/hostile/retaliate/poison/snake + ) feature_spawn_chance = 0.5 - feature_spawn_list = list(/obj/item/pickaxe/rusted = 1, /obj/structure/spawner/ice_moon = 1) + feature_spawn_list = list( + /obj/item/pickaxe/rusted = 1, + /obj/structure/spawner/ice_moon = 1 + ) /datum/biome/cave/jungle/dirt open_turf_types = list(/turf/open/floor/plating/dirt/jungle/wasteland = 1) @@ -207,7 +226,11 @@ /obj/structure/flora/ash/space/voidmelon = 1 ) mob_spawn_chance = 1 - mob_spawn_list = list(/mob/living/simple_animal/hostile/poison/bees/toxin = 1, /mob/living/simple_animal/hostile/mushroom = 1, /mob/living/simple_animal/pet/dog/corgi/capybara) + mob_spawn_list = list( + /mob/living/simple_animal/hostile/poison/bees/toxin = 1, + /mob/living/simple_animal/hostile/mushroom = 1, + /mob/living/simple_animal/pet/dog/corgi/capybara + ) /datum/biome/cave/lush/bright open_turf_types = list(/turf/open/floor/plating/grass/jungle/lit = 12, /turf/open/water/jungle/lit = 1) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 219f5efd704d..97def620c708 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -236,12 +236,12 @@ if(!length(shown_skills)) to_chat(user, "You don't seem to have any particularly outstanding skills.") return - var/msg = "*---------*\nYour skills\n" + var/msg = "[span_info("Your skills")]\n" for(var/i in shown_skills) var/datum/skill/the_skill = i msg += "[initial(the_skill.name)] - [get_skill_level_name(the_skill)]\n" msg += "" - to_chat(user, msg) + to_chat(user, examine_block(msg)) /datum/mind/proc/set_death_time() SIGNAL_HANDLER diff --git a/code/datums/mutable_appearance.dm b/code/datums/mutable_appearance.dm index 7803f961104c..f248da2a7323 100644 --- a/code/datums/mutable_appearance.dm +++ b/code/datums/mutable_appearance.dm @@ -10,11 +10,12 @@ // And yes this does have to be in the constructor, BYOND ignores it if you set it as a normal var // Helper similar to image() -/proc/mutable_appearance(icon, icon_state = "", layer = FLOAT_LAYER, plane = FLOAT_PLANE, alpha = 255) +/proc/mutable_appearance(icon, icon_state = "", layer = FLOAT_LAYER, plane = FLOAT_PLANE, alpha = 255, appearance_flags = NONE) var/mutable_appearance/MA = new() MA.icon = icon MA.icon_state = icon_state MA.layer = layer MA.plane = plane MA.alpha = alpha + MA.appearance_flags |= appearance_flags return MA diff --git a/code/datums/traits/good.dm b/code/datums/traits/good.dm index f7a514a60bf6..c3a473ecd992 100644 --- a/code/datums/traits/good.dm +++ b/code/datums/traits/good.dm @@ -135,7 +135,7 @@ /datum/quirk/light_step name = "Light Step" - desc = "You walk with a gentle step; footsteps and stepping on sharp objects is quieter and less painful." + desc = "You walk with a gentle step; footsteps and stepping on sharp objects is quieter and less painful. Also, your hands and clothes will not get messed in case of stepping in blood." value = 1 mob_traits = list(TRAIT_LIGHT_STEP) gain_text = "You walk with a little more litheness." diff --git a/code/game/MapData/shuttles/nanotrasen_mimir.dm b/code/game/MapData/shuttles/nanotrasen_mimir.dm new file mode 100644 index 000000000000..8a64f99f2813 --- /dev/null +++ b/code/game/MapData/shuttles/nanotrasen_mimir.dm @@ -0,0 +1,57 @@ +//smuggler's satchels +/obj/item/storage/backpack/satchel/flat/mimir_tech/PopulateContents() + new /obj/item/encryptionkey/wideband(src) + new /obj/item/paicard(src) + +/obj/item/storage/backpack/satchel/flat/mimir_jackets/PopulateContents() + new /obj/item/clothing/suit/armor/hos(src) + new /obj/item/clothing/suit/armor/hos/trenchcoat(src) + +/obj/item/storage/backpack/satchel/flat/mimir_refill/PopulateContents() + new /obj/item/vending_refill/hydronutrients(src) + +/obj/item/storage/backpack/satchel/flat/mimir_transfer/PopulateContents() + new /obj/item/reagent_containers/food/drinks/bottle/whiskey(src) + new /obj/item/weldingtool/mini(src) + new /obj/item/choice_beacon/music(src) + new /obj/item/coin/antagtoken(src) + +//toilet =) + +/obj/structure/toilet/secret/mimir + secret_type = /obj/item/storage/backpack/satchel/flat/mimir_transfer + + +//doors +/obj/machinery/door/airlock/security/glass/seclock + req_one_access = list(ACCESS_SECURITY, ACCESS_SEC_DOORS) + +/obj/machinery/door/airlock/security/glass/wardenlock + req_access = list(ACCESS_ARMORY) + +/obj/machinery/door/airlock/maintenance_hatch/seclock + req_one_access = list(ACCESS_SECURITY, ACCESS_SEC_DOORS) + +/obj/machinery/door/airlock/command/glass/seclock + req_one_access = list(ACCESS_SECURITY, ACCESS_SEC_DOORS) + + +//notes + +/obj/item/paper/fluff/mimir/treasure + name = "Bluejack's Note" + info = "To whomever finds this note, \ + I've left behind some things behind that may help your endeavors. The first of them, \ + a bag found where the condemned swirl spirits in a whirlpool. The second, a bag \ + found under my seat of chance and uncanny luck. The third and final bag can be found \ + in the north east quarter of the square of eight lives. I wish you luck, and hope your \ + internment goes better than mine." + +/obj/item/paper/fluff/mimir/jacket + name = "Warden's Secret" + info = "A warden's seat is their place of rest. Look under where your ass rests best." + +/obj/item/paper/fluff/mimir/recycler + name = "TURN ON THE RECYCLER!!!" + info = "IMPORTANT!!!! TURN ON THE AIR RECYCLER IN THIS ROOM!!! JUST TURN ON AND MAX\ + ALL THE ATMOS IN THIS ROOM!!!!!!!!" diff --git a/code/game/MapData/shuttles/nanotrasen_powerrangers.dm b/code/game/MapData/shuttles/nanotrasen_powerrangers.dm index 20a03936ba15..81c3fa1865e7 100644 --- a/code/game/MapData/shuttles/nanotrasen_powerrangers.dm +++ b/code/game/MapData/shuttles/nanotrasen_powerrangers.dm @@ -367,7 +367,7 @@ name = "RIG heat suit" desc = "A fully heat resistance suit based on an early RIG hardsuit prototype. It sacrifices armor of any kind for intricate heatsinks. It remains rather bulky as a result." armor = list("melee" = 1, "bullet" = 1, "laser" = 1, "energy" = 1, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 75) - helmettype = /obj/item/clothing/head/helmet/space/hardsuit/ancient + helmettype = /obj/item/clothing/head/helmet/space/hardsuit/lp heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS max_heat_protection_temperature = FIRE_IMMUNITY_MAX_TEMP_PROTECT resistance_flags = ACID_PROOF | FIRE_PROOF diff --git a/code/game/MapData/shuttles/srm_glaive.dm b/code/game/MapData/shuttles/srm_glaive.dm index 826b2d010f48..b5414c647968 100644 --- a/code/game/MapData/shuttles/srm_glaive.dm +++ b/code/game/MapData/shuttles/srm_glaive.dm @@ -28,7 +28,8 @@ req_access = list(ACCESS_SECURITY) /obj/structure/closet/secure_closet/montagnes - name = "\proper head of security's locker" + name = "\proper Hunter Montagnes Locker" + desc = "The posessions of the owning Hunter Montagnes." req_access = list(ACCESS_HOS) icon_state = "hos" @@ -37,19 +38,6 @@ desc = "The closet of mining equipment." icon_state = "mining" -/turf/open/floor/plating/dirt/jungle/dark/actuallydark - light_range = 0 - light_power = 0 - slowdown = 0 - -/turf/open/floor/plating/grass/jungle/actuallydark - light_range = 0 - light_power = 0 - -/turf/open/water/jungle/actuallydark - light_range = 0 - light_power = 0 - /area/ship/external/dark name = "Dark External" dynamic_lighting = DYNAMIC_LIGHTING_FORCED diff --git a/code/game/atoms.dm b/code/game/atoms.dm index c2e6bd0b244c..a9b73edfc120 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -135,6 +135,22 @@ var/list/smoothing_groups = null ///List of smoothing groups this atom can smooth with. If this is null and atom is smooth, it smooths only with itself. var/list/canSmoothWith = null + + /// The icon file of the connector to use when smoothing. + /// Use of connectors requires the smoothing flags SMOOTH_BITMASK and SMOOTH_CONNECTORS. + var/connector_icon = null + /// The icon state prefix used for connectors. Equivalent to the base_icon_state. + var/connector_icon_state = null + /// Typecache of atom types that this wall will NOT form connector overlays into when smoothing. + /// Types should set this equal to a list; this list is, on init, used to create a typecache that is itself cached by SSicon_smooth. + var/list/no_connector_typecache = null + /// If true, the typecache constructed for no_connector_typecache will NOT include subtypes. + var/connector_strict_typing = FALSE + /// The current connector junction, saved to stop overlay changes if none are necessary. + var/connector_junction = null + /// The current connector overlay appearance. Saved so that it can be cut when necessary. + var/connector_overlay + ///Reference to atom being orbited var/atom/orbit_target ///Default X pixel offset @@ -230,6 +246,8 @@ if(canSmoothWith[length(canSmoothWith)] > MAX_S_TURF) smoothing_flags |= SMOOTH_OBJ SET_BITFLAG_LIST(canSmoothWith) + if (length(no_connector_typecache)) + no_connector_typecache = SSicon_smooth.get_no_connector_typecache(src.type, no_connector_typecache, connector_strict_typing) var/area/ship/current_ship_area = get_area(src) if(!mapload && istype(current_ship_area) && current_ship_area.mobile_port) @@ -586,10 +604,10 @@ * [COMSIG_ATOM_GET_EXAMINE_NAME] signal */ /atom/proc/get_examine_name(mob/user) - . = "\a [src]" + . = "\a [src]" var/list/override = list(gender == PLURAL ? "some" : "a", " ", "[name]") if(article) - . = "[article] [src]" + . = "[article] [src]" override[EXAMINE_POSITION_ARTICLE] = article if(SEND_SIGNAL(src, COMSIG_ATOM_GET_EXAMINE_NAME, user, override) & COMPONENT_EXNAME_CHANGED) . = override.Join("") @@ -607,7 +625,11 @@ * Produces a signal [COMSIG_PARENT_EXAMINE] */ /atom/proc/examine(mob/user) - . = list("[get_examine_string(user, TRUE)].") + var/examine_string = get_examine_string(user, thats = TRUE) + if(examine_string) + . = list("[examine_string].") + else + . = list() if(desc) . += desc @@ -668,7 +690,7 @@ /// Updates the overlays of the atom /atom/proc/update_overlays() - SHOULD_CALL_PARENT(1) + SHOULD_CALL_PARENT(TRUE) . = list() SEND_SIGNAL(src, COMSIG_ATOM_UPDATE_OVERLAYS, .) @@ -742,7 +764,7 @@ /mob/living/proc/get_blood_dna_list() if(get_blood_id() != /datum/reagent/blood) return - return list("ANIMAL DNA" = "Y-") + return list("ANIMAL DNA" = get_blood_type("Y-")) ///Get the mobs dna list /mob/living/carbon/get_blood_dna_list() @@ -756,10 +778,10 @@ return blood_dna /mob/living/carbon/alien/get_blood_dna_list() - return list("UNKNOWN DNA" = "X*") + return list("UNKNOWN DNA" = get_blood_type("X")) /mob/living/silicon/get_blood_dna_list() - return list("MOTOR OIL" = "SAE 5W-30") //just a little flavor text. + return list("SYNTHETIC COOLANT" = get_blood_type("Coolant")) ///to add a mob's dna info into an object's blood_dna list. /atom/proc/transfer_mob_blood_dna(mob/living/L) diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index de1a35dcb4e3..860955616b7a 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -906,56 +906,64 @@ return //don't do an animation if attacking self var/pixel_x_diff = 0 var/pixel_y_diff = 0 + var/turn_dir = 1 var/direction = get_dir(src, A) if(direction & NORTH) pixel_y_diff = 8 + turn_dir = prob(50) ? -1 : 1 else if(direction & SOUTH) pixel_y_diff = -8 + turn_dir = prob(50) ? -1 : 1 if(direction & EAST) pixel_x_diff = 8 else if(direction & WEST) pixel_x_diff = -8 - animate(src, pixel_x = pixel_x + pixel_x_diff, pixel_y = pixel_y + pixel_y_diff, time = 2) - animate(src, pixel_x = pixel_x - pixel_x_diff, pixel_y = pixel_y - pixel_y_diff, time = 2) + var/matrix/initial_transform = matrix(transform) + var/matrix/rotated_transform = transform.Turn(15 * turn_dir) + animate(src, pixel_x = pixel_x + pixel_x_diff, pixel_y = pixel_y + pixel_y_diff, transform=rotated_transform, time = 1, easing=BACK_EASING|EASE_IN, flags = ANIMATION_PARALLEL) + animate(pixel_x = pixel_x - pixel_x_diff, pixel_y = pixel_y - pixel_y_diff, transform=initial_transform, time = 2, easing=SINE_EASING, flags = ANIMATION_PARALLEL) /atom/movable/proc/do_item_attack_animation(atom/A, visual_effect_icon, obj/item/used_item) - var/image/I + var/image/attack_image if(visual_effect_icon) - I = image('icons/effects/effects.dmi', A, visual_effect_icon, A.layer + 0.1) + attack_image = image('icons/effects/effects.dmi', A, visual_effect_icon, A.layer + 0.1) else if(used_item) - I = image(icon = used_item, loc = A, layer = A.layer + 0.1) - I.plane = GAME_PLANE + attack_image = image(icon = used_item, loc = A, layer = A.layer + 0.1) + attack_image.plane = GAME_PLANE // Scale the icon. - I.transform *= 0.75 + attack_image.transform *= 0.4 // The icon should not rotate. - I.appearance_flags = APPEARANCE_UI_IGNORE_ALPHA + attack_image.appearance_flags = APPEARANCE_UI_IGNORE_ALPHA // Set the direction of the icon animation. var/direction = get_dir(src, A) if(direction & NORTH) - I.pixel_y = -16 + attack_image.pixel_y = -12 else if(direction & SOUTH) - I.pixel_y = 16 + attack_image.pixel_y = 12 if(direction & EAST) - I.pixel_x = -16 + attack_image.pixel_x = -14 else if(direction & WEST) - I.pixel_x = 16 + attack_image.pixel_x = 14 if(!direction) // Attacked self?! - I.pixel_z = 16 + attack_image.pixel_y = 12 + attack_image.pixel_x = 5 * (prob(50) ? 1 : -1) - if(!I) + if(!attack_image) return - flick_overlay(I, GLOB.clients, 5) // 5 ticks/half a second + flick_overlay(attack_image, GLOB.clients, 10) // 10 ticks/a whole second // And animate the attack! - animate(I, alpha = 175, pixel_x = 0, pixel_y = 0, pixel_z = 0, time = 3) + animate(attack_image, alpha = 175, transform = matrix() * 0.75, pixel_x = 0, pixel_y = 0, pixel_z = 0, time = 3) + animate(time = 1) + animate(alpha = 0, time = 3, easing = CIRCULAR_EASING|EASE_OUT) /atom/movable/vv_get_dropdown() . = ..() @@ -1117,10 +1125,10 @@ set waitfor = FALSE if(!istype(loc, /turf)) return - var/image/I = image(icon = src, loc = loc, layer = layer + 0.1) - I.plane = GAME_PLANE - I.transform *= 0.75 - I.appearance_flags = APPEARANCE_UI_IGNORE_ALPHA + var/image/pickup_animation = image(icon = src, loc = loc, layer = layer + 0.1) + pickup_animation.plane = GAME_PLANE + pickup_animation.transform *= 0.75 + pickup_animation.appearance_flags = APPEARANCE_UI_IGNORE_ALPHA var/turf/T = get_turf(src) var/direction var/to_x = target.base_pixel_x @@ -1138,12 +1146,13 @@ to_x -= 32 if(!direction) to_y += 16 - flick_overlay(I, GLOB.clients, 6) + + flick_overlay(pickup_animation, GLOB.clients, 6) var/matrix/M = new M.Turn(pick(-30, 30)) - animate(I, alpha = 175, pixel_x = to_x, pixel_y = to_y, time = 3, transform = M, easing = CUBIC_EASING) + animate(pickup_animation, alpha = 175, pixel_x = to_x, pixel_y = to_y, time = 3, transform = M, easing = CUBIC_EASING) sleep(1) - animate(I, alpha = 0, transform = matrix(), time = 1) + animate(pickup_animation, alpha = 0, transform = matrix(), time = 1) /atom/movable/Exited(atom/movable/gone, direction) . = ..() diff --git a/code/game/machinery/airlock_cycle_control.dm b/code/game/machinery/airlock_cycle_control.dm index 19c9c3088aec..dbe5bdd5a194 100644 --- a/code/game/machinery/airlock_cycle_control.dm +++ b/code/game/machinery/airlock_cycle_control.dm @@ -59,6 +59,7 @@ icon = 'icons/obj/monitors.dmi' icon_state = "aac_bitem" result_path = /obj/machinery/advanced_airlock_controller + inverse = FALSE /obj/machinery/advanced_airlock_controller name = "advanced airlock controller" diff --git a/code/game/machinery/bounty_board.dm b/code/game/machinery/bounty_board.dm index 6450999d87eb..b0991110e80d 100644 --- a/code/game/machinery/bounty_board.dm +++ b/code/game/machinery/bounty_board.dm @@ -161,6 +161,7 @@ GLOBAL_LIST_EMPTY(request_list) icon_state = "request_kiosk" custom_materials = list(/datum/material/iron=14000, /datum/material/glass=8000) result_path = /obj/machinery/bounty_board + inverse = FALSE /** * A combined all in one datum that stores everything about the request, the requester's account, as well as the requestee's account diff --git a/code/game/machinery/buttons.dm b/code/game/machinery/buttons.dm index 14a8c10e8742..d51dc571de88 100644 --- a/code/game/machinery/buttons.dm +++ b/code/game/machinery/buttons.dm @@ -289,6 +289,7 @@ icon_state = "button" result_path = /obj/machinery/button custom_materials = list(/datum/material/iron=MINERAL_MATERIAL_AMOUNT) + inverse = FALSE /obj/machinery/button/elevator name = "elevator button" diff --git a/code/game/machinery/camera/camera_assembly.dm b/code/game/machinery/camera/camera_assembly.dm index 251f51e26df4..a8e565e5b056 100644 --- a/code/game/machinery/camera/camera_assembly.dm +++ b/code/game/machinery/camera/camera_assembly.dm @@ -10,6 +10,7 @@ icon_state = "cameracase" custom_materials = list(/datum/material/iron=400, /datum/material/glass=250) result_path = /obj/structure/camera_assembly + inverse = FALSE /obj/structure/camera_assembly name = "camera assembly" diff --git a/code/game/machinery/computer/Operating.dm b/code/game/machinery/computer/Operating.dm index 1fed7c511cf1..811e7d5c100a 100644 --- a/code/game/machinery/computer/Operating.dm +++ b/code/game/machinery/computer/Operating.dm @@ -15,6 +15,16 @@ var/datum/techweb/linked_techweb light_color = LIGHT_COLOR_BLUE +/obj/machinery/computer/operating/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/operating/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/operating/Initialize() . = ..() find_table() @@ -124,7 +134,7 @@ data["patient"]["stat"] = "Dead" data["patient"]["statstate"] = "bad" data["patient"]["health"] = patient.health - data["patient"]["blood_type"] = patient.dna.blood_type + data["patient"]["blood_type"] = patient.dna.blood_type.name data["patient"]["maxHealth"] = patient.maxHealth data["patient"]["minHealth"] = HEALTH_THRESHOLD_DEAD data["patient"]["bruteLoss"] = patient.getBruteLoss() diff --git a/code/game/machinery/computer/_computer.dm b/code/game/machinery/computer/_computer.dm index 546fa7301f1b..bfed7c72602b 100644 --- a/code/game/machinery/computer/_computer.dm +++ b/code/game/machinery/computer/_computer.dm @@ -1,6 +1,6 @@ /obj/machinery/computer name = "computer" - icon = 'icons/obj/computer.dmi' + icon = 'icons/obj/machines/computer.dmi' icon_state = "computer" density = TRUE use_power = IDLE_POWER_USE @@ -16,6 +16,10 @@ var/icon_screen = "generic" var/time_to_screwdrive = 20 var/authenticated = 0 + /// The object that will drop on deconstruction. Mainly used for computer alt skins. + var/obj/structure/frame/computer/deconpath = /obj/structure/frame/computer + ///Does this computer have a unique icon_state? Prevents the changing of icons from alternative computer construction + var/unique_icon = FALSE /obj/machinery/computer/Initialize(mapload, obj/item/circuitboard/C) . = ..() @@ -97,10 +101,10 @@ on_deconstruction() if(!(flags_1 & NODECONSTRUCT_1)) if(circuit) //no circuit, no computer frame - var/obj/structure/frame/computer/A = new /obj/structure/frame/computer(src.loc) - A.setDir(dir) - A.circuit = circuit - A.set_anchored(TRUE) + var/obj/structure/frame/computer/newframe = new deconpath(src.loc) + newframe.setDir(dir) + newframe.circuit = circuit + newframe.set_anchored(TRUE) if(machine_stat & BROKEN) if(user) to_chat(user, "The broken glass falls out.") @@ -108,15 +112,15 @@ playsound(src, 'sound/effects/hit_on_shattered_glass.ogg', 70, TRUE) new /obj/item/shard(drop_location()) new /obj/item/shard(drop_location()) - A.state = 3 + newframe.state = 3 else if(user) to_chat(user, "You disconnect the monitor.") - A.state = 4 + newframe.state = 4 circuit = null - A.update_icon() - for(var/obj/C in src) - C.forceMove(loc) + newframe.update_icon() + for(var/obj/internal_objects in src) + internal_objects.forceMove(loc) qdel(src) /obj/machinery/computer/AltClick(mob/user) diff --git a/code/game/machinery/computer/atmos_alert.dm b/code/game/machinery/computer/atmos_alert.dm index 04a6701c7dda..98ee1dc56ce0 100644 --- a/code/game/machinery/computer/atmos_alert.dm +++ b/code/game/machinery/computer/atmos_alert.dm @@ -10,6 +10,15 @@ var/receive_frequency = FREQ_ATMOS_ALARMS var/datum/radio_frequency/radio_connection +/obj/machinery/computer/atmos_alert/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/atmos_alert/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov /obj/machinery/computer/atmos_alert/Initialize() . = ..() diff --git a/code/game/machinery/computer/atmos_control.dm b/code/game/machinery/computer/atmos_control.dm index b58586ca02d2..e2b5fd34dca3 100644 --- a/code/game/machinery/computer/atmos_control.dm +++ b/code/game/machinery/computer/atmos_control.dm @@ -193,6 +193,16 @@ GLOBAL_LIST_EMPTY(atmos_air_controllers) sensors = list(ATMOS_GAS_MONITOR_SENSOR_O2 = "Oxygen Tank") circuit = /obj/item/circuitboard/computer/atmos_control/tank/oxygen_tank +/obj/machinery/computer/atmos_control/tank/oxygen_tank/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/atmos_control/tank/oxygen_tank/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/atmos_control/tank/toxin_tank name = "Plasma Supply Control" input_tag = ATMOS_GAS_MONITOR_INPUT_TOX @@ -200,6 +210,16 @@ GLOBAL_LIST_EMPTY(atmos_air_controllers) sensors = list(ATMOS_GAS_MONITOR_SENSOR_TOX = "Plasma Tank") circuit = /obj/item/circuitboard/computer/atmos_control/tank/toxin_tank +/obj/machinery/computer/atmos_control/tank/toxin_tank/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/atmos_control/tank/toxin_tank/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/atmos_control/tank/air_tank name = "Mixed Air Supply Control" input_tag = ATMOS_GAS_MONITOR_INPUT_AIR @@ -207,6 +227,16 @@ GLOBAL_LIST_EMPTY(atmos_air_controllers) sensors = list(ATMOS_GAS_MONITOR_SENSOR_AIR = "Air Mix Tank") circuit = /obj/item/circuitboard/computer/atmos_control/tank/air_tank +/obj/machinery/computer/atmos_control/tank/air_tank/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/atmos_control/tank/air_tank/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/atmos_control/tank/mix_tank name = "Gas Mix Tank Control" input_tag = ATMOS_GAS_MONITOR_INPUT_MIX @@ -214,6 +244,16 @@ GLOBAL_LIST_EMPTY(atmos_air_controllers) sensors = list(ATMOS_GAS_MONITOR_SENSOR_MIX = "Gas Mix Tank") circuit = /obj/item/circuitboard/computer/atmos_control/tank/mix_tank +/obj/machinery/computer/atmos_control/tank/mix_tank/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/atmos_control/tank/mix_tank/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/atmos_control/tank/nitrous_tank name = "Nitrous Oxide Supply Control" input_tag = ATMOS_GAS_MONITOR_INPUT_N2O @@ -221,6 +261,16 @@ GLOBAL_LIST_EMPTY(atmos_air_controllers) sensors = list(ATMOS_GAS_MONITOR_SENSOR_N2O = "Nitrous Oxide Tank") circuit = /obj/item/circuitboard/computer/atmos_control/tank/nitrous_tank +/obj/machinery/computer/atmos_control/tank/nitrous_tank/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/atmos_control/tank/nitrous_tank/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/atmos_control/tank/nitrogen_tank name = "Nitrogen Supply Control" input_tag = ATMOS_GAS_MONITOR_INPUT_N2 @@ -228,6 +278,16 @@ GLOBAL_LIST_EMPTY(atmos_air_controllers) sensors = list(ATMOS_GAS_MONITOR_SENSOR_N2 = "Nitrogen Tank") circuit = /obj/item/circuitboard/computer/atmos_control/tank/nitrogen_tank +/obj/machinery/computer/atmos_control/tank/nitrogen_tank/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/atmos_control/tank/nitrogen_tank/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/atmos_control/tank/carbon_tank name = "Carbon Dioxide Supply Control" input_tag = ATMOS_GAS_MONITOR_INPUT_CO2 @@ -235,6 +295,16 @@ GLOBAL_LIST_EMPTY(atmos_air_controllers) sensors = list(ATMOS_GAS_MONITOR_SENSOR_CO2 = "Carbon Dioxide Tank") circuit = /obj/item/circuitboard/computer/atmos_control/tank/carbon_tank +/obj/machinery/computer/atmos_control/tank/carbon_tank/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/atmos_control/tank/carbon_tank/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + // This hacky madness is the evidence of the fact that a lot of machines were never meant to be constructable, im so sorry you had to see this /obj/machinery/computer/atmos_control/tank/proc/reconnect(mob/user) var/list/IO = list() diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm index 6750b33fa6d4..917a9ff9a24d 100644 --- a/code/game/machinery/computer/buildandrepair.dm +++ b/code/game/machinery/computer/buildandrepair.dm @@ -2,6 +2,11 @@ name = "computer frame" icon_state = "console_frame" state = 0 + base_icon_state = "console" + var/obj/item/stack/sheet/decon_material = /obj/item/stack/sheet/metal + var/built_icon = 'icons/obj/machines/computer.dmi' + var/built_icon_state = "computer" + var/deconpath = /obj/structure/frame/computer /obj/structure/frame/computer/attackby(obj/item/P, mob/user, params) add_fingerprint(user) @@ -21,8 +26,9 @@ to_chat(user, "You start deconstructing the frame...") if(P.use_tool(src, user, 20, volume=50)) to_chat(user, "You deconstruct the frame.") - var/obj/item/stack/sheet/metal/M = new (drop_location(), 5) - M.add_fingerprint(user) + + var/obj/dropped_sheet = new decon_material(drop_location(), 5) + dropped_sheet.add_fingerprint(user) qdel(src) return if(1) @@ -113,9 +119,14 @@ if(P.tool_behaviour == TOOL_SCREWDRIVER) P.play_tool_sound(src) to_chat(user, "You connect the monitor.") - var/obj/B = new circuit.build_path (loc, circuit) - B.setDir(dir) - transfer_fingerprints_to(B) + var/obj/machinery/computer/built_comp = new circuit.build_path (loc, circuit) + built_comp.setDir(dir) + transfer_fingerprints_to(built_comp) + if(!built_comp.unique_icon) + built_comp.icon = built_icon + built_comp.icon_state = built_icon_state + built_comp.deconpath = deconpath + built_comp.update_icon() qdel(src) return if(user.a_intent == INTENT_HARM) @@ -125,7 +136,7 @@ . = ..() var/mutable_appearance/step if(circuit) - step = mutable_appearance(icon, "[state]") + step = mutable_appearance(icon, "[base_icon_state]-[state]") else step = mutable_appearance(icon, null) . += step @@ -149,3 +160,21 @@ return setDir(turn(dir, -90)) + +/obj/structure/frame/computer/retro + name = "retro computer frame" + icon_state = "console_frame-retro" + base_icon_state = "retro" + decon_material = /obj/item/stack/sheet/plastic + built_icon = 'icons/obj/machines/retro_computer.dmi' + built_icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/structure/frame/computer/solgov + name = "wooden computer frame" + icon_state = "console_frame-solgov" + base_icon_state = "solgov" + decon_material = /obj/item/stack/sheet/mineral/wood + built_icon = 'icons/obj/machines/retro_computer.dmi' + built_icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/retro diff --git a/code/game/machinery/computer/camera.dm b/code/game/machinery/computer/camera.dm index a54458f3fcb4..097f538666d0 100644 --- a/code/game/machinery/computer/camera.dm +++ b/code/game/machinery/computer/camera.dm @@ -17,6 +17,16 @@ var/atom/movable/screen/plane_master/lighting/cam_plane_master var/atom/movable/screen/background/cam_background +/obj/machinery/computer/security/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/security/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/security/Initialize() . = ..() // Map name has to start and end with an A-Z character, @@ -192,6 +202,7 @@ icon_keyboard = null icon_screen = "detective_tv" pass_flags = PASSTABLE + unique_icon = TRUE /obj/machinery/computer/security/mining name = "outpost camera console" @@ -237,6 +248,7 @@ density = FALSE circuit = null light_power = 0 + unique_icon = TRUE /obj/machinery/computer/security/telescreen/update_icon_state() icon_state = initial(icon_state) diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm index 6d3804e29dcb..a95f8c4b51cb 100644 --- a/code/game/machinery/computer/card.dm +++ b/code/game/machinery/computer/card.dm @@ -56,6 +56,16 @@ GLOBAL_VAR_INIT(time_last_changed_position, 0) COOLDOWN_DECLARE(silicon_access_print_cooldown) +/obj/machinery/computer/card/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/card/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/card/proc/get_jobs() return get_all_jobs() diff --git a/code/game/machinery/computer/crew.dm b/code/game/machinery/computer/crew.dm index 98c62c96fd51..7c97e4fa6d8e 100644 --- a/code/game/machinery/computer/crew.dm +++ b/code/game/machinery/computer/crew.dm @@ -12,6 +12,16 @@ light_color = LIGHT_COLOR_BLUE +/obj/machinery/computer/crew/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/crew/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/crew/syndie icon_keyboard = "syndie_key" diff --git a/code/game/machinery/computer/dna_console.dm b/code/game/machinery/computer/dna_console.dm index e48d6d19ef6a..951901d2258d 100644 --- a/code/game/machinery/computer/dna_console.dm +++ b/code/game/machinery/computer/dna_console.dm @@ -1026,7 +1026,7 @@ "UI"=scanner_occupant.dna.uni_identity, "UE"=scanner_occupant.dna.unique_enzymes, "name"=scanner_occupant.real_name, - "blood_type"=scanner_occupant.dna.blood_type) + "blood_type"=scanner_occupant.dna.blood_type.name) return diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index d37d21f95a5e..e549a01ed6ea 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -548,7 +548,8 @@ if(3) R.fields["age"] = rand(AGE_MIN, AGE_MAX) if(4) - R.fields["blood_type"] = random_blood_type() + var/datum/blood_type/blood = random_blood_type() + R.fields["blood_type"] = blood.name if(5) R.fields["p_stat"] = pick("*Unconscious*", "Active", "Physically Unfit") if(6) @@ -576,3 +577,4 @@ icon_screen = "medlaptop" icon_keyboard = "laptop_key" pass_flags = PASSTABLE + unique_icon = TRUE diff --git a/code/game/machinery/computer/pod.dm b/code/game/machinery/computer/pod.dm index 6d9a5ed9d1ad..ef9193dc65e8 100644 --- a/code/game/machinery/computer/pod.dm +++ b/code/game/machinery/computer/pod.dm @@ -2,6 +2,7 @@ name = "mass driver launch control" desc = "A combined blastdoor and mass driver control unit." processing_flags = START_PROCESSING_MANUALLY + unique_icon = TRUE /// Connected mass driver var/obj/machinery/mass_driver/connected = null /// ID of the launch control diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm index f43675e1e0f5..eaef9722c862 100644 --- a/code/game/machinery/computer/security.dm +++ b/code/game/machinery/computer/security.dm @@ -30,6 +30,7 @@ icon_screen = "seclaptop" icon_keyboard = "laptop_key" pass_flags = PASSTABLE + unique_icon = TRUE //Someone needs to break down the dat += into chunks instead of long ass lines. /obj/machinery/computer/secure_data/ui_interact(mob/user) diff --git a/code/game/machinery/computer/station_alert.dm b/code/game/machinery/computer/station_alert.dm index 17718129eed2..f6ef2e6c31e0 100644 --- a/code/game/machinery/computer/station_alert.dm +++ b/code/game/machinery/computer/station_alert.dm @@ -8,6 +8,16 @@ light_color = LIGHT_COLOR_CYAN +/obj/machinery/computer/station_alert/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/station_alert/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/station_alert/Initialize() . = ..() GLOB.alert_consoles += src diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 0963044800a1..3bff2ab19644 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -20,6 +20,7 @@ GLOBAL_LIST_EMPTY(cryopod_computers) density = FALSE req_one_access = list(ACCESS_HEADS, ACCESS_ARMORY) //Heads of staff or the warden can go here to claim recover items from their department that people went were cryodormed with. + unique_icon = TRUE /// Used for logging people entering cryosleep and important items they are carrying. Shows crew members. var/list/frozen_crew = list() /// Used for logging people entering cryosleep and important items they are carrying. Shows items. @@ -28,6 +29,15 @@ GLOBAL_LIST_EMPTY(cryopod_computers) /// Whether or not to store items from people going into cryosleep. var/allow_items = TRUE +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/cryopod, 17) + +/obj/machinery/computer/cryopod/retro + desc = "An interface between crew and the cryogenic storage oversight systems. This one appears to be strugggling to catch up with the more modren cryogenic storage system version." + icon_state = "wallconsole_old" + icon_screen = "wallconsole_old_cryo" + +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/cryopod/retro, 17) + /obj/machinery/computer/cryopod/Initialize() . = ..() GLOB.cryopod_computers += src diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 1d44b0ac9813..f009f9723b8e 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -55,6 +55,8 @@ hud_possible = list(DIAG_AIRLOCK_HUD) req_ship_access = TRUE + smoothing_groups = list(SMOOTH_GROUP_AIRLOCK) + FASTDMM_PROP(\ pinned_vars = list("req_access_txt", "req_one_access_txt", "name")\ ) @@ -80,12 +82,19 @@ var/obj/item/seal var/detonated = FALSE var/abandoned = FALSE - var/doorOpen = 'sound/machines/airlock.ogg' - var/doorClose = 'sound/machines/airlockclose.ogg' - var/doorDeni = 'sound/machines/deniedbeep.ogg' // i'm thinkin' Deni's - var/boltUp = 'sound/machines/boltsup.ogg' - var/boltDown = 'sound/machines/boltsdown.ogg' + + var/doorOpen = 'sound/machines/airlocks/standard/open.ogg' + var/doorClose = 'sound/machines/airlocks/standard/close.ogg' + var/doorDeni = 'sound/machines/airlocks/access_denied.ogg' // i'm thinkin' Deni's + var/boltUp = 'sound/machines/airlocks/bolts_up.ogg' + var/boltDown = 'sound/machines/airlocks/bolts_down.ogg' + + var/pry_sound = 'sound/machines/creaking.ogg' + var/pry_open_sound = 'sound/machines/airlocks/open_force.ogg' + var/pry_close_sound = 'sound/machines/airlocks/close_force.ogg' + var/noPower = 'sound/machines/doorclick.ogg' + var/previous_airlock = /obj/structure/door_assembly //what airlock assembly mineral plating was applied to var/airlock_material //material of inner filling; if its an airlock with glass, this should be set to "glass" var/overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi' @@ -110,8 +119,8 @@ var/hatch_offset_x = 0 var/hatch_offset_y = 0 var/hatch_colour = "#7d7d7d" - var/hatch_open_sound = 'sound/machines/hatch_open.ogg' - var/hatch_close_sound = 'sound/machines/hatch_close.ogg' + var/hatch_open_sound = 'sound/machines/airlocks/hatch/hatch_open.ogg' + var/hatch_close_sound = 'sound/machines/airlocks/hatch/hatch_close.ogg' /obj/machinery/door/airlock/Initialize() . = ..() @@ -579,10 +588,9 @@ note_overlay = get_airlock_overlay(notetype, note_overlay_file) if(has_hatch) if(hatchstate) - hatch_overlay = get_airlock_overlay("hatch_open", overlays_file) + hatch_overlay = get_airlock_overlay("hatch_open", icon) else - hatch_overlay = get_airlock_overlay("hatch_closed", overlays_file) - hatch_overlay.color = hatch_colour + hatch_overlay = get_airlock_overlay("hatch_closed", icon) if(AIRLOCK_DENY) if(!hasPower()) @@ -610,10 +618,9 @@ note_overlay = get_airlock_overlay(notetype, note_overlay_file) if(has_hatch) if(hatchstate) - hatch_overlay = get_airlock_overlay("hatch_open", overlays_file) + hatch_overlay = get_airlock_overlay("hatch_open", icon) else - hatch_overlay = get_airlock_overlay("hatch_closed", overlays_file) - hatch_overlay.color = hatch_colour + hatch_overlay = get_airlock_overlay("hatch_closed", icon) if(AIRLOCK_EMAG) frame_overlay = get_airlock_overlay("closed", icon) @@ -654,8 +661,7 @@ if(note) note_overlay = get_airlock_overlay("[notetype]_closing", note_overlay_file) if(has_hatch) - hatch_overlay = get_airlock_overlay("hatch_closing", overlays_file) - hatch_overlay.color = hatch_colour + hatch_overlay = get_airlock_overlay("hatch_closing", icon) if(AIRLOCK_OPEN) frame_overlay = get_airlock_overlay("open", icon) @@ -689,8 +695,7 @@ if(note) note_overlay = get_airlock_overlay("[notetype]_opening", note_overlay_file) if(has_hatch) - hatch_overlay = get_airlock_overlay("hatch_opening", overlays_file) - hatch_overlay.color = hatch_colour + hatch_overlay = get_airlock_overlay("hatch_opening", icon) cut_overlays() add_overlay(frame_overlay) @@ -1215,7 +1220,7 @@ if(!prying_so_hard) var/time_to_open = 50 - playsound(src, 'sound/machines/airlock_alien_prying.ogg', 100, TRUE, mono_adj = TRUE) //is it aliens or just the CE being a dick? + playsound(src, pry_sound, 100, TRUE, mono_adj = TRUE) //is it aliens or just the CE being a dick? prying_so_hard = TRUE if(do_after(user, time_to_open, TRUE, src)) open(2) @@ -1249,7 +1254,7 @@ if(closeOther != null && istype(closeOther, /obj/machinery/door/airlock/) && !closeOther.density) closeOther.close() else - playsound(src, 'sound/machines/airlockforced.ogg', 30, TRUE, mono_adj = TRUE) + playsound(src, pry_open_sound, 30, TRUE, mono_adj = TRUE) if(autoclose) autoclose_in(normalspeed ? 150 : 15) @@ -1295,7 +1300,7 @@ use_power(50) playsound(src, doorClose, 30, FALSE, mono_adj = TRUE) else - playsound(src, 'sound/machines/airlockforced.ogg', 30, TRUE, mono_adj = TRUE) + playsound(src, pry_close_sound, 30, TRUE, mono_adj = TRUE) var/obj/structure/window/killthis = (locate(/obj/structure/window) in get_turf(src)) if(killthis) @@ -1402,7 +1407,7 @@ var/time_to_open = 5 //half a second if(hasPower()) time_to_open = 5 SECONDS //Powered airlocks take longer to open, and are loud. - playsound(src, 'sound/machines/airlock_alien_prying.ogg', 100, TRUE, mono_adj = TRUE) + playsound(src, 'sound/machines/creaking.ogg', 100, TRUE, mono_adj = TRUE) if(do_after(user, time_to_open, TRUE, src)) diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index fe7d9444c207..7d6edd417451 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -6,19 +6,16 @@ icon = 'icons/obj/doors/airlocks/station/command.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_com normal_integrity = 450 - hatch_colour = "#446892" /obj/machinery/door/airlock/solgov icon = 'icons/obj/doors/airlocks/station/solgov.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_sgv normal_integrity = 450 - hatch_colour = "#526280" /obj/machinery/door/airlock/security icon = 'icons/obj/doors/airlocks/station/security.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_sec normal_integrity = 450 - hatch_colour = "#c82b2b" /obj/machinery/door/airlock/security/brig //fulltile cell doors because of shuttle shenanigans var/id = null @@ -26,19 +23,16 @@ /obj/machinery/door/airlock/engineering icon = 'icons/obj/doors/airlocks/station/engineering.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_eng - hatch_colour = "#caa638" /obj/machinery/door/airlock/medical icon = 'icons/obj/doors/airlocks/station/medical.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_med - hatch_colour = "#d2d2d2" /obj/machinery/door/airlock/maintenance name = "maintenance access" icon = 'icons/obj/doors/airlocks/station/maintenance.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_mai normal_integrity = 250 - hatch_colour = "#7d7d7d" /obj/machinery/door/airlock/maintenance/external name = "external airlock access" @@ -50,34 +44,28 @@ name = "mining airlock" icon = 'icons/obj/doors/airlocks/station/mining.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_min - hatch_colour = "#c29142" /obj/machinery/door/airlock/atmos name = "atmospherics airlock" icon = 'icons/obj/doors/airlocks/station/atmos.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_atmo - hatch_colour = "#caa638" /obj/machinery/door/airlock/research icon = 'icons/obj/doors/airlocks/station/research.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_research - hatch_colour = "#d2d2d2" /obj/machinery/door/airlock/freezer name = "freezer airlock" icon = 'icons/obj/doors/airlocks/station/freezer.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_fre - hatch_colour = "#ffffff" /obj/machinery/door/airlock/science icon = 'icons/obj/doors/airlocks/station/science.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_science - hatch_colour = "#d2d2d2" /obj/machinery/door/airlock/virology icon = 'icons/obj/doors/airlocks/station/virology.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_viro - hatch_colour = "#d2d2d2" ////////////////////////////////// /* @@ -107,18 +95,15 @@ opacity = FALSE glass = TRUE normal_integrity = 400 - hatch_colour = "#345882" /obj/machinery/door/airlock/solgov/glass opacity = FALSE glass = TRUE normal_integrity = 400 - hatch_colour = "#526280" /obj/machinery/door/airlock/engineering/glass opacity = FALSE glass = TRUE - hatch_colour = "#caa638" /obj/machinery/door/airlock/engineering/glass/critical critical_machine = TRUE //stops greytide virus from opening & bolting doors in critical positions, such as the SM chamber. @@ -127,23 +112,19 @@ opacity = FALSE glass = TRUE normal_integrity = 400 - hatch_colour = "#b81b1b" /obj/machinery/door/airlock/security/brig/glass //more brig doors opacity = FALSE glass = TRUE normal_integrity = 400 - hatch_colour = "#b81b1b" /obj/machinery/door/airlock/medical/glass opacity = FALSE glass = TRUE - hatch_colour = "#d2d2d2" /obj/machinery/door/airlock/research/glass opacity = FALSE glass = TRUE - hatch_colour = "#d2d2d2" /obj/machinery/door/airlock/research/glass/incinerator autoclose = FALSE @@ -163,12 +144,10 @@ /obj/machinery/door/airlock/mining/glass opacity = FALSE glass = TRUE - hatch_colour = "#c29142" /obj/machinery/door/airlock/atmos/glass opacity = FALSE glass = TRUE - hatch_colour = "#caa638" /obj/machinery/door/airlock/atmos/glass/critical critical_machine = TRUE //stops greytide virus from opening & bolting doors in critical positions, such as the SM chamber. @@ -176,17 +155,14 @@ /obj/machinery/door/airlock/science/glass opacity = FALSE glass = TRUE - hatch_colour = "#d2d2d2" /obj/machinery/door/airlock/virology/glass opacity = FALSE glass = TRUE - hatch_colour = "#d2d2d2" /obj/machinery/door/airlock/maintenance/glass opacity = FALSE glass = TRUE - hatch_colour = "#7d7d7d" /obj/machinery/door/airlock/maintenance/external/glass opacity = FALSE @@ -360,7 +336,6 @@ icon = 'icons/obj/doors/airlocks/station2/glass.dmi' overlays_file = 'icons/obj/doors/airlocks/station2/overlays.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_public - hatch_colour = "#eaeaea" req_ship_access = FALSE /obj/machinery/door/airlock/public/glass @@ -394,6 +369,8 @@ note_overlay_file = 'icons/obj/doors/airlocks/external/overlays.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_ext has_hatch = FALSE + doorOpen = 'sound/machines/airlocks/external/airlock_ext_open.ogg' + doorClose = 'sound/machines/airlocks/external/airlock_ext_close.ogg' /obj/machinery/door/airlock/external/glass opacity = FALSE diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm index 478c53924ea7..465bfb4672bc 100644 --- a/code/game/machinery/doors/poddoor.dm +++ b/code/game/machinery/doors/poddoor.dm @@ -5,7 +5,7 @@ icon_state = "closed" var/id = 1 layer = BLASTDOOR_LAYER - closingLayer = CLOSED_BLASTDOOR_LAYER + closingLayer = BLASTDOOR_LAYER sub_door = TRUE explosion_block = 3 heat_proof = TRUE @@ -16,8 +16,9 @@ damage_deflection = 70 poddoor = TRUE assemblytype = /obj/structure/poddoor_assembly - var/open_sound = 'sound/machines/blastdoor.ogg' - var/close_sound = 'sound/machines/blastdoor.ogg' + smoothing_groups = list(SMOOTH_GROUP_AIRLOCK) + var/open_sound = 'sound/machines/airlocks/blastdoor.ogg' + var/close_sound = 'sound/machines/airlocks/blastdoor.ogg' /obj/machinery/door/poddoor/attackby(obj/item/W, mob/user, params) . = ..() @@ -152,7 +153,7 @@ user.visible_message("[user] begins prying open [src].",\ "You begin digging your claws into [src] with all your might!",\ "You hear groaning metal...") - playsound(src, 'sound/machines/airlock_alien_prying.ogg', 100, TRUE) + playsound(src, 'sound/machines/creaking.ogg', 100, TRUE) var/time_to_open = 5 SECONDS if(hasPower()) diff --git a/code/game/machinery/doors/shutters.dm b/code/game/machinery/doors/shutters.dm index 2f21149e16bf..57efb72443e0 100644 --- a/code/game/machinery/doors/shutters.dm +++ b/code/game/machinery/doors/shutters.dm @@ -3,11 +3,10 @@ name = "shutters" desc = "Heavy duty metal shutters that open mechanically." icon = 'icons/obj/doors/shutters.dmi' - layer = SHUTTER_LAYER - closingLayer = SHUTTER_LAYER damage_deflection = 20 - open_sound = 'sound/machines/shutters_open.ogg' - close_sound = 'sound/machines/shutters_close.ogg' + smoothing_groups = list(SMOOTH_GROUP_AIRLOCK) + open_sound = 'sound/machines/airlocks/shutters/shutters_open.ogg' + close_sound = 'sound/machines/airlocks/shutters/shutters_close.ogg' /obj/machinery/door/poddoor/shutters/preopen icon_state = "open" @@ -28,11 +27,9 @@ name = "gate" desc = "A gate made out of hard metal." icon = 'icons/obj/doors/gates.dmi' - layer = SHUTTER_LAYER - closingLayer = SHUTTER_LAYER damage_deflection = 20 - open_sound = 'sound/machines/gate.ogg' - close_sound = 'sound/machines/gate.ogg' + open_sound = 'sound/machines/airlocks/gate.ogg' + close_sound = 'sound/machines/airlocks/gate.ogg' glass = TRUE opacity = FALSE diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm index d623a21ccce8..16bc0ab2a63d 100644 --- a/code/game/machinery/firealarm.dm +++ b/code/game/machinery/firealarm.dm @@ -11,6 +11,8 @@ icon = 'icons/obj/monitors.dmi' icon_state = "fire_bitem" result_path = /obj/machinery/firealarm + pixel_shift = 32 + inverse_pixel_shift = TRUE /obj/machinery/firealarm name = "fire alarm" @@ -38,23 +40,13 @@ var/last_alarm = 0 var/area/myarea = null - FASTDMM_PROP(\ - set_instance_vars(\ - pixel_x = dir == EAST ? 26 : (dir == WEST ? -26 : INSTANCE_VAR_DEFAULT),\ - pixel_y = dir == NORTH ? 26 : (dir == SOUTH ? -26 : INSTANCE_VAR_DEFAULT)\ - ),\ - dir_amount = 4\ - ) - /obj/machinery/firealarm/Initialize(mapload, dir, building) . = ..() - if(dir) - src.setDir(dir) if(building) buildstage = 0 panel_open = TRUE - pixel_x = (dir & 3)? 0 : (dir == 4 ? -24 : 24) - pixel_y = (dir & 3)? (dir ==1 ? -24 : 24) : 0 + if(dir) + setDir(dir) update_icon() myarea = get_area(src) LAZYADD(myarea.firealarms, src) @@ -324,6 +316,8 @@ else set_light(l_power = 0) +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/firealarm, 32) + /* * Return of Party button */ diff --git a/code/game/machinery/medical_kiosk.dm b/code/game/machinery/medical_kiosk.dm index 5007658fe98a..95d6de9c0d0d 100644 --- a/code/game/machinery/medical_kiosk.dm +++ b/code/game/machinery/medical_kiosk.dm @@ -189,7 +189,7 @@ var/bleed_status = "Patient is not currently bleeding." var/blood_status = " Patient either has no blood, or does not require it to function." var/blood_percent = round((altPatient.blood_volume / BLOOD_VOLUME_NORMAL)*100) - var/blood_type = altPatient.dna.blood_type + var/blood_type = altPatient.dna.blood_type.name var/blood_warning = " " for(var/thing in altPatient.diseases) //Disease Information diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm index ee09677761df..34413dc4b923 100644 --- a/code/game/machinery/newscaster.dm +++ b/code/game/machinery/newscaster.dm @@ -176,13 +176,15 @@ GLOBAL_LIST_EMPTY(allCasters) icon_state = "newscaster" custom_materials = list(/datum/material/iron=14000, /datum/material/glass=8000) result_path = /obj/machinery/newscaster + inverse_pixel_shift = TRUE + pixel_shift = 30 /obj/machinery/newscaster name = "newscaster" - desc = "A standard Nanotrasen-licensed newsfeed handler. All the news you absolutely have no use for, in one place!" + desc = "A standard Nanotrasen brand newsfeed handler. All the news you absolutely have no use for, in one place!" icon = 'icons/obj/terminals.dmi' - icon_state = "newscaster_normal" + icon_state = "newscaster" verb_say = "beeps" verb_ask = "beeps" verb_exclaim = "beeps" @@ -211,9 +213,13 @@ GLOBAL_LIST_EMPTY(allCasters) dir_amount = 4\ ) +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/newscaster, 30) + /obj/machinery/newscaster/security_unit name = "security newscaster" - securityCaster = 1 + securityCaster = TRUE + +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/newscaster/security_unit, 30) /obj/machinery/newscaster/Initialize(mapload, ndir, building) . = ..() @@ -232,31 +238,26 @@ GLOBAL_LIST_EMPTY(allCasters) picture = null return ..() -/obj/machinery/newscaster/update_icon_state() - if(machine_stat & (NOPOWER|BROKEN)) - icon_state = "newscaster_off" - else - if(GLOB.news_network.wanted_issue.active) - icon_state = "newscaster_wanted" - else - icon_state = "newscaster_normal" - /obj/machinery/newscaster/update_overlays() . = ..() + SSvis_overlays.remove_vis_overlay(src, managed_vis_overlays) + if(machine_stat & BROKEN) + SSvis_overlays.add_vis_overlay(src, icon, "newscaster_broken", layer, plane, dir) + return - if(!(machine_stat & (NOPOWER|BROKEN)) && !GLOB.news_network.wanted_issue.active && alert) - . += "newscaster_alert" + if(machine_stat & NOPOWER) + return + + if(GLOB.news_network.wanted_issue.active) + SSvis_overlays.add_vis_overlay(src, icon, "newscaster_wanted", layer, plane, dir) + SSvis_overlays.add_vis_overlay(src, icon, "newscaster_wanted", layer, EMISSIVE_PLANE, dir) + else if(alert) + SSvis_overlays.add_vis_overlay(src, icon, "newscaster_alert", layer, plane, dir) + SSvis_overlays.add_vis_overlay(src, icon, "newscaster_alert", layer, EMISSIVE_PLANE, dir) + else + SSvis_overlays.add_vis_overlay(src, icon, "newscaster_normal", layer, plane, dir) + SSvis_overlays.add_vis_overlay(src, icon, "newscaster_normal", layer, EMISSIVE_PLANE, dir) - var/hp_percent = obj_integrity * 100 /max_integrity - switch(hp_percent) - if(75 to 100) - return - if(50 to 75) - . += "crack1" - if(25 to 50) - . += "crack2" - else - . += "crack3" /obj/machinery/newscaster/take_damage(damage_amount, damage_type = BRUTE, damage_flag = 0, sound_effect = 1, attack_dir) . = ..() diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm index 5036da4641cc..9f32839a4e15 100644 --- a/code/game/machinery/porta_turret/portable_turret.dm +++ b/code/game/machinery/porta_turret/portable_turret.dm @@ -1017,6 +1017,7 @@ DEFINE_BITFIELD(turret_flags, list( icon_state = "apc" result_path = /obj/machinery/turretid custom_materials = list(/datum/material/iron=MINERAL_MATERIAL_AMOUNT) + inverse_pixel_shift = TRUE /obj/item/gun/proc/get_turret_properties() . = list() diff --git a/code/game/machinery/shieldgen.dm b/code/game/machinery/shieldgen.dm index 9f91a7426f07..f62fb97d9725 100644 --- a/code/game/machinery/shieldgen.dm +++ b/code/game/machinery/shieldgen.dm @@ -650,7 +650,7 @@ CanAtmosPass = ATMOS_PASS_NO CanAtmosPassVertical = 1 hardshield = FALSE - layer = UNDERDOOR + layer = ABOVE_BLASTDOOR_LAYER light_color = "#f6e384" light_system = MOVABLE_LIGHT //for instant visual feedback reguardless of lag diff --git a/code/game/machinery/shuttle/shuttle_engine.dm b/code/game/machinery/shuttle/shuttle_engine.dm index f20a7d078662..26bfc846c5d0 100644 --- a/code/game/machinery/shuttle/shuttle_engine.dm +++ b/code/game/machinery/shuttle/shuttle_engine.dm @@ -55,7 +55,7 @@ update_engine() //Calls this so it sets the accurate icon if(panel_open) icon_state = icon_state_open - else if(thruster_active) + else if(thruster_active && enabled && return_fuel()) icon_state = icon_state_closed else icon_state = icon_state_off diff --git a/code/game/machinery/shuttle/shuttle_engine_types.dm b/code/game/machinery/shuttle/shuttle_engine_types.dm index 05dda5baea1d..bdb9e44cf8dc 100644 --- a/code/game/machinery/shuttle/shuttle_engine_types.dm +++ b/code/game/machinery/shuttle/shuttle_engine_types.dm @@ -133,7 +133,7 @@ name = "electric engine precharger" desc = "A medium-capacity, high transfer superconducting magnetic energy storage unit specially made for use with shuttle engines." icon = 'icons/obj/shuttle.dmi' - input_level = 0 + input_level = 5000 input_level_max = 50000 output_level = 50000 circuit = /obj/item/circuitboard/machine/shuttle/smes @@ -145,9 +145,6 @@ name = "micro electric engine precharger" desc = "A low-capacity, high transfer superconducting magnetic energy storage unit specially made for use with compact shuttle engines." icon = 'icons/obj/shuttle.dmi' - input_level = 0 - input_level_max = 50000 - output_level = 50000 circuit = /obj/item/circuitboard/machine/shuttle/smes/micro density = 0 capacity = 1e6 @@ -224,7 +221,7 @@ CRASH("Attempted to read the fuel value an uninitialized liquid engine") var/true_percentage = INFINITY for(var/reagent in fuel_reagents) - true_percentage = min(reagents.get_reagent_amount(reagent) / fuel_reagents[reagent], true_percentage) + true_percentage = min(reagents?.get_reagent_amount(reagent) / fuel_reagents[reagent], true_percentage) return reagent_amount_holder * true_percentage //Multiplies the total amount needed by the smallest percentage of any reagent in the recipe /obj/machinery/power/shuttle/engine/liquid/return_fuel_cap() diff --git a/code/game/machinery/slotmachine.dm b/code/game/machinery/slotmachine.dm index 10630e7a1653..9e5333a7e307 100644 --- a/code/game/machinery/slotmachine.dm +++ b/code/game/machinery/slotmachine.dm @@ -24,6 +24,7 @@ idle_power_usage = 50 circuit = /obj/item/circuitboard/computer/slot_machine light_color = LIGHT_COLOR_BROWN + unique_icon = TRUE var/money = 3000 //How much money it has CONSUMED var/plays = 0 var/working = 0 diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index 0f826c2fa2b1..968bdca67b4a 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -416,7 +416,7 @@ locked = FALSE if(uv_super) visible_message("[src]'s door creaks open with a loud whining noise. A cloud of foul black smoke escapes from its chamber.") - playsound(src, 'sound/machines/airlock_alien_prying.ogg', 50, TRUE) + playsound(src, 'sound/machines/creaking.ogg', 50, TRUE) helmet = null qdel(helmet) suit = null @@ -433,7 +433,7 @@ else visible_message("[src]'s door slides open, barraging you with the nauseating smell of charred flesh.") mob_occupant.radiation = 0 - playsound(src, 'sound/machines/airlockclose.ogg', 25, TRUE) + playsound(src, 'sound/machines/airlocks/standard/close.ogg', 25, TRUE) var/list/things_to_clear = list() //Done this way since using GetAllContents on the SSU itself would include circuitry and such. if(suit) things_to_clear += suit diff --git a/code/game/machinery/telecomms/computers/logbrowser.dm b/code/game/machinery/telecomms/computers/logbrowser.dm index a3f5187eab3a..8939e36f34ad 100644 --- a/code/game/machinery/telecomms/computers/logbrowser.dm +++ b/code/game/machinery/telecomms/computers/logbrowser.dm @@ -17,6 +17,16 @@ req_access = list(ACCESS_TCOMSAT) circuit = /obj/item/circuitboard/computer/comm_server +/obj/machinery/computer/telecomms/server/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/telecomms/server/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/telecomms/server/ui_interact(mob/user) . = ..() var/dat = "Telecommunication Server Monitor
Telecommunications Server Monitor
" diff --git a/code/game/machinery/telecomms/computers/telemonitor.dm b/code/game/machinery/telecomms/computers/telemonitor.dm index 236916c688f3..25d5622419ce 100644 --- a/code/game/machinery/telecomms/computers/telemonitor.dm +++ b/code/game/machinery/telecomms/computers/telemonitor.dm @@ -19,6 +19,16 @@ var/temp = "" // temporary feedback messages circuit = /obj/item/circuitboard/computer/comm_monitor +/obj/machinery/computer/telecomms/monitor/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/telecomms/monitor/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/telecomms/monitor/ui_interact(mob/user) . = ..() var/dat = "Telecommunications Monitor
Telecommunications Monitor
" diff --git a/code/game/mecha/combat/honker.dm b/code/game/mecha/combat/honker.dm index feb1ced1b88b..c905216ad574 100644 --- a/code/game/mecha/combat/honker.dm +++ b/code/game/mecha/combat/honker.dm @@ -160,7 +160,7 @@ if("saberon") playsound(src, 'sound/weapons/saberon.ogg', 50) if("airlock_alien_prying") - playsound(src, 'sound/machines/airlock_alien_prying.ogg', 50) + playsound(src, 'sound/machines/creaking.ogg', 50) if("lightningbolt") playsound(src, 'sound/magic/lightningbolt.ogg', 50) if("explosionfar") diff --git a/code/game/mecha/equipment/tools/mining_tools.dm b/code/game/mecha/equipment/tools/mining_tools.dm index 4a46b96a6072..6283cd278645 100644 --- a/code/game/mecha/equipment/tools/mining_tools.dm +++ b/code/game/mecha/equipment/tools/mining_tools.dm @@ -131,7 +131,11 @@ if(isalien(target)) new /obj/effect/temp_visual/dir_setting/bloodsplatter/xenosplatter(target.drop_location(), splatter_dir) else - new /obj/effect/temp_visual/dir_setting/bloodsplatter(target.drop_location(), splatter_dir) + var/splatter_color = null + if(iscarbon(target)) + var/mob/living/carbon/carbon_target = target + splatter_color = carbon_target.dna.blood_type.color + new /obj/effect/temp_visual/dir_setting/bloodsplatter(target.drop_location(), splatter_dir, splatter_color) //organs go everywhere if(target_part && prob(10 * drill_level)) @@ -173,3 +177,4 @@ #undef DRILL_BASIC #undef DRILL_HARDENED + diff --git a/code/game/mecha/equipment/weapons/weapons.dm b/code/game/mecha/equipment/weapons/weapons.dm index cfd09dc09830..031da4c1817e 100644 --- a/code/game/mecha/equipment/weapons/weapons.dm +++ b/code/game/mecha/equipment/weapons/weapons.dm @@ -151,6 +151,25 @@ return 1 return 0 +//Exosuit-mounted kinetic accelerator +/obj/item/mecha_parts/mecha_equipment/weapon/energy/mecha_kineticgun + equip_cooldown = 10 + name = "Exosuit Proto-kinetic Accelerator" + desc = "An exosuit-mounted mining tool that does increased damage in low pressure. Drawing from an onboard power source allows it to project further than the handheld version." + icon_state = "mecha_kineticgun" + energy_drain = 30 + projectile = /obj/projectile/kinetic/mech + fire_sound = 'sound/weapons/kenetic_accel.ogg' + harmful = TRUE + +//attachable to all mechas, like the plasma cutter +/obj/item/mecha_parts/mecha_equipment/weapon/energy/mecha_kineticgun/can_attach(obj/mecha/working/Mech) + if(..()) //combat mech + return TRUE + else if(Mech.equipment.len < Mech.max_equip && istype(Mech)) + return TRUE + return FALSE + /obj/item/mecha_parts/mecha_equipment/weapon/energy/taser name = "\improper PBT \"Pacifier\" mounted taser" desc = "A weapon for combat exosuits. Shoots non-lethal stunning electrodes." diff --git a/code/game/mecha/mech_bay.dm b/code/game/mecha/mech_bay.dm index a273b95e39c4..5c752b1e3cc3 100644 --- a/code/game/mecha/mech_bay.dm +++ b/code/game/mecha/mech_bay.dm @@ -89,6 +89,16 @@ light_color = LIGHT_COLOR_PINK var/obj/machinery/mech_bay_recharge_port/recharge_port +/obj/machinery/computer/mech_bay_power_console/retro + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-retro" + deconpath = /obj/structure/frame/computer/retro + +/obj/machinery/computer/mech_bay_power_console/solgov + icon = 'icons/obj/machines/retro_computer.dmi' + icon_state = "computer-solgov" + deconpath = /obj/structure/frame/computer/solgov + /obj/machinery/computer/mech_bay_power_console/ui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) diff --git a/code/game/mecha/working/ripley.dm b/code/game/mecha/working/ripley.dm index c1f8c7de78bb..bae9a13afdce 100644 --- a/code/game/mecha/working/ripley.dm +++ b/code/game/mecha/working/ripley.dm @@ -146,10 +146,13 @@ else var/obj/item/mecha_parts/mecha_equipment/drill/D = new D.attach(src) - - else //Add plasma cutter if no drill - var/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma/P = new - P.attach(src) + else //Add a ranged option if no drill + if(prob(15)) // plas cutters for lucky fuckers + var/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma/plasmacutter = new + plasmacutter.attach(src) + else + var/obj/item/mecha_parts/mecha_equipment/weapon/energy/mecha_kineticgun/kinetic = new + kinetic.attach(src) //Add ore box to cargo cargo.Add(new /obj/structure/ore_box(src)) diff --git a/code/game/objects/effects/decals/cleanable.dm b/code/game/objects/effects/decals/cleanable.dm index 4bdc7daf0d7d..b44719ba904e 100644 --- a/code/game/objects/effects/decals/cleanable.dm +++ b/code/game/objects/effects/decals/cleanable.dm @@ -86,25 +86,11 @@ //Add "bloodiness" of this blood's type, to the human's shoes //This is on /cleanable because fuck this ancient mess -/obj/effect/decal/cleanable/proc/on_entered(datum/source, atom/movable/O) +/obj/effect/decal/cleanable/proc/on_entered(datum/source, atom/movable/AM) SIGNAL_HANDLER - if(ishuman(O)) - var/mob/living/carbon/human/H = O - if(H.shoes && blood_state && bloodiness) - var/obj/item/clothing/shoes/S = H.shoes - if(!S.can_be_bloody) - return - var/add_blood = 0 - if(bloodiness >= BLOOD_GAIN_PER_STEP) - add_blood = BLOOD_GAIN_PER_STEP - else - add_blood = bloodiness - bloodiness -= add_blood - S.bloody_shoes[blood_state] = min(MAX_SHOE_BLOODINESS,S.bloody_shoes[blood_state]+add_blood) - S.add_blood_DNA(return_blood_DNA()) - S.blood_state = blood_state - update_icon() - H.update_inv_shoes() + if(iscarbon(AM) && blood_state && bloodiness > 40) + SEND_SIGNAL(AM, COMSIG_STEP_ON_BLOOD, src) + update_icon() /obj/effect/decal/cleanable/wash(clean_types) ..() diff --git a/code/game/objects/effects/decals/cleanable/aliens.dm b/code/game/objects/effects/decals/cleanable/aliens.dm index 6c3a455eddec..d4482e8f3029 100644 --- a/code/game/objects/effects/decals/cleanable/aliens.dm +++ b/code/game/objects/effects/decals/cleanable/aliens.dm @@ -11,8 +11,8 @@ beauty = -250 /obj/effect/decal/cleanable/xenoblood/Initialize() + add_blood_DNA(list("UNKNOWN DNA" = get_blood_type("X"))) // Needs to happen before ..() . = ..() - add_blood_DNA(list("UNKNOWN DNA" = "X*")) /obj/effect/decal/cleanable/xenoblood/xsplatter random_icon_states = list("xgibbl1", "xgibbl2", "xgibbl3", "xgibbl4", "xgibbl5") @@ -71,10 +71,6 @@ icon_state = "xgiblarvatorso" random_icon_states = list("xgiblarvahead", "xgiblarvatorso") -/obj/effect/decal/cleanable/blood/xtracks +/obj/effect/decal/cleanable/xenoblood/xtracks icon_state = "xtracks" random_icon_states = null - -/obj/effect/decal/cleanable/blood/xtracks/Initialize() - . = ..() - add_blood_DNA(list("Unknown DNA" = "X*")) diff --git a/code/game/objects/effects/decals/cleanable/humans.dm b/code/game/objects/effects/decals/cleanable/humans.dm index 64e636846df0..5e4f4978b75a 100644 --- a/code/game/objects/effects/decals/cleanable/humans.dm +++ b/code/game/objects/effects/decals/cleanable/humans.dm @@ -1,17 +1,55 @@ /obj/effect/decal/cleanable/blood name = "blood" - desc = "It's red and gooey. Perhaps it's the chef's cooking?" + desc = "It's weird and gooey. Perhaps it's the chef's cooking?" icon = 'icons/effects/blood.dmi' icon_state = "floor1" + color = COLOR_BLOOD random_icon_states = list("floor1", "floor2", "floor3", "floor4", "floor5", "floor6", "floor7") blood_state = BLOOD_STATE_HUMAN bloodiness = BLOOD_AMOUNT_PER_DECAL beauty = -100 + var/dryname = "dried blood" //when the blood lasts long enough, it becomes dry and gets a new name + var/drydesc = "Looks like it's been here a while. Eew." //as above + var/drytime = 0 + +/obj/effect/decal/cleanable/blood/Initialize() + . = ..() + if(bloodiness) + start_drying() + else + dry() + +/obj/effect/decal/cleanable/blood/process() + if(world.time > drytime) + dry() + +/obj/effect/decal/cleanable/blood/Destroy() + STOP_PROCESSING(SSobj, src) + return ..() + +/obj/effect/decal/cleanable/blood/proc/get_timer() + drytime = world.time + 3 MINUTES + +/obj/effect/decal/cleanable/blood/proc/start_drying() + get_timer() + START_PROCESSING(SSobj, src) + +/obj/effect/decal/cleanable/blood/proc/dry() + if(bloodiness > 20) + bloodiness -= BLOOD_AMOUNT_PER_DECAL + get_timer() + else + name = dryname + desc = drydesc + bloodiness = 0 + var/temp_color = ReadHSV(RGBtoHSV(color || COLOR_WHITE)) + color = HSVtoRGB(hsv(temp_color[1], temp_color[2], max(temp_color[3] - 100,min(temp_color[3],10)))) + STOP_PROCESSING(SSobj, src) /obj/effect/decal/cleanable/blood/replace_decal(obj/effect/decal/cleanable/blood/C) C.add_blood_DNA(return_blood_DNA()) if (bloodiness) - C.bloodiness = min((C.bloodiness + bloodiness),MAX_SHOE_BLOODINESS) + C.bloodiness = min((C.bloodiness + bloodiness), BLOOD_AMOUNT_PER_DECAL) return ..() /obj/effect/decal/cleanable/blood/old @@ -28,6 +66,8 @@ /obj/effect/decal/cleanable/blood/splatter icon_state = "gibbl1" random_icon_states = list("gibbl1", "gibbl2", "gibbl3", "gibbl4", "gibbl5") + dryname = "dried tracks" + drydesc = "Some old bloody tracks left by wheels. Machines are evil, perhaps." /obj/effect/decal/cleanable/blood/tracks icon_state = "tracks" @@ -35,16 +75,15 @@ random_icon_states = null beauty = -50 -/obj/effect/decal/cleanable/trail_holder //not a child of blood on purpose +/obj/effect/decal/cleanable/blood/trail_holder //not a child of blood on purpose //nice fucking descriptive comment jackass, fuck you //hello fikou name = "blood" icon = 'icons/effects/blood.dmi' desc = "Your instincts say you shouldn't be following these." beauty = -50 + icon_state = null + random_icon_states = null var/list/existing_dirs = list() -/obj/effect/decal/cleanable/trail_holder/can_bloodcrawl_in() - return TRUE - /obj/effect/decal/cleanable/blood/gibs name = "gibs" desc = "They look bloody and gruesome." @@ -54,21 +93,17 @@ random_icon_states = list("gib1", "gib2", "gib3", "gib4", "gib5", "gib6") mergeable_decal = FALSE turf_loc_check = FALSE - - var/already_rotting = FALSE + dryname = "rotting gibs" + drydesc = "They look bloody and gruesome while some terrible smell fills the air." /obj/effect/decal/cleanable/blood/gibs/Initialize(mapload, list/datum/disease/diseases) . = ..() reagents.add_reagent(/datum/reagent/liquidgibs, 5) - if(already_rotting) - start_rotting(rename=FALSE) - else - addtimer(CALLBACK(src, .proc/start_rotting), 2 MINUTES) + var/mutable_appearance/gib_overlay = mutable_appearance(icon, "[icon_state]-overlay", appearance_flags = RESET_COLOR) + add_overlay(gib_overlay) -/obj/effect/decal/cleanable/blood/gibs/proc/start_rotting(rename=TRUE) - if(rename) - name = "rotting [initial(name)]" - desc += " They smell terrible." +/obj/effect/decal/cleanable/blood/gibs/dry() + . = ..() /obj/effect/decal/cleanable/blood/gibs/replace_decal(obj/effect/decal/cleanable/C) return FALSE //Never fail to place us @@ -86,10 +121,12 @@ var/list/diseases = list() SEND_SIGNAL(src, COMSIG_GIBS_STREAK, directions, diseases) var/direction = pick(directions) - for(var/i in 0 to pick(0, 200; 1, 150; 2, 50)) + for(var/i in 0 to pick(0, 1, 2)) sleep(2) if(i > 0) - new /obj/effect/decal/cleanable/blood/splatter(loc, diseases) + var/obj/effect/decal/cleanable/blood/splatter/splat = new /obj/effect/decal/cleanable/blood/splatter(loc, diseases) + if(!QDELETED(splat) && HAS_BLOOD_DNA(src)) + splat.add_blood_DNA(src.return_blood_DNA()) if(!step_to(src, get_step(src, direction), 0)) break @@ -120,13 +157,14 @@ /obj/effect/decal/cleanable/blood/gibs/old name = "old rotting gibs" desc = "Space Jesus, why didn't anyone clean this up? They smell terrible." + icon_state = "gib1-old" bloodiness = 0 - already_rotting = TRUE + dryname = "old rotting gibs" + drydesc = "Space Jesus, why didn't anyone clean this up? They smell terrible." /obj/effect/decal/cleanable/blood/gibs/old/Initialize(mapload, list/datum/disease/diseases) . = ..() setDir(pick(1,2,4,8)) - icon_state += "-old" add_blood_DNA(list("Non-human DNA" = random_blood_type())) /obj/effect/decal/cleanable/blood/drip @@ -136,6 +174,8 @@ random_icon_states = list("drip1","drip2","drip3","drip4","drip5") bloodiness = 0 var/drips = 1 + dryname = "drips of blood" + drydesc = "It's red." /obj/effect/decal/cleanable/blood/drip/can_bloodcrawl_in() return TRUE @@ -151,8 +191,16 @@ blood_state = BLOOD_STATE_HUMAN //the icon state to load images from var/entered_dirs = 0 var/exited_dirs = 0 + + /// List of shoe or other clothing that covers feet types that have made footprints here. var/list/shoe_types = list() + /// List of species that have made footprints here. + var/list/species_types = list() + + dryname = "dried footprints" + drydesc = "HMM... SOMEONE WAS HERE!" + /obj/effect/decal/cleanable/blood/footprints/Initialize(mapload) . = ..() icon_state = "" //All of the footprint visuals come from overlays @@ -180,31 +228,6 @@ update_icon() return ..() -/obj/effect/decal/cleanable/blood/footprints/on_entered(datum/source, atom/movable/O) - . = ..() - if(ishuman(O)) - var/mob/living/carbon/human/H = O - var/obj/item/clothing/shoes/S = H.shoes - if(S && S.bloody_shoes[blood_state]) - S.bloody_shoes[blood_state] = max(S.bloody_shoes[blood_state] - BLOOD_LOSS_PER_STEP, 0) - shoe_types |= S.type - if (!(entered_dirs & H.dir)) - entered_dirs |= H.dir - update_icon() - -/obj/effect/decal/cleanable/blood/footprints/on_uncrossed(datum/source, atom/movable/O) - . = ..() - if(ishuman(O)) - var/mob/living/carbon/human/H = O - var/obj/item/clothing/shoes/S = H.shoes - if(S && S.bloody_shoes[blood_state]) - S.bloody_shoes[blood_state] = max(S.bloody_shoes[blood_state] - BLOOD_LOSS_PER_STEP, 0) - shoe_types |= S.type - if (!(exited_dirs & H.dir)) - exited_dirs |= H.dir - update_icon() - - /obj/effect/decal/cleanable/blood/footprints/update_icon() cut_overlays() @@ -220,21 +243,32 @@ GLOB.bloody_footprints_cache["exited-[blood_state]-[Ddir]"] = bloodstep_overlay = image(icon, "[blood_state]2", dir = Ddir) add_overlay(bloodstep_overlay) - alpha = BLOODY_FOOTPRINT_BASE_ALPHA+bloodiness + alpha = min(BLOODY_FOOTPRINT_BASE_ALPHA + (255 - BLOODY_FOOTPRINT_BASE_ALPHA) * bloodiness / (BLOOD_ITEM_MAX / 2), 255) /obj/effect/decal/cleanable/blood/footprints/examine(mob/user) . = ..() - if(shoe_types.len) - . += "You recognise the footprints as belonging to:\n" - for(var/shoe in shoe_types) - var/obj/item/clothing/shoes/S = shoe - . += "[icon2html(initial(S.icon), user)] Some [initial(S.name)].\n" + if((shoe_types.len + species_types.len) > 0) + . += "You recognise the footprints as belonging to:" + for(var/sole in shoe_types) + var/obj/item/clothing/item = sole + var/article = initial(item.gender) == PLURAL ? "Some" : "A" + . += "[icon2html(initial(item.icon), user, initial(item.icon_state))] [article] [initial(item.name)]." + for(var/species in species_types) + // god help me + if(species == "unknown") + . += "Some feet." + else if(species == "monkey") + . += "[icon2html('icons/mob/monkey.dmi', user, "monkey1")] Some monkey feet." + else if(species == "human") + . += "[icon2html('icons/mob/human_parts.dmi', user, "default_human_l_leg")] Some human feet." + else + . += "[icon2html('icons/mob/human_parts.dmi', user, "[species]_l_leg")] Some [species] feet." /obj/effect/decal/cleanable/blood/footprints/replace_decal(obj/effect/decal/cleanable/C) if(blood_state != C.blood_state) //We only replace footprints of the same type as us - return - ..() + return FALSE + return ..() /obj/effect/decal/cleanable/blood/footprints/can_bloodcrawl_in() if((blood_state != BLOOD_STATE_OIL) && (blood_state != BLOOD_STATE_NOT_BLOODY)) diff --git a/code/game/objects/effects/decals/decal.dm b/code/game/objects/effects/decals/decal.dm index 67eafc2e6e94..7aea2fcb4c7d 100644 --- a/code/game/objects/effects/decals/decal.dm +++ b/code/game/objects/effects/decals/decal.dm @@ -47,11 +47,6 @@ var/turf/T = loc if(!istype(T)) //you know this will happen somehow CRASH("Turf decal initialized in an object/nullspace") - T.AddComponent(/datum/component/decal, icon, icon_state, dir, FALSE, color, null, null, alpha) //until marget finds the issue with code below, its getting reverted + T.AddElement(/datum/element/decal, icon, icon_state, dir, FALSE, color, null, null, alpha, FALSE) if(detail_overlay) - T.AddComponent(/datum/component/decal, icon, detail_overlay, dir, FALSE, detail_color, null, null, alpha) -/* - T.AddElement(/datum/element/decal, icon, icon_state, turn(dir, -dir2angle(T.dir)), CLEAN_TYPE_PAINT, color, null, null, alpha, appearance_flags) - if(detail_overlay) - T.AddElement(/datum/element/decal, icon, detail_overlay, turn(dir, -dir2angle(T.dir)), CLEAN_TYPE_PAINT, detail_color, null, null, alpha, appearance_flags) -*/ + T.AddElement(/datum/element/decal, icon, detail_overlay, dir, FALSE, detail_color, null, null, alpha, appearance_flags) diff --git a/code/game/objects/effects/decals/turfdecal/flooring_decals.dm b/code/game/objects/effects/decals/turfdecal/flooring_decals.dm index 363e0d3ec402..f94c9e728e68 100644 --- a/code/game/objects/effects/decals/turfdecal/flooring_decals.dm +++ b/code/game/objects/effects/decals/turfdecal/flooring_decals.dm @@ -728,13 +728,90 @@ TURF_DECAL_COLOR_HELPER(transparent/inteqbrown, "#4b2a18", 140) /obj/effect/turf_decal/rechargefloor icon_state = "recharge_floor" -/obj/effect/turf_decal/solgov //Credit to baystation for these sprites! - alpha = 230 +/obj/effect/turf_decal/solgov icon = 'icons/obj/solgov_floor.dmi' + icon_state = "top-left" + +/obj/effect/turf_decal/solgov/top + icon_state = "top-center" + +/obj/effect/turf_decal/solgov/top_right + icon_state = "top-right" + +/obj/effect/turf_decal/solgov/center_left + icon_state = "center-left" + +/obj/effect/turf_decal/solgov/center icon_state = "center" +/obj/effect/turf_decal/solgov/center_right + icon_state = "center-right" + +/obj/effect/turf_decal/solgov/bottom_left + icon_state = "bottom-left" + +/obj/effect/turf_decal/solgov/bottom_center + icon_state = "bottom-center" + +/obj/effect/turf_decal/solgov/bottom_right + icon_state = "bottom-right" + +/obj/effect/turf_decal/solgov/wood + icon_state = "top-left-wood" + +/obj/effect/turf_decal/solgov/wood/top + icon_state = "top-center-wood" + +/obj/effect/turf_decal/solgov/wood/top_right + icon_state = "top-right-wood" + +/obj/effect/turf_decal/solgov/wood/center_left + icon_state = "center-left-wood" + +/obj/effect/turf_decal/solgov/wood/center + icon_state = "center-wood" + +/obj/effect/turf_decal/solgov/wood/center_right + icon_state = "center-right-wood" + +/obj/effect/turf_decal/solgov/wood/bottom_left + icon_state = "bottom-left-wood" + +/obj/effect/turf_decal/solgov/wood/bottom_center + icon_state = "bottom-center-wood" + +/obj/effect/turf_decal/solgov/wood/bottom_right + icon_state = "bottom-right-wood" + +/obj/effect/turf_decal/solgov/all + icon_state = "top-left-all" + +/obj/effect/turf_decal/solgov/all/top + icon_state = "top-center-all" + +/obj/effect/turf_decal/solgov/all/top_right + icon_state = "top-right-all" + +/obj/effect/turf_decal/solgov/all/center_left + icon_state = "center-left-all" + +/obj/effect/turf_decal/solgov/all/center + icon_state = "center-all" + +/obj/effect/turf_decal/solgov/all/center_right + icon_state = "center-right-all" + +/obj/effect/turf_decal/solgov/all/bottom_left + icon_state = "bottom-left-all" + +/obj/effect/turf_decal/solgov/all/bottom_center + icon_state = "bottom-center-all" + +/obj/effect/turf_decal/solgov/all/bottom_right + icon_state = "bottom-right-all" + /obj/effect/turf_decal/road - name = "roal decal" + name = "road decal" icon_state = "road" alpha = 180 @@ -769,3 +846,254 @@ TURF_DECAL_COLOR_HELPER(transparent/inteqbrown, "#4b2a18", 140) /obj/effect/turf_decal/minutemen/middle icon_state = "mm_middle" + +// ship manufacturers start + +//Miskilamo Spacefaring +/obj/effect/turf_decal/miskilamo_small + name = "small miskilamo logo" + icon_state = "miskilamo-center" + +/obj/effect/turf_decal/miskilamo_small/left + icon_state = "miskilamo-left" + +/obj/effect/turf_decal/miskilamo_small/right + icon_state = "miskilamo-right" + + +/obj/effect/turf_decal/miskilamo_big + name = "big miskilamo logo" +/obj/effect/turf_decal/miskilamo_big/one + icon_state = "miskilamo_big-1" + +/obj/effect/turf_decal/miskilamo_big/two + icon_state = "miskilamo_big-2" + +/obj/effect/turf_decal/miskilamo_big/two + icon_state = "miskilamo_big-2" + +/obj/effect/turf_decal/miskilamo_big/three + icon_state = "miskilamo_big-3" + +/obj/effect/turf_decal/miskilamo_big/four + icon_state = "miskilamo_big-4" + +/obj/effect/turf_decal/miskilamo_big/five + icon_state = "miskilamo_big-5" + +/obj/effect/turf_decal/miskilamo_big/six + icon_state = "miskilamo_big-6" + +/obj/effect/turf_decal/miskilamo_big/seven + icon_state = "miskilamo_big-7" + +/obj/effect/turf_decal/miskilamo_big/eight + icon_state = "miskilamo_big-8" + +// Kasagi-Fischer Partnership +/obj/effect/turf_decal/kfp_small + name = "small kfp logo" + icon_state = "kfp-center" + +/obj/effect/turf_decal/kfp_small/left + icon_state = "kfp-left" + +/obj/effect/turf_decal/kfp_small/right + icon_state = "kfp-right" + + +/obj/effect/turf_decal/kfp_big + name = "big kfp logo" + +/obj/effect/turf_decal/kfp_big/one + icon_state = "kfp_big-1" + +/obj/effect/turf_decal/kfp_big/two + icon_state = "kfp_big-2" + +/obj/effect/turf_decal/kfp_big/two + icon_state = "kfp_big-2" + +/obj/effect/turf_decal/kfp_big/three + icon_state = "kfp_big-3" + +/obj/effect/turf_decal/kfp_big/four + icon_state = "kfp_big-4" + +/obj/effect/turf_decal/kfp_big/five + icon_state = "kfp_big-5" + +/obj/effect/turf_decal/kfp_big/six + icon_state = "kfp_big-6" + +/obj/effect/turf_decal/kfp_big/seven + icon_state = "kfp_big-7" + +/obj/effect/turf_decal/kfp_big/eight + icon_state = "kfp_big-8" + +//ISF Spacecraft +/obj/effect/turf_decal/isf_small + name = "small isf logo" + icon_state = "isf-center" + +/obj/effect/turf_decal/isf_small/left + icon_state = "isf-left" + +/obj/effect/turf_decal/isf_small/right + icon_state = "isf-right" + + +/obj/effect/turf_decal/isf_big + name = "big isf logo" + +/obj/effect/turf_decal/isf_big/one + icon_state = "isf_big-1" + +/obj/effect/turf_decal/isf_big/two + icon_state = "isf_big-2" + +/obj/effect/turf_decal/isf_big/two + icon_state = "isf_big-2" + +/obj/effect/turf_decal/isf_big/three + icon_state = "isf_big-3" + +/obj/effect/turf_decal/isf_big/four + icon_state = "isf_big-4" + +/obj/effect/turf_decal/isf_big/five + icon_state = "isf_big-5" + +/obj/effect/turf_decal/isf_big/six + icon_state = "isf_big-6" + +/obj/effect/turf_decal/isf_big/seven + icon_state = "isf_big-7" + +/obj/effect/turf_decal/isf_big/eight + icon_state = "isf_big-8" + +//Ihejirika Civilian Manufacturing +/obj/effect/turf_decal/ihejirika_small + name = "small ihejirika logo" + icon_state = "ihejirika-center" + +/obj/effect/turf_decal/ihejirika_small/left + icon_state = "ihejirika-left" + +/obj/effect/turf_decal/ihejirika_small/right + icon_state = "ihejirika-right" + + +/obj/effect/turf_decal/ihejirika_big + name = "big ihejirika logo" + +/obj/effect/turf_decal/ihejirika_big/one + icon_state = "ihejirika_big-1" + +/obj/effect/turf_decal/ihejirika_big/two + icon_state = "ihejirika_big-2" + +/obj/effect/turf_decal/ihejirika_big/two + icon_state = "ihejirika_big-2" + +/obj/effect/turf_decal/ihejirika_big/three + icon_state = "ihejirika_big-3" + +/obj/effect/turf_decal/ihejirika_big/four + icon_state = "ihejirika_big-4" + +/obj/effect/turf_decal/ihejirika_big/five + icon_state = "ihejirika_big-5" + +/obj/effect/turf_decal/ihejirika_big/six + icon_state = "ihejirika_big-6" + +/obj/effect/turf_decal/ihejirika_big/seven + icon_state = "ihejirika_big-7" + +/obj/effect/turf_decal/ihejirika_big/eight + icon_state = "ihejirika_big-8" + +//NT Spaceworks +/obj/effect/turf_decal/ntspaceworks_small + name = "small ntspaceworks logo" + icon_state = "ntspaceworks-center" + +/obj/effect/turf_decal/ntspaceworks_small/left + icon_state = "ntspaceworks-left" + +/obj/effect/turf_decal/ntspaceworks_small/right + icon_state = "ntspaceworks-right" + + +/obj/effect/turf_decal/ntspaceworks_big + name = "big ntspaceworks logo" + +/obj/effect/turf_decal/ntspaceworks_big/one + icon_state = "ntspaceworks_big-1" + +/obj/effect/turf_decal/ntspaceworks_big/two + icon_state = "ntspaceworks_big-2" + +/obj/effect/turf_decal/ntspaceworks_big/two + icon_state = "ntspaceworks_big-2" + +/obj/effect/turf_decal/ntspaceworks_big/three + icon_state = "ntspaceworks_big-3" + +/obj/effect/turf_decal/ntspaceworks_big/four + icon_state = "ntspaceworks_big-4" + +/obj/effect/turf_decal/ntspaceworks_big/five + icon_state = "ntspaceworks_big-5" + +/obj/effect/turf_decal/ntspaceworks_big/six + icon_state = "ntspaceworks_big-6" + +/obj/effect/turf_decal/ntspaceworks_big/seven + icon_state = "ntspaceworks_big-7" + +/obj/effect/turf_decal/ntspaceworks_big/eight + icon_state = "ntspaceworks_big-8" + +//Hardline Salvage and Mining + +/obj/effect/turf_decal/hardline_small + name = "small hardline logo" + icon_state = "hardline-center" + +/obj/effect/turf_decal/hardline_small/left + icon_state = "hardline-left" + +/obj/effect/turf_decal/hardline_small/right + icon_state = "hardline-right" + + +/obj/effect/turf_decal/hardline_big + name = "big hardline logo" + +/obj/effect/turf_decal/hardline_big/one + icon_state = "hardline_big-1" + +/obj/effect/turf_decal/hardline_big/two + icon_state = "hardline_big-2" + +/obj/effect/turf_decal/hardline_big/two + icon_state = "hardline_big-2" + +/obj/effect/turf_decal/hardline_big/three + icon_state = "hardline_big-3" + +/obj/effect/turf_decal/hardline_big/four + icon_state = "hardline_big-4" + +/obj/effect/turf_decal/hardline_big/five + icon_state = "hardline_big-5" + +/obj/effect/turf_decal/hardline_big/six + icon_state = "hardline_big-6" + +/obj/effect/turf_decal/hardline_big/seven + icon_state = "hardline_big-7" diff --git a/code/game/objects/effects/spawners/lootdrop.dm b/code/game/objects/effects/spawners/lootdrop.dm index 2cb5b0448650..f798e7452e49 100644 --- a/code/game/objects/effects/spawners/lootdrop.dm +++ b/code/game/objects/effects/spawners/lootdrop.dm @@ -598,45 +598,6 @@ /obj/machinery/the_singularitygen = 1, ) - -GLOBAL_LIST_INIT(ws_survivor_default_loot, list( - /obj/item/stack/sheet/animalhide/goliath_hide = 0.7, - /obj/item/stack/sheet/bone = 0.8, - /obj/item/reagent_containers/food/drinks/waterbottle = 0.2, - /obj/item/reagent_containers/food/drinks/waterbottle/empty = 0.8, - /obj/item/storage/firstaid/ancient/heirloom = 0.2, - /obj/item/kitchen/knife/combat/survival = 0.2, - /obj/item/reagent_containers/food/snacks/rationpack = 0.2 -)) - -/obj/effect/spawner/lootdrop/whitesands - name = "Whitesands Default loot spawner" - lootdoubles = FALSE - -/obj/effect/spawner/lootdrop/whitesands/survivor - name = "Whitesands Survivior loot spawner" - lootdoubles = TRUE - fan_out_items = TRUE - loot = list() - -/obj/effect/spawner/lootdrop/whitesands/survivor/Initialize() - loot += GLOB.ws_survivor_default_loot - lootcount = pick(list(1, 2, 3)) - return ..() - -/obj/effect/spawner/lootdrop/whitesands/survivor/hunter - name = "Whitesands Hunter loot spawner" - loot = list( - /obj/item/gun/ballistic/rifle/boltaction/polymer = 0.3, - /obj/item/ammo_box/aac_300blk_stripper = 0.4 - ) -/obj/effect/spawner/lootdrop/whitesands/survivor/gunslinger - name = "Whitesands Gunslinger loot spawner" - loot = list( - /obj/item/gun/ballistic/automatic/smg/aks74u = 0.1, - /obj/item/ammo_box/magazine/aks74u = 0.4 - ) - /obj/effect/spawner/lootdrop/stockparts name = "random good stock parts" lootcount = 5 diff --git a/code/game/objects/effects/spawners/mobspawner.dm b/code/game/objects/effects/spawners/mobspawner.dm index c9ebf035895a..53c3dfb90b49 100644 --- a/code/game/objects/effects/spawners/mobspawner.dm +++ b/code/game/objects/effects/spawners/mobspawner.dm @@ -58,3 +58,25 @@ /mob/living/simple_animal/borer/sterile = 0.35, /obj/effect/spawner/lootdrop/maintenance = 0.65, ) + +/obj/effect/spawner/lootdrop/chicken + name = "chicken spawner" + loot = list( + /mob/living/simple_animal/chicken + ) + +/obj/effect/spawner/lootdrop/chicken/jungle + name = "jungle chicken spawner" + loot = list( + /mob/living/simple_animal/hostile/retaliate/chicken + ) + +/obj/effect/spawner/lootdrop/chicken/jungle/flock + loot = list( + /obj/effect/spawner/lootdrop/chicken/jungle + ) + lootcount = 7 + lootdoubles = TRUE + +/obj/effect/spawner/lootdrop/chicken/jungle/flock/New() + lootcount = rand(5, 10) diff --git a/code/game/objects/effects/temporary_visuals/miscellaneous.dm b/code/game/objects/effects/temporary_visuals/miscellaneous.dm index f9b586498e07..4c3e4397e73f 100644 --- a/code/game/objects/effects/temporary_visuals/miscellaneous.dm +++ b/code/game/objects/effects/temporary_visuals/miscellaneous.dm @@ -4,14 +4,17 @@ duration = 5 randomdir = FALSE layer = BELOW_MOB_LAYER + color = COLOR_BLOOD var/splatter_type = "splatter" -/obj/effect/temp_visual/dir_setting/bloodsplatter/Initialize(mapload, set_dir) +/obj/effect/temp_visual/dir_setting/bloodsplatter/Initialize(mapload, set_dir, set_color) if(ISDIAGONALDIR(set_dir)) icon_state = "[splatter_type][pick(1, 2, 6)]" else icon_state = "[splatter_type][pick(3, 4, 5)]" . = ..() + if(set_color) + color = set_color var/target_pixel_x = 0 var/target_pixel_y = 0 switch(set_dir) @@ -42,6 +45,7 @@ /obj/effect/temp_visual/dir_setting/bloodsplatter/xenosplatter splatter_type = "xsplatter" + color = null /obj/effect/temp_visual/dir_setting/speedbike_trail name = "speedbike trails" diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index f3c426223cc3..217fdf7dc548 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -43,6 +43,8 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb ///Same as for [worn_y_dimension][/obj/item/var/worn_y_dimension] but for inhands, uses the lefthand_ and righthand_ file vars var/inhand_y_dimension = 32 + /// Worn overlay will be shifted by this along y axis + var/worn_y_offset = 0 max_integrity = 200 diff --git a/code/game/objects/items/apc_frame.dm b/code/game/objects/items/apc_frame.dm index d47be80b8fae..30fd46b79d23 100644 --- a/code/game/objects/items/apc_frame.dm +++ b/code/game/objects/items/apc_frame.dm @@ -7,7 +7,8 @@ righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi' w_class = WEIGHT_CLASS_SMALL var/result_path - var/inverse = 0 // For inverse dir frames like light fixtures. + var/inverse = TRUE // For inverse dir frames like light fixtures. + var/inverse_pixel_shift = FALSE //For things that appear off the wall when placed. var/pixel_shift //The amount of pixels /obj/item/wallframe/proc/try_build(turf/on_wall, mob/user) @@ -42,15 +43,26 @@ var/obj/O = new result_path(get_turf(user), ndir, TRUE) if(pixel_shift) - switch(ndir) - if(NORTH) - O.pixel_y = pixel_shift - if(SOUTH) - O.pixel_y = -pixel_shift - if(EAST) - O.pixel_x = pixel_shift - if(WEST) - O.pixel_x = -pixel_shift + if(!inverse_pixel_shift) + switch(ndir) + if(NORTH) + O.pixel_y = -pixel_shift + if(SOUTH) + O.pixel_y = pixel_shift + if(EAST) + O.pixel_x = -pixel_shift + if(WEST) + O.pixel_x = pixel_shift + else + switch(ndir) + if(NORTH) + O.pixel_y = pixel_shift + if(SOUTH) + O.pixel_y = -pixel_shift + if(EAST) + O.pixel_x = pixel_shift + if(WEST) + O.pixel_x = -pixel_shift after_attach(O) qdel(src) @@ -85,7 +97,7 @@ desc = "Used for repairing or building APCs." icon_state = "apc" result_path = /obj/machinery/power/apc - inverse = 1 + inverse = TRUE /obj/item/wallframe/apc/try_build(turf/on_wall, user) diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index f9dfc10e7eb8..ee8d1261c64e 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -383,6 +383,11 @@ to_chat(creator, "You have created a new area, named [newA.name]. It is now weather proof, and constructing an APC will allow it to be powered.") return TRUE +/obj/item/areaeditor/shuttle/cyborg + name = "ship structure schematics" + desc = "A digital copy of the local ship blueprints and zoning stored in your memory, used to expand flying shuttles." + fluffnotice = "For use in engineering cyborgs only. Wipe from memory upon disabling." + // VERY EXPENSIVE (I think) /obj/docking_port/mobile/proc/recalculate_bounds() if(!istype(src, /obj/docking_port/mobile)) diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm index f12e1aab68b3..0879883042e5 100644 --- a/code/game/objects/items/cards_ids.dm +++ b/code/game/objects/items/cards_ids.dm @@ -558,12 +558,22 @@ update_label() /obj/item/card/id/syndicate_command/crew_id assignment = "Operative" - access = list(ACCESS_SYNDICATE, ACCESS_ROBOTICS) + access = list(ACCESS_SYNDICATE) uses_overlays = FALSE -/obj/item/card/id/syndicate_command/operative - assignment = "Operative" - access = list(ACCESS_SYNDICATE, ACCESS_ROBOTICS, ACCESS_ARMORY) +/obj/item/card/id/syndicate_command/crew_id/engi // twinkleshine specific IDs + assignment = "Engineer" + access = list(ACCESS_SYNDICATE, ACCESS_ENGINE, ACCESS_CONSTRUCTION) + uses_overlays = FALSE + +/obj/item/card/id/syndicate_command/crew_id/med + assignment = "Medic" + access = list(ACCESS_SYNDICATE, ACCESS_MEDICAL) + uses_overlays = FALSE + +/obj/item/card/id/syndicate_command/lieutenant + assignment = "Lieutenant" + access = list(ACCESS_SYNDICATE, ACCESS_ARMORY) uses_overlays = FALSE /obj/item/card/id/syndicate_command/captain_id @@ -706,7 +716,6 @@ update_label() lefthand_file = 'icons/mob/inhands/equipment/idcards_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/idcards_righthand.dmi' assignment = "Prisoner" - registered_name = "Scum" uses_overlays = FALSE var/goal = 0 //How far from freedom? var/points = 0 @@ -820,11 +829,6 @@ update_label() desc = "A SolGov ID with no proper access to speak of. This one indicates a Commander." assignment = "Commander" -/obj/item/card/id/solgov/elite - name = "\improper SolGov ID" - desc = "A SolGov ID with no proper access to speak of. This one indicates an Elite." - assignment = "Elite" - /obj/item/card/id/away/slime //We're ranchin, baby! //It's slimin time name = "\improper Slime Lab access card" desc = "An ID card with access to the Slime Lab" diff --git a/code/game/objects/items/decal_painter.dm b/code/game/objects/items/decal_painter.dm index 624987d9c5ef..39e8e3e93092 100644 --- a/code/game/objects/items/decal_painter.dm +++ b/code/game/objects/items/decal_painter.dm @@ -201,9 +201,9 @@ to_chat(user, "\The [src] can only be used on flooring.") return if(color_disallowed.Find(decal_state)) - F.AddComponent(/datum/component/decal, 'icons/turf/decals.dmi', decal_state, decal_dir, CLEAN_TYPE_PAINT, color, null, null, alpha) + F.AddElement(/datum/element/decal, 'icons/turf/decals.dmi', decal_state, decal_dir, CLEAN_TYPE_PAINT, color, null, null, alpha) else - F.AddComponent(/datum/component/decal, 'icons/turf/decals.dmi', decal_state, decal_dir, CLEAN_TYPE_PAINT, decal_color, null, null, alpha) + F.AddElement(/datum/element/decal, 'icons/turf/decals.dmi', decal_state, decal_dir, CLEAN_TYPE_PAINT, decal_color, null, null, alpha) playsound(src.loc, 'sound/effects/spray2.ogg', 50, TRUE) /obj/item/decal_painter/attack_self(mob/user) diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 8452f333b581..dfa27f6f21f4 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -244,7 +244,6 @@ GLOBAL_LIST_EMPTY(PDAs) dat += "